Elencare tutte le etichette delle partizioni


Risposte:


11

Semplicemente etichette?

$ ls /dev/disk/by-label/              
Download  MuruHome  Ubuntu  Windows8  arch

O meglio:

$ tree /dev/disk/by-label/  # or use ls -l
/dev/disk/by-label/
├── Download -> ../../sda6
├── MuruHome -> ../../sdc2
├── Ubuntu -> ../../sdc1
├── Windows8 -> ../../sda2
└── arch -> ../../sda1

Se sei disposto a utilizzare sudo(che blkidrichiede), puoi anche usare il lsblkcomando:

$ sudo lsblk -o NAME,LABEL
NAME                    LABEL
sda                     
├─sda1                  System Reserved
├─sda2                  windows
├─sda3                  ubuntu
├─sda4                  
├─sda5                  arch
├─sda6                  
│ └─lvmg-homelvm (dm-0) homelb
└─sda7                  
sdb                     
└─sdb1                  
  └─lvmg-homelvm (dm-0) homelb

1
fantastico, userò sudo lsblk -fquindi nel mio script unix.stackexchange.com/questions/157102/…
rubo77

sudo non richiesto sulla mia scatola Artful.
Gringo Suave,

@GringoSuave eccellente, quel bug è stato finalmente risolto.
muru,

15
sudo blkid -o list

elenca tutti i dispositivi con etichette:

device          fs_type  label     mount point         UUID
----------------------------------------------------------------------------------
/dev/sda1       ntfs     WINRE_DRV (not mounted)       604C3A6A4C3A3B5C
/dev/sda2       vfat     SYSTEM_DRV (not mounted)      6C3C-72E3
/dev/sda3       vfat     LRS_ESP   (not mounted)       5240-1BEE
/dev/sda5       ntfs     Windows8_OS /media/Win8       A47A42FF7A42CDAC
/dev/sda6       ntfs     Daten     /media/Daten        72860971860936DF

2
Esattamente quello che stavo cercando! Grazie!
johann_ka,

1

Usa il comando

lsblk -nPo  MOUNTPOINT,UUID,LABEL    

Otterrai un elenco di campi più utili per le tue esigenze.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.