How to view disk space and directory space usage in linux shell
Disk space usage on current system In the linux shell, type: df -h Which should produce an output similar to: Filesystem Size Used Avail Use% Mounted on /dev/sda 20G 2.9G 16G 16% / none 246M 0 246M 0% /dev/shm the -h parameter indicates human readable sizes (with sufixes K,M,G) Disk space usage over directories Too […]