Difference between revisions of "Df"

From Linuxintro
imported>ThorstenStaerk
(New page: The command df allows you to see how much disk space is left in your system: '''Example:''' tweedleburg:~ # df -h Filesystem Size Used Avail Use% Mounted on /dev/sd...)
 
imported>ThorstenStaerk
Line 8: Line 8:
 
  /dev/sdb2            294G  167G  112G  60% /mnt/sdb2
 
  /dev/sdb2            294G  167G  112G  60% /mnt/sdb2
 
Looking at the above, "-h" means "human-readable". 41% of your hard disk at / is in use, and 60% of your hard disk at /mnt/sdb2.
 
Looking at the above, "-h" means "human-readable". 41% of your hard disk at / is in use, and 60% of your hard disk at /mnt/sdb2.
 +
 +
= See also =
 +
* [http://man-wiki.net/index.php/Df df man page]

Revision as of 06:33, 20 April 2009

The command df allows you to see how much disk space is left in your system:

Example:

tweedleburg:~ # df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda1             917G  350G  521G  41% /
udev                  2.0G  304K  2.0G   1% /dev
/dev/sdb2             294G  167G  112G  60% /mnt/sdb2

Looking at the above, "-h" means "human-readable". 41% of your hard disk at / is in use, and 60% of your hard disk at /mnt/sdb2.

See also