• stoly@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      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.

  • DumbAceDragon@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    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.

  • Malix@sopuli.xyz
    link
    fedilink
    arrow-up
    0
    ·
    7 months ago

    Different bus, different naming.

    Now, memory kinda hazy, but weren’t ide devices /dev/hdX?

  • dan@upvote.au
    link
    fedilink
    arrow-up
    0
    ·
    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 is to use the symlinks in /dev/disk/by-id/ or /dev/disk/by-uuid instead, since both are consistent. The by-id ones are easier to read than the UUIDs.

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

    • mumblerfish@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      7 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.

    • toynbee@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      7 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.

    • PsychedSy@sh.itjust.works
      link
      fedilink
      arrow-up
      0
      ·
      7 months ago

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

    • 🐍🩶🐢@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      7 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?

      • hperrin@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        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
        
        
      • Laser@feddit.de
        link
        fedilink
        arrow-up
        0
        ·
        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.

        • 🐍🩶🐢@lemmy.world
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          7 months ago

          It is only the nvme drives that do it. That damn PCI busses and iommu groups get renumbered every damn time I remove or add one. The SATA is safe though.

  • Luna@lemmy.catgirl.biz
    link
    fedilink
    arrow-up
    0
    ·
    7 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 :(

  • Kusimulkku@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    7 months ago

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