Hvis du gerne vil have en liste over dine diske og disk typer, skal du bruge blkid
$ sudo blkid
Giver dig en liste over diske’s UUID samt deres type.
/dev/sda1: UUID="3d69aecc-9cee-4d10-9a8f-86e33773d96c" TYPE="ext4" PARTUUID="16c8d1ac-01" /dev/sda5: UUID="e755df62-5936-4099-aa90-e4608c013013" TYPE="swap" PARTUUID="16c8d1ac-05"
Disse UUID er rigtig godt at bruge i fstab. Så selv om du flytter diske rundt på controlleren. Så vil det stadig virker. Og Linux vil mount dem rigtigt. Som du kan se her.
$ cat /etc/fstab
# /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/sda1 during installation UUID=3d69aecc-9cee-4d10-9a8f-86e33773d96c / ext4 errors=remount-ro 0 1 # swap was on /dev/sda5 during installation UUID=e755df62-5936-4099-aa90-e4608c013013 none swap sw 0 0
Her kan du se at 3d69aecc-9cee-4d10-9a8f-86e33773d96c er sda disken og det er første partion (a1) som bliver mounted som / (rooden af dit filsystem system)