this post was submitted on 06 Sep 2024
712 points (100.0% liked)

Linux

1257 readers
53 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
712
submitted 2 months ago* (last edited 2 months ago) by sag@lemm.ee to c/linux@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[–] superkret@feddit.org 27 points 2 months ago (5 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

[–] DarkMetatron@feddit.org 28 points 2 months ago

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

And only regular users have their home in /home

[–] DarkMetatron@feddit.org 15 points 2 months ago (1 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.

[–] tromars@feddit.org 1 points 2 months ago (1 children)

Is there a reason to keep this structure other than „we’ve always been doing it like that“/backwards compatibility?

[–] DarkMetatron@feddit.org 2 points 2 months ago

The structure is changing, many distributions already are merging more and more of the duplicated subdirectories in /usr/ with the counterparts in / but it takes time to complete that and at the moment those subdirectories are often still there but as symlinks to be compatible with older software (and sysadmins).

[–] jacobc436@lemmy.ml 9 points 2 months 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

[–] 4am@lemm.ee 5 points 2 months ago (1 children)

I think /mnt is where you manually mount a hard drive or other device if you’re just doing it temporarily, and /media has sub folders for stuff like cdrom drives or thumb drives?

[–] superkret@feddit.org 4 points 2 months ago (2 children)

Yeah, but why?
You can mount a hard drive anywhere, and why not put all the cdrom and thumbdrive folders in /mnt, too?

[–] DarkMetatron@feddit.org 7 points 2 months ago

It gets even more complicated nowadays because most DE will mount removable drives somewhere in folders like /run/$USER/

[–] Dalaryous@lemmy.ml 6 points 2 months ago

/media is for removable drives. If you mount something there, file managers like Gnome will show you the "eject" or "disconnect" button.

/mnt drives show up as regular network drives without that "eject" functionality.

[–] taaz@biglemmowski.win 3 points 2 months ago (1 children)

/sbin are system binaries, eg root only stuff, dunno the rest but I would guess there are some historical reasons for the bin usr/bin separation

[–] superkret@feddit.org 2 points 2 months ago

I know the distinction between /bin and /sbin, I just don't know what purpose it serves.

Historically, /bin contained binaries that were needed before /usr was mounted during the boot process (/usr was usually on a networked drive).
Nowadays that's obsolete, and most distros go ahead and merge the directories.