• superkret
    link
    fedilink
    arrow-up
    42
    arrow-down
    2
    ·
    10 days ago

    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
      link
      fedilink
      arrow-up
      47
      ·
      10 days 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

      • mvirts@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        10 days ago

        Idk why I feel compelled to add this info, but / doesn’t have to be local as long as the necessary kernel modules for mounting it are available in the initrd or built into the kernel.

        • DarkMetatron
          link
          fedilink
          arrow-up
          6
          ·
          10 days ago

          Yes, that is true. I was speaking in the context of very early Unix/Linux before initrd was a thing.

    • Zeppo@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      24
      ·
      10 days ago

      /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.

      • grue@lemmy.world
        link
        fedilink
        English
        arrow-up
        10
        ·
        10 days ago

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

        Something to do with hard-coded mounts in /etc/fstab vs. dynamically-mounted removable media (USB drives etc.), I think.

    • DarkMetatron
      link
      fedilink
      arrow-up
      22
      ·
      10 days ago

      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
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 days ago

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

        • DarkMetatron
          link
          fedilink
          arrow-up
          3
          ·
          9 days 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
      link
      fedilink
      arrow-up
      14
      ·
      10 days 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
      link
      fedilink
      arrow-up
      5
      ·
      10 days ago

      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
        link
        fedilink
        arrow-up
        5
        ·
        10 days ago

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

        • Dalaryous@lemmy.ml
          link
          fedilink
          English
          arrow-up
          9
          ·
          10 days 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.

          • bazzett@lemmy.world
            link
            fedilink
            arrow-up
            4
            ·
            10 days ago

            I don’t know if I’m doing something wrong, but I have a secondary SSD in my laptop that I mount on /mnt/elyssa and in every DE and distro I tried it appeared as a removable drive with the “eject” button. Right now I use Fedora with Gnome and if I install this extension or enable the removable drives option in Dash to Dock, it shows me that drive. Maybe some mount option in Gnome Disks, but since it’s not that big of a problem, I haven’t looked too much into it.

        • DarkMetatron
          link
          fedilink
          arrow-up
          8
          ·
          10 days ago

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

        • umbraroze@lemmy.world
          link
          fedilink
          arrow-up
          7
          ·
          10 days ago

          /mnt is meant for volumes that you manually mount temporarily. This used to be basically the only way to use removable media back in the day.

          /media came to be when the automatic mounting of removable media became a fashionable thing.

          And it’s kind of the same to this day. /media is understood to be managed by automounters and /mnt is what you’re supposed to mess with as a user.

    • taaz@biglemmowski.win
      link
      fedilink
      English
      arrow-up
      4
      ·
      10 days ago

      /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
        link
        fedilink
        arrow-up
        3
        ·
        10 days 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.

        • linearchaos@lemmy.world
          link
          fedilink
          English
          arrow-up
          8
          ·
          10 days ago

          It’s easier to manage security that way.

          Instead of having one binary folder full of stuff that’s intended to be run with privilege access and non-privilege access, all the privileged stuff goes in sbin and you don’t even see it in your path as a regular user. It also means that access rights can be controlled at the folder level instead of the individual file level.