函式庫的rpath

查詢硬碟空間

1
du -sh ./*

有時候硬碟空間可能因為資料夾沒有mount,所以雖然占用硬碟空間但是du無法顯示出來,可以使用下面的指令來查看:

1
shopt -s dotglob && sudo mount / /mnt -o bind && du -sh /mnt/* && umount /mnt

參考:
https://www.reddit.com/r/linuxquestions/comments/1ed61ri/root_directory_full_despite_du_adding_up_to_55_of/

https://www.onejar99.com/linux-command-du/

Author

Steven

Posted on

2024-11-01

Updated on

2025-01-14

Licensed under

Comments