必要に応じて、そのために私のbashスクリプトを使用できます。実際には、必要以上に機能します。つまり、使用されているスペースの量も表示されます。そして、Linuxボックスのように出力がきれいになることを願っています...(注:HDDやDVD-ROMなどの実際のハードウェアのみを表示しますが、それは私の目的には十分です。)
重要な注意:このスクリプトはsudo
、のためにONCE で実行する必要がある場合がありblkid
ます。少なくとも私のディストリビューションでblkid -o export
は、bootup 後に通常のユーザーとして実行するとnilが出力されます。これは、の「通常のユーザーレンディション」では、データは実際にキャッシュファイル(通常は)から取得されるためです。このファイルは書き込み可能であり、現在のデータを取り込むために1回実行する必要があります。blkid
/run/blkid/blkid.tab
root
sudo
#!/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
}'