• @[email protected]
    link
    fedilink
    174
    edit-2
    7 months ago

    and you shouldn’t be using any of those, since the order can and will change. The numbers are based on the order the devices and device drivers are initialized in, not based on physical location in the system. The modern approach (assuming you’re using udev) is to use the symlinks in /dev/disk/by-id/ or /dev/disk/by-uuid/ instead, since both are consistent across reboots (and by-id should be consistent across reinstalls, assuming the same partitioning scheme on the same physical drives)

    This is also why Ethernet devices now have names like enp0s3 - the numbers are based on physical location on the bus. The old eth0, eth1, etc. could swap positions between Linux upgrades (or even between reboots) since they were also just the order the drivers were initialized in.

    • @toynbee
      link
      457 months ago

      I’m sure you know this, but to to supplement your comment for future readers, UUIDs are also a good solution for partitions.

      • lemmyvore
        link
        fedilink
        English
        87 months ago

        I think OP’s point was that UUIDs can still change, but the stuff that makes up the /by-id/ names cannot. Granted, those aren’t applicable to partitions.

        • @toynbee
          link
          4
          edit-2
          7 months ago

          Right. I don’t think they and I are in disagreement - just trying to help expand their statement. Thanks!

          • lemmyvore
            link
            fedilink
            English
            27 months ago

            Depends on your definition of “unexpected”. OP was talking about reinstalls for example, where the root partition is deleted and recreated and its UUID will change as a result. If you copy an fstab from an older system backup you will fail the mount the root partition.

            UUIDs can also cause some reverse trouble if you clone them with dd in which case they won’t change but they should, and you end up with duplicate UUIDs.

    • @[email protected]
      link
      fedilink
      177 months ago

      Are UUIDs built into the hardware, or something your computer decides on based on the drive’s serial number and shit?

      • @[email protected]
        link
        fedilink
        297 months ago

        According to Arch Wiki they get generated and stored in the partition when it is formatted. So kinda like labels but automated and with (virtually) no collision risk.

      • @MeanEYE
        link
        67 months ago

        No. Since each partition gets its own UUID, it means it’s generated by the OS on creation, no matter the number of partitions. On boot kernel will scan all UUIDs and then mount and map according to them, which is sightly less efficient method than naming block device directly, but far easier for humans and allows you to throw your drives to whichever port you like.

    • @[email protected]
      link
      fedilink
      15
      edit-2
      7 months ago

      Back in my day, /dev/hda was the primary master, hdb was the primary slave, hdc was the secondary master and hdd was the secondary slave.

      Nothing ever changed between reboots. Primary/secondary depended on which port the ribbon cable connected to on the motherboard, and primary/secondary master/slave was configured by a jumper on the drive itself.

      • @Phrodo_00
        link
        57 months ago

        Yeah, and ide only supported 4 drives at a time in most systems

        • @[email protected]
          link
          fedilink
          1
          edit-2
          7 months ago

          If you had a Sound Blaster 16, you had an extra IDE port on the board, which DOS couldn’t see and you had to load special drivers to use them. Usually it was used for the CD-ROM.

    • 🐍🩶🐢
      link
      English
      117 months ago

      I have a hatred for the enp id thing as it isn’t any better for me. It changes on me every time I add/remove a hard drive or enable/disable the WiFi card in the BIOS. For someone who is building up a server and making changes to it, this becomes a real pain. What happens if a drive dies? Do I have to change the network config yet again over this?

      • @[email protected]
        link
        fedilink
        7
        edit-2
        7 months ago

        How is that happening? The number on the bus shouldn’t change from adding or removing drives. I could imagine this with disabling a card in UEFI / BIOS if that basically stops reporting the bus entry completely. But drives?

        Anyhow, if I’m not mistaken, you can assign a fixed name based on the reported MAC.

      • @hperrin
        link
        4
        edit-2
        7 months ago

        Use a systems rule to give it a consistent name based on its MAC address, driver, etc. I just had this exact same problem setting up my servers.

        root@prox1:~# cat /etc/systemd/network/10-persistent-10g.link 
        [Match]
        Driver=atlantic
        
        [Link]
        Name=nic10g
        
        root@prox1:~# cat /etc/systemd/network/10-persistent-1g.link 
        [Match]
        Driver=igb
        
        [Link]
        Name=nic1g
        
        
    • @mumblerfish
      link
      37 months ago

      Having used gentoo for quite some time, there have been several occations where my network broke because the changing names and naming conventions of the network interfaces.

  • DumbAceDragon
    link
    fedilink
    English
    101
    edit-2
    7 months ago

    Well it’s sdx because they both use the SATA interface. The sdx convention actually comes from scsi though, and the fact that SATA and USB drives use it might point to some code reuse, or maybe a temporary solution that never got fixed due to breaking backwards compatibility.

    Fun fact: IDE drives use the hdx naming convention.

      • @[email protected]OP
        link
        fedilink
        5
        edit-2
        7 months ago

        Yeah, that’s what I think as well…

        Got a few old rigs with IDE drives in them running Void x86, the drives in /dev are named sdx.

      • DumbAceDragon
        link
        fedilink
        English
        37 months ago

        I didn’t know that. Maybe nvme hasn’t been added to the standard yet then.

        • @jj4211
          link
          117 months ago

          No, they decided that nvme were too fancy to be modeled by mundane ‘sdxn’ scheme. They hypothetically have ‘namespaces’ and ‘controller paths’ and they wanted to have the naming scheme model that fully.

    • @toynbee
      link
      47 months ago

      Virtual drives also have a fun and relevant prefix!

    • @ordellrb
      link
      597 months ago

      thats a reason to use the uuid in the fstab

      • @[email protected]
        link
        fedilink
        11
        edit-2
        7 months ago

        Anyone else chuckle on the parallel in saying to use the UUID is no different than saying “just hardcore the IP bro”

        I’m not hating on you, but it’s an extremely flawed system where you are forced to use a direct ID mapping as a reference.

        From what I’m understanding from people you can assign an alias to the UUID that sounds better?

        • @droans
          link
          67 months ago

          Anyone else chuckle on the parallel in saying to use the UUID is no different than saying “just hardcore the IP bro”

          It’s more like setting a static IP. The UUID is set when you create the partition and won’t change unless you force it to change.

          You can also use any of the GUI utilities which can add it to your fstab.

          There’s a lot of things that are made way too difficult on Linux for seemingly no reason. This isn’t one of them.

        • ferret
          link
          fedilink
          English
          47 months ago

          I mean you can also use partition labels but who does that

        • @[email protected]
          link
          fedilink
          English
          37 months ago

          If filesystem UUIDs are IP equivalents. Then device paths are MAC addresses. FS labels are DNS. Device mapper entries are service discovery.

          • @[email protected]
            link
            fedilink
            1
            edit-2
            7 months ago

            In the scenario of having to constantly update an fstab yes it is. As an end user I shouldn’t have to keep updating configuration files because something on a lower level keeps changing its alias.

            No granted I’m not familiar with this type of mount. Maybe there is a better way to do it that absolves needing to use the UUID but if not that’s shit architecture IMHO.

            • @Phrodo_00
              link
              67 months ago

              What? Using uuids is the solution to having to change the file (that, or stable name rules). You can also use labels if you want to.

            • @[email protected]
              link
              fedilink
              27 months ago

              The UUID never fucking changes. It is a hardware level identier use the UUID in your configs and they will work until the day you change drives.

        • @[email protected]
          link
          fedilink
          English
          17 months ago

          The alternative being running os-prober at boottime, on every boot.

          Currently, we set UUID using os-prober whenever we remake grub.cfg, analogous to that would be registering web-server static IPs with a DNS, which provides the domain name aliases (we don’t need to see UUID in the GRUB menu right? We see the OS names).

          An analogy to the alternative would be to ask all devices on the internet to send their usage methods everytime you try to look for another site.

    • @stoly
      link
      4
      edit-2
      7 months ago

      Lol I seem to remember that I once had /home mapped to a partition that did that for all sorts of fun and games for a while.

    • @A_Random_Idiot
      link
      English
      2
      edit-2
      7 months ago

      my nvme is always nvme1pX, with X being 1-4 depending on the partition, and its always the same.

      Wonder why? Weird that some change and some dont.

      • @[email protected]
        link
        fedilink
        2
        edit-2
        7 months ago

        I got two drives with one being nvme1pX and the other nvme2pX and I don’t know why but they just swap names sometime. I’m new to linux though so it may be some misconfiguration on my part and I rarely need to access them with their name.

        • @A_Random_Idiot
          link
          English
          27 months ago

          Ah, sorry. I only have 1 nvme drive, so thats probably why. Didnt realize until your post that it was a multi-drive issue.

  • @vampire
    link
    80
    edit-2
    7 months ago

    https://wiki.archlinux.org/title/Solid_state_drive/NVMe

    Namespaces are the construct in NVMe technology that hold user data. An NVMe controller can have multiple namespaces attached to it. Most NVMe SSDs today just use a single namespace, but multi-tenant applications, virtualization and security have use cases for multiple namespaces.

      device v
    /dev/nvme0n1p1 < partition
    namespace  ^
    

    There are two types of people: Those who are able to identify gaps in their knowledge and actively seek to fill them… and whatever this meme is.

      • @vampire
        link
        24
        edit-2
        7 months ago

        I can’t chill ever

        It’s a curse

        • wkk
          link
          97 months ago

          It’s like you’re sucking the fun out of us… Wait a minute

      • @Heavybell
        link
        English
        157 months ago

        We can enjoy the meme and also use it as a learning opportunity :)

        I for one didn’t know about NVMe namespaces.

        • Ann Archy
          link
          37 months ago

          Or an opportunity to be technically correct! Wouldn’t want to waste one!

      • @[email protected]
        link
        fedilink
        5
        edit-2
        7 months ago

        Funny? In a meme? C’mon man, we’re trying to be serious here and know which technologies we can shame to feel good about ourselves. Stop ruining my quest for self-egrandifying tech-snobbery with your so-called humour!!1!


        P.S. thanks to @vampire even so; that was interesting to learn

        • Ann Archy
          link
          47 months ago

          “I am irrationally angry, but you are also right, now fuck off”

          I can respect this

    • @mrbaby
      link
      107 months ago

      Oh god damn it I came here to look at memes and now I friggin learned something that’s going to make my life easier

      • @vampire
        link
        37 months ago

        I know my role. Someone’s gotta do it.

        • Ann Archy
          link
          17 months ago

          The unsung hero is often the least paid

    • Rob T Firefly
      link
      English
      37 months ago

      All this and you missed the chance to also point out that the meme misspelled “conventions.”

    • @[email protected]
      link
      fedilink
      37 months ago

      Well, I hadn’t actively searched for what the NVMe naming convention was for, but this meme made me learn something new. Thanks!

    • @Oisteink
      link
      167 months ago

      NVMe device names follow this pattern: nvme <number> n <namespace> , where: <number> is an integer that is assigned by Linux during the boot process. The first NVMe device that is detected is assigned 0

      • @jj4211
        link
        57 months ago

        You also can have a ‘c’ in there, when it wants to model multipath nvme…

      • Morphit
        link
        fedilink
        37 months ago

        I still don’t understand the point of namespaces. I guess it’s less overhead to pass through a namespace to a VM rather than having a virtualised disk image or bind mount.

    • @scallopedllama
      link
      47 months ago

      The other dragons aren’t specifying a partition

      • @SuperIce
        link
        English
        17 months ago

        So the 3rd dragon should just be /dev/nvme%d

      • eluminx
        link
        27 months ago

        This made me chuckle, thank you!!

  • @hperrin
    link
    517 months ago

    It’s called that because it’s Never the Value you Might Expect.

      • @hperrin
        link
        87 months ago

        If you reboot, it might have a different name in /dev/, just like ethernet ports.

        • @[email protected]
          link
          fedilink
          English
          237 months ago

          This is a feature of SATA devices too. Use UUIDs in your fstab unless you enjoy playing musical chairs with your mount points

  • @[email protected]
    link
    fedilink
    287 months ago

    I’m guessing it’s for some shit to make sure some ridiculous setup with two gazillion drives doesn’t have conflicts

  • Anarch157a
    link
    287 months ago

    No one mentioned the Solaris convention yet ?

    /dev/cXtXdXsX

    The letters mean controller, SCSI target, disk and slice (Solaris equivalent to a partition).

    I always thought this was the most elegant naming scheme in the Unix world.

  • @mrbaby
    link
    257 months ago

    Mine is easy - /dev/nvme[tab][tab][tab]

  • Luna
    link
    fedilink
    257 months ago

    Back in the olden times the Linux kernel had a dedicated parallel-ATA subsystem with /dev/hda devices. It was then rolled up in to the scsi subsystem to simplify maintaining drivers (everything using the same library for disk access). I’m old :(

  • @waigl
    link
    English
    97 months ago

    It’s a lot better than the system that just randomly throws in your USB drives with your SCSI/SAS/SATA/PATA drives. Or the systems that calls everything a SCSI drive when it usually isn’t a SCSI drive.

    • Ann Archy
      link
      47 months ago

      I thought this was a Wendy’s.

    • Captain Aggravated
      link
      fedilink
      English
      3
      edit-2
      7 months ago

      Yeah wasn’t it something like SATA and USB got lumped in with the SATA SCSI storage controller or whatever which is why it’s practically all /dev/sdx? Back in the days of yore when men were men and sheep were scared there’d be /dev/hdx and /dev/fdx for hard and floppy drives?