this post was submitted on 06 Sep 2024
1229 points (95.7% liked)

Linux

47287 readers
997 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 4 days ago

Distros should ship with this this under /readme.jpg

[–] [email protected] 2 points 5 days ago

Yes, you put the app in /opt, no not in /bin or /usr/bin

[–] [email protected] 238 points 1 week ago (10 children)

i always thought /usr stood for "user". Please tell me I'm not the only one

[–] [email protected] 80 points 1 week ago (2 children)

Ken Thompson and Dennis Ritchie created Unix on a PDP-7 in 1969. Well around 1971 they upgraded to a PDP-11 with a pair of RK05 disk packs (1.5 megabytes each) for storage.

When the operating system grew too big to fit on the first RK05 disk pack (their root filesystem) they let it leak into the second one, which is where all the user home directories lived (which is why the mount was called /usr). They replicated all the OS directories under there (/bin, /sbin, /lib, /tmp...) and wrote files to those new directories because their original disk was out of space. When they got a third disk, they mounted it on /home and relocated all the user directories to there so the OS could consume all the space on both disks and grow to THREE WHOLE MEGABYTES. And thereafter /usr is used to store user programs while /home is used to store user data.

source: http://lists.busybox.net/pipermail/busybox/2010-December/074114.html

[–] [email protected] 19 points 1 week ago (1 children)

THREE WHOLE MEGABYTES

