๐ŸŒ
Wikiversity
en.wikiversity.org โ€บ wiki โ€บ GNU โ€บ Linux
GNU/Linux - Wikiversity
GNU is a Unix-like operating system. That means it is a collection of many programs: applications, libraries, developer tools, even games. The development of GNU, started in January 1984, is known as the GNU Project.
๐ŸŒ
FSFE
fsfe.org โ€บ freesoftware โ€บ gnuproject.en.html
What is the GNU-Project? - FSFE
The GNU project was launched in September 1983 by Richard M. Stallman to create a complete operating system which is Free Software. Software development wo...
Discussions

[deleted by user]
GNU operating system with NT kernel Of all the things I was expecting to read today, this was absolutely the last thing. More on reddit.com
๐ŸŒ r/linux
134
94
August 14, 2023
ELI5: What exactly GNU/Linux and what's the difference between them? What is GNU?
OK, think of an OS like a car: it is comprised of several parts, but the heart of it is the engine. Without it, the car is simply a chunk of metal and plastic on wheels. Well, for operating systems that heart is the kernel. it is the program that takes control of the hardware in a computer, and allows other programs to take turns using it. Back in the late 60's, AT&T was a really big company, so they had their own research and development laboratory: Bell Labs. In there, programmers Ken Thompson and Dennis Ritchie developed an operating system: UNIX. This was a time where computers were the size of a couple fridges, and instead of a keyboard and screen, you used a special electric typweritter called a teletype to "chat" with a computer (that is the grandpa of terminals, BTW). Here is a video of one of those machines running UNIX V0: https://www.youtube.com/watch?v=pvaPaWyiuLA because of it's advantages, and because when you bought it you got it's soruce code so you could adapt it to the computers you had, UNIX became quite widespread, even to the extent of other companies developing their own versions, like HP's HP-UX, Sun's Solaris, and even Microsoft did one called Xenix. Here is a video from 1982 where they say the advantages of UNIX: https://youtu.be/tc4ROCJYbm0 In that video, they show that an UNIX OS is comprised of three "layers": The kernel, which as I said, is the heart of the OS The shell, which is the terminal program you use to interact with the OS The utilities, which are all those programs you call from the terminal to do your work. Keep in mind that info. Long story short, AT&T wanted to control UNIX to make a profit, so they started to sue some UNIX clone developers on the basis of copyright infringement. They even sued the the University of Berkeley in California, as they were doing one of the most popular UNIX variants: the Berkeley Software Distribution (BSD). That ruffled some feathers along the people who used UNIX, including Richard Stallman, which was a wacky dude working on the AI lab at the Massachusetts Institute of Technology. He was so pissed at AT&T for suddenly changing gears from an "open" model to a restrictive one that was there only to suck money from people. Because of that (and problems with a printer), he started the Free Software movement (ya know, free as in freedom, not like free beer) and to kickstart it, he did three things: Write the General Public License (GPL), which is a "terms and conditions" document that you can apply to a program to make it free software Start the Free Software Foundation to promote, defend, and spread the Free Software Movement Start developing a fully free operating system that was compatible with UNIX, but developed from the ground up so AT&T could not sue them. Well, that OS that Richard Stallman started is GNU. Fun Fact: there is a running joke that GNU are initials, and they stand for "GNU is Not Unix" Stallman and others slowly bus steadily started to develop tons of programs to make the GNU OS a reality: the GRUB bootloader, the GCC code compiler, the BASH shell program for the terminal, etc. But one key component was missing: the Kernel. Some candidates were considered for it, with the biggest contender being the Hurd kernel, which is yet another project under the GNU OS umbrella. But that thing, much like Half Life 3, never came to be. In the meantime, a random student from the University of Helsinki in Finland made just for fun a UNIX-like kernel. Well, turns out that he developed "by accident" the kernel that the GNU OS lacked, finally completing the project. That student was Linus Torvalds, and that kernel was Linux. That is why the Copy-pasta is about. Linux is only the name of a kernel, but many of the other components that make the base of many distros out there come from the GNU OS project. Now, comparing it to Windows is a bit hard as there not that much direct equivalent. Windows also has a kernel, which is the NT kernel, but the rest of the OS is just Windows. The difference comes because back in the 80's, Microsoft Disk Operating System (MS-DOS) was the OS that home computers used, which worked only in the terminal. Windows started as an MS-DOS program that put a graphical user interface on top of MS-DOS, and that model continued up to Windows Millennium Edition. Meanwhile in the 90's Microsoft started to experiment with a proper OS kernel: the New Technology kernel (NT), but it was so heavy that only workstations could run it, so NT was only used on the "Professional" version of Windows. That changed with Windows XP in 2001, as home computers were powerful enough that they could run NT with no trouble, so in that version of Windows they ditched the MS-DOS background and went full NT, up to this day with Windows 11. macOS on the other hand is more similar, as that one is a UNIX-like OS, making it a sort of "cousin" of Linux. Remember that I said that the Berkeley university did their own UNIX variant called BSD?, well, once they got rid of the AT&T demand, they released it's OS under an open bespoke license (the so famous BSD 3-clause license). Unlike the GPL (which Linux and all of GNU uses), where all derived code needs to also be publicly released under the GPL license or similar, the BSD license does not have such clause, so you can take BSD, make some changes, and make it private. BSD is the bases of lots of OSes out there, like the ones on the PlayStation 4 and 5, the Nintendo Switch, lots of home routers, and macOS. Maybe you have heard that in the 80's Steve Jobs was kicked out of Apple, so then he went to make his own company: NeXT. Well, those NeXT computers used an OS that was based on BSD: NeXTSTEP. It used lots of things from BSD, but instead of using the BSD kernel, they instead opted for Mach, which was a kernel that some guys at the Carnegie Mellon University were developing for research (Jobs even hired some of those people to work on NeXTSTEP). Meanwhile Apple without Steve Jobs was a dumpster fire, including macOS (which at the time was a bespoke OS developed in Apple). That prompted Apple to ask Steve to return, so he did. In the process Apple bought NeXT, and took it's OS NeXTSTEP as the basis for macOS X (the one that featured on those colored macs from the early 2000s). Being technical, NeXTSTEP evolved into an open source (but not free) OS called Darwin, and it's kernel (based upon the Mach kernel) called XNU. Apple then takes that "XNU/Darwin" thing and makes macOS out of it (and also tvOS, iOS, watchOS, visionOS and whateverOS they come up nowdays). Hope I was clear enough, but if not, feel free to ask questions. More on reddit.com
๐ŸŒ r/linuxquestions
73
44
June 10, 2024
Linux, GNU, Unix, what's the difference and how they work together?
Unix is an operating system developed by AT&T's research & development branch to simplify and unify management of computer systems, but it was all proprietary and different parts of it are legally encumbered from different companies that mostly went bankrupt during the Unix wars of the 1980s/1990s. GNU is a project that has re-implemented the compilers, libraries, and utilities using only software licensed under the GNU General Public License which basically says that you can download and share the software, but must also share your changes with the community. Linux is an operating system kernel licensed under the GNU GPL which, when combined with the GNU toolchain and a number of other GNU GPL software, give you all the power of a full Unix system, without having to spend a lot of money on per-core/per-user licenses (as you would if you licensed a "real" Unix OS, like HP-UX), and giving you a really powerful operating system that you can tear apart and rebuild as you see fit. More on reddit.com
๐ŸŒ r/linuxquestions
64
110
February 15, 2022
What happened to Gnu Hurd?
Lack of resources. People backed Linux. More on reddit.com
๐ŸŒ r/opensource
24
69
March 4, 2024
๐ŸŒ
Free Software Foundation
fsf.org โ€บ working-together โ€บ gang โ€บ gnu
GNU โ€” Free Software Foundation โ€” Working together for free software
June 24, 2010 - GNU is the project that started it all. Started in 1984 with the goal of creating a free software operating system, GNU has evolved into a collection of tools and applications that are used by millions of computer users around the world.
๐ŸŒ
Gnu
gnu.org.ua
The GNU Operating System
Since 1983, developing the free Unix style operating system GNU, so that computer users can have the freedom to share and improve the software they use.
๐ŸŒ
Gentoo Linux
gentoo.org
Welcome โ€“ Gentoo Linux
The website of Gentoo, a flexible Linux distribution.
๐ŸŒ
Diafygi
diafygi.github.io โ€บ gnu-pricing โ€บ website
The GNU Operating System and the Free Software Movement
April 25, 2015 - Since 1983, developing the free Unix style operating system GNU, so that computer users can have the freedom to share and improve the software they use.
๐ŸŒ
Linux From Scratch
linuxfromscratch.org
Welcome to Linux From Scratch!
Linux From Scratch (LFS) is a project that provides you with step-by-step instructions for building your own custom Linux system, entirely from source code.
Find elsewhere
๐ŸŒ
LibrePlanet
libreplanet.org โ€บ wiki โ€บ History_of_GNU
History of GNU - LibrePlanet
The GNU operating system is a complete free software system, upward-compatible with Unix. GNU stands for โ€œGNU's Not Unixโ€. Richard Stallman made the Initial Announcement of the GNU Project in September 1983. A longer version called the GNU Manifesto was published in March 1985.
๐ŸŒ
DistroSea
distrosea.com
Test Linux distros online - DistroSea
Instantly test run Linux distros online in the cloud for free, right from your web browser. No installation or live boot required.
๐ŸŒ
Sceen
darnassus.sceen.net โ€บ ~hurd-web โ€บ hurd โ€บ running โ€บ gnu
The GNU System
May 5, 2025 - The GNU Operating System, commonly referred to as simply "The GNU System", is a complete Unix-like operating system composed entirely of free software. The creation of the GNU System is one of the goals of the GNU Project, which was launched in 1983 by Richard Stallman.
๐ŸŒ
Quora
quora.com โ€บ Why-is-it-GNU-Linux-and-not-just-Linux
Why is it GNU/Linux and not just Linux? - Quora
Answer (1 of 17): Linux is just Linux. However, Linux is just a kernelโ€”basically a software library for talking to hardware. It needs programs which use the kernel to really do anything interesting. Linux was originally written to be used with the GNU operating system (which didnโ€™tโ€”and doesnโ€™tโ€”...
๐ŸŒ
Wikispeedia
dlab.epfl.ch โ€บ wikispeedia โ€บ wpcd โ€บ wp โ€บ g โ€บ GNU.htm
GNU
GNU ( pronounced /gnu/ ) is a free operating system consisting of a kernel, libraries, system utilities, compilers, and end-user applications. Its name is a recursive acronym for "GNU's Not Unix", which was chosen because its design is Unix-like, but differs from Unix by being free software ...
๐ŸŒ
Wikipedia
en.wikipedia.org โ€บ wiki โ€บ GNU
GNU - Wikipedia
2 days ago - GNU (/ษก(ษ™)nuห/ โ“˜ GNOO) is an extensive collection of free software (387 packages as of June 2025), which can be used as an operating system or can be used in parts with other operating systems.
๐ŸŒ
The Register
theregister.com โ€บ 2026 โ€บ 02 โ€บ 18 โ€บ linus_torvalds_and_friends
Linus Torvalds and friends: how Linux evolved from solo act โ€ข The Register
2 weeks ago - That made it possible for developers to build distributions that combined the Linux kernel with GNU tools and other free software, and early distros in 1992-1993 transformed Linux from a kernel hackers compiled themselves into complete systems ordinary users could install, widening the contributor base.
๐ŸŒ
Statcounter
gs.statcounter.com โ€บ os-market-share
Operating System Market Share Worldwide | Statcounter Global Stats
This graph shows the market share of operating systems worldwide based on over 5 billion monthly page views.
๐ŸŒ
Kali Linux
kali.org
Kali Linux | Penetration Testing and Ethical Hacking Linux Distribution
Xfce is a lightweight desktop environment for UNIX-like operating systems.
๐ŸŒ
GNU Octave
octave.org
GNU Octave
GNU Octave version 11.1.0 has been released and is now available for download. An official Windows binary installer is available.