Jeśli chcesz, możesz użyć do tego celu mojego skryptu bash. W rzeczywistości robi trochę więcej, niż potrzebujesz, tj. Pokaże również, ile miejsca jest zajęte. Mam nadzieję, że ci się spodoba :) Mam również nadzieję, że wyjście będzie równie schludne, jak na moim systemie Linux ... (Uwaga: pokaże tylko prawdziwy sprzęt, taki jak dyski twarde i DVD-ROM, ale to wystarczy do moich celów).
Ważna uwaga: Ten skrypt może wymagać uruchomieniasudo
RAZ RAZ z powodu blkid
. Przynajmniej na moim dystrybucji, blkid -o export
będzie wyjście zero gdy uruchamiane jako zwykły użytkownik po starcie . Wynika to z faktu, że w „zwykłym wykonaniu użytkownika” blkid
dane będą faktycznie pobierane z pliku pamięci podręcznej (zwykle /run/blkid/blkid.tab
), który jest zapisywalny tylko root
i będzie wymagał jednego uruchomienia sudo
w celu zapełnienia bieżącymi danymi.
#!/bin/bash
# LICENSE: GPL
if [[ $(id -u) -ne 0 ]]; then
if [[ ! -s /run/blkid/blkid.tab ]]; then
# no cache file found when run as regular user
# this will require one run under sudo to populate cache file
echo -e "Cache file does not exist or is empty.\nPlease give your root password to continue:\n\n"
sudo blkid >/dev/null
fi
fi
df -P |
sort |
awk 'BEGIN {
fmthdr = "%-12s%-22s%-10s\t%-5s\n"
# since we want to use single quotes for showing label names, we had better
# replace the problematic single quote character by its hex representation, "\x27"
fmtlin_w_qu = "%-12s\x27%-17s\x27\t %-10s\t%4s used\n"
fmtlin_wo_qu = "%-12s%-17s\t %-10s\t%4s used\n"
printf fmthdr, " Device ", "Volume Label", "File System", "Storage usage"
printf fmthdr, "---------", "------------", "-----------", "-------------"
}
/^\/dev\/[sh]/{
lab = "" # CLEAR lab w/every run (very important!)
("blkid -o export "$1" | grep LABEL | cut -f2 -d=") | getline lab
("blkid -o export "$1" | grep TYPE | cut -f2 -d=") | getline fs
if (lab == "") {
lab = "<none>"
fmtlin = fmtlin_wo_qu
}
else
fmtlin = fmtlin_w_qu
printf fmtlin, $1, lab, fs, $5
}'