this post was submitted on 05 Dec 2023
968 points (98.7% liked)

linuxmemes

20901 readers
518 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 

shamelessly stolen from nixCraft on mastodon

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 10 months ago (3 children)

How can I figure out which direct device is associated with a specific id?

[–] [email protected] 6 points 10 months ago

Not sure if it is equal on all distros but on every one I have used it's a readable string of muliple components. One of them is "usb" for a usb mass storage, so if it is the only one you have connected to your computer it is very obvious. For like sata disks it has the manufacturer and serial on it so you can match what drive it is you want to write to. Also, the name is pretty unique (on your sysytem at least, globally I don't know), so even if you swap hardware around, you cannot write to the wrong storage if you got the right name. Like "sdb" can be reassigned, but the id is an id.

[–] [email protected] 6 points 10 months ago

They're symlinks, so you can just ls -l /dev/disk/by-id, and you can see what is what.

[–] [email protected] 3 points 10 months ago* (last edited 10 months ago)

ˋblkidˋ or take a look around /dev, devices are symlinked to their various attributes.