Me in 2024 holding a 4TB NVMe stick: Still not enough (it's never enough)

load more comments (1 replies)
load more comments (1 replies)
[–] [email protected] 65 points 1 week ago

You're not the only one 😅 🙋

[–] [email protected] 40 points 1 week ago (13 children)

I thought it was United System Resources.
And I still don't know what's the point in separating /bin, /sbin, /usr/bin and /usr/sbin.
Also /mnt and /media
Or why it's /root and not /home/root

[–] [email protected] 47 points 1 week ago (2 children)

Mostly historical reasons, /home was often a network mounted directory, but /root must be local.

And only regular users have their home in /home

load more comments (2 replies)
[–] [email protected] 24 points 1 week ago (2 children)

/home is often on a separate volume. You’d want root to be available in a maintenance situation where /home may not be mounted.

I don't recall the reasons for the addition but /media is newer than /mnt.

load more comments (2 replies)
[–] [email protected] 22 points 1 week ago (2 children)

And I still don't know what's the point in separating /bin, /sbin, /usr/bin and /usr/sbin.

This goes back to the olden days when disk space was measured in kilo and megabytes. /sbin/ and /usr/sbin have the files needed to start a bare bone Unix/Linux system, so that you could boot from a 800kb floppy and mount all other directories via network or other storage devices as needed.

load more comments (2 replies)
[–] [email protected] 14 points 1 week ago

They hold "system binaries" meant for root user. It's not a hard distinction but many if not most Linux fundamentals have their roots in very early computing, mainframes, Bell and Xerox, and this good idea has been carried into the here&now. Not sure about the provenance of this one, but it makes sense. isn't /mnt /media different between distros? These aren't hard and fast rules - some distros choose to keep files elsewhere from the "standard".

/bin and /usr/bin, one is typically a symbolic link to another - they used to be stored on disks of different size, cost, and speed.

https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch03s16.html

https://unix.stackexchange.com/questions/5915/difference-between-bin-and-usr-bin

load more comments (9 replies)
[–] [email protected] 20 points 1 week ago (1 children)

I think it originally did under old Unix, it was what /home is nowadays; "Unix System Resources" is a backronym.

load more comments (1 replies)
[–] [email protected] 16 points 1 week ago

It's always been for USeR binaries. It's the first time I've seen this bizarre backronym (40 years of Unix here).

load more comments (5 replies)
[–] [email protected] 120 points 1 week ago (2 children)

"Linux File Systems"

*List of root directories*

Uh, where are the file systems? EXT4... BTRFS... FAT32...

[–] [email protected] 47 points 1 week ago

That’s what I thought too. This is directory structure, not file systems.

load more comments (1 replies)
[–] [email protected] 88 points 1 week ago* (last edited 1 week ago) (8 children)
load more comments (8 replies)
[–] [email protected] 82 points 1 week ago (2 children)

I don’t get why this sort of picture always gets posted and upvoted when it’s wrong for most distros nowadays.

[–] [email protected] 12 points 1 week ago (2 children)

Can you recommend one that is correct? I use pop_os (Ubuntu) and Arch. Kinda curious about either one

[–] [email protected] 34 points 1 week ago* (last edited 1 week ago) (4 children)

Not aware of any correct pictures, but I can tell you what's wrong with this one

  • /usr: explaining it as "Unix System Resources" is a bit vague
  • /bin: /bin is usually a symlink to /usr/bin
  • /sbin: /sbin is usually a symlink to /usr/sbin, distros like Fedora are also looking into merging sbin into bin
  • /opt: many, I'd say most, "add-on applications" put themselves in bin
  • /media: /media is usually a symlink to /run/media, also weird to mention CD-ROMs when flash drives and other forms of storage get mounted here by default
  • /mnt: i would disagree about the temporary part, as I mentioned before, stuff like flash drives are usually mounted in /run/media by default
  • /root: the root user is usually not enabled on home systems
  • /lib: /lib is usually a symlink to /usr/lib

I would also like the mention that the FHS standard wasn't designed to be elegant, well thought out system. It mainly documents how the filesystem has been traditionally laid out. I forget which folder(s), but once a new folder has been made just because the main hard drive in a developer's system filled up so they created a new folder named something different on a secondary hard drive.

load more comments (4 replies)
load more comments (1 replies)
load more comments (1 replies)
[–] [email protected] 63 points 1 week ago* (last edited 1 week ago) (4 children)

wait /usr doesn't mean user?

/etc has to be the worst name in there

[–] [email protected] 34 points 1 week ago (7 children)

usr does mean user. It was the place for user managed stuff originally. The home directory used to be a sub directory of the usr directory.

The meaning and purpose of unix directories has very organically evolved. Heck, it's still evolving. For example, the new .config directory in the home directory.

[–] [email protected] 16 points 1 week ago* (last edited 1 week ago)

For example, the new .config directory in the home directory.

I hope slowly but surely no program will ever dump its config(s) as ~/.xyz.conf (or even worse in a program specific ~/.thisapp/; The ~/.config/ scheme works as long as the programs don't repeat the bad way of dumping files as ~/.config/thisconfig.txt. (I'm looking at you kde folks..) A unique dir in .config directory should be mandatory.

If I ever need to shed some cruft accumulated over the years in ~/.config/ this would make it a lot easier.

load more comments (6 replies)
[–] [email protected] 12 points 1 week ago (7 children)

I wonder why that isn't /cfg? Is there a historical reason?

[–] [email protected] 22 points 1 week ago (1 children)

According to this, it's been around since the 70's and was originally just a catch-all for files that didn't fit in the other default directories, but over time has come to be mostly used for config files. I assume it would cause utter mayhem to try and change the name now so I guess it just sticks. Someone suggested "Edit To Configure" as a backronym to try and make it make more sense if that helps anyone lol.

load more comments (1 replies)
load more comments (6 replies)
load more comments (2 replies)
[–] [email protected] 50 points 1 week ago (5 children)

I learned about 16 years ago on a Solaris course that /usr wasn't "user", I still say "user", but I'm happy to see the information spreading that that isn't what it actually is.

[–] [email protected] 34 points 1 week ago (3 children)
load more comments (3 replies)
[–] [email protected] 12 points 1 week ago

usr did originally mean user and held user data.

Pretty sure this is a bacronym

load more comments (3 replies)
[–] [email protected] 47 points 1 week ago

/home is for every program to store its personal junk in hidden files apaprently

[–] [email protected] 38 points 1 week ago (4 children)

A pedantic thing to say, surely, but the title really should've been: "Linux Directory Structure" -- 'Linux filesystems' (the title in the graphic) refers to a different topic entirely; the title of this post mitigates the confusion a bit, though still, 'directory structure' is the better term.

[–] [email protected] 21 points 1 week ago

To be more pedantic the correct title would be the Filesystem Hierarchy Standard (FHS)...which describes the directory structures

load more comments (3 replies)
[–] [email protected] 37 points 1 week ago (1 children)

/opt/(app)/bin /usr/lib/(app)/bin /usr/lib64/app/bin /usr/local/(s)bin

I know there is logic and mapping of where everything's supposed to be in theory but in practice s***'s kind of all over the place.

[–] [email protected] 20 points 1 week ago

The logic was just that when UNIX was originally evolving, they ran out of disk space on their PDP-11 and had to start moving less-essential binaries to a different disk. That's why it's "/usr/" which was originally for user data but that disk happened to have free space.

Any other explanation is just retcon. Some distros try to simplify things.

[–] [email protected] 36 points 1 week ago (1 children)

Here's a higher quality version

load more comments (1 replies)
[–] [email protected] 34 points 1 week ago (3 children)

I always thought /usr was for "user".... TIL

[–] [email protected] 22 points 1 week ago (1 children)

It is, this infographic is wrong. Or I guess technically some other standard could define it like the infographic, but the Filesystem Hierarchy Standard defines it as a secondary hierarchy specifically for user data.

load more comments (1 replies)
load more comments (2 replies)
[–] [email protected] 32 points 1 week ago (5 children)

A good first approximation.

So where in this setup would you mount a network share? Or am additional hard drive for storage? The latter is neither removable nor temporary. Also /run is quite more than what this makes it seem (e.g. user mounts can be located there), there is practically only one system path for executables (/usr/bin)...

Not saying that the graphic is inherently wrong or bad, but one shouldn't think it's the end all be all.

load more comments (5 replies)
[–] [email protected] 24 points 1 week ago (4 children)

I never understood the title for /usr. Now I do. Thanks!

[–] [email protected] 20 points 1 week ago

It’s just short for “user;” “User System Resources” is probably a backronym.

[–] [email protected] 18 points 1 week ago

I always thought it stood for user. I even say it that way.

load more comments (2 replies)
[–] [email protected] 23 points 1 week ago

Those are directories, not filesystems.

[–] [email protected] 21 points 1 week ago (2 children)

It feels like /opt 's official meaning is completely lost on developers/packagers (depending on who's at fault), every single directory in my /opt belongs to standalone software that should just be put into either /usr/lib or /usr/share with some symlinks or scripts into /usr/bin.

