this post was submitted on 26 Nov 2023
112 points (96.7% liked)
Linux
47976 readers
1194 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Hey! Great questions.
It seems like what you're asking about are more what I'd think of as components of an a Linux "system" or "install."
First off, it's definitely worth saying that there aren't a lot of rules that would apply to "all" Linux systems. Linux is huge in embedded systems, for instance, and it's not terribly uncommon to find embedded Linux systems with no shells, no DE/WM, and no package manager. (I'm not 100% sure a filesystem is technically necessary. If it is, you can probably get away with something that's... kinda sorta a filesystem. But I'll get to that.)
Also, it's very common to find "headless" systems without any graphical system whatsoever. Just text-mode. These are usually either servers that are intended to be interacted with over a network or embedded systems without screens. But there are a lot of them in the wild.
There's also Linux From Scratch. You can decide for yourself whether it qualifies as a "distribution", but it's a way of running Linux on (typically) a PC (including things like DE's) without a package manager.
All that I'd say are truly necessary for all Linux systems are 1) a bootloader, 2) a Linux kernel, 3) A PID 1 process which may or may not be an init system. (The "PID 1 process" is just the first process that is run by the Linux kernel after the kernel starts.)
The "bunch of default applications and daemons" feels like three or four different items to me:
As for your question about graphical systems, X11 and Wayland work a little differently. X11 is a graphical system that technically can be run without a desktop environment or window manager, but it's pretty limited without one. The DE/WM runs as one or more separate processes communicating with X11 to add functionality like a taskbar, window decorations, the ability to have two or more separate windows and move them around and switch between them, etc. A Wayland "compositor" is generally the same process handling everything X11 would handle plus everything the DE/WM would handle. (Except for the Weston compositor that uses different "shells" for DE/WM kind of functionality.)
As far as things that might be missing from your list, I'll mention the initrd/initramfs. Typically, the way things are done, when the Linux kernel is first loaded by the bootloader, it an "initial ramdisk" is also loaded. Basically, it creates a filesystem that lives only in ram and populates it from an archive file called an "initramfs". ("initrd" is the older way to do the same thing.) Sometimes the initramfs is bundled into the same file as the kernel itself. But, that initial ramdisk provides an initial set of tools necessary to load the "main" root filesystem. The initramfs can also do some cool things like handling full disk encryption.
So, the whole list of typical components for a PC-installed Linux system to be interacted with directly as I'd personally construct it would be something like:
But techinically, you could have a functional, working "Linux system" with just:
Hopefully this all helps and answers your questions! Never stop learning. :D
You would need some non volatile storage to hold your bootloader be that on the network or local. Also any shell more complicated than tty will need to store config files to run.