Type the following command from your shell prompt:
1 2 3 |
df -h |
1 2 3 4 5 6 7 8 |
Filesystem Size Used Avail Use% Mounted on /dev/sda1 139G 87G 45G 66% / udev 3.9G 4.0K 3.9G 1% /dev tmpfs 798M 268K 798M 1% /run none 5.0M 0 5.0M 0% /run/lock none 3.9G 0 3.9G 0% /run/shm |
If you want to see the file system types as well:
1 2 3 |
df -hT |
1 2 3 4 5 6 7 8 |
Filesystem Type Size Used Avail Use% Mounted on /dev/sda1 ext4 139G 87G 45G 66% / udev devtmpfs 3.9G 4.0K 3.9G 1% /dev tmpfs tmpfs 798M 268K 798M 1% /run none tmpfs 5.0M 0 5.0M 0% /run/lock none tmpfs 3.9G 0 3.9G 0% /run/shm |