load more comments (2 replies)
[–] [email protected] 18 points 1 week ago (4 children)
load more comments (4 replies)
[–] [email protected] 15 points 1 week ago (1 children)

Visualizing it like this makes it so clear how incredibly outdated this design is.

load more comments (1 replies)
[–] [email protected] 14 points 1 week ago

Fun fact: you get more accurate info by simply running man hier

[–] [email protected] 13 points 1 week ago* (last edited 1 week ago) (1 children)

Would like an easy way to remember.

  • mnt = mount
  • opt = optional ?
  • etc = etcetera ?
  • proc = process ?
  • srv = server ?
  • var = variable ?
load more comments (1 replies)
[–] [email protected] 13 points 1 week ago

I'm pretty sure sbin originally meant static binaries and not system binaries lol

[–] [email protected] 13 points 1 week ago* (last edited 1 week ago)

This is the FHS layout, which is one of the common layout style for Unix-like OSes, and it has nothing to do with Linux or filesystems in general. Misleading information. GoboLinux has what they call the GoboLinux hierarchy layout, that adheres to NeXTSTEP or BeOS. Nix and Guix has the Store hierarchy layout, wherein, everything is contained inside a store directory. Filesystems include FAT16, FAT32, exFAT, BTRFS, Bcachefs or EXT1/2/3/4, just to mention a few examples.

[–] [email protected] 12 points 1 week ago* (last edited 1 week ago) (1 children)
load more comments (1 replies)
load more comments
view more: next ›