LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   drive space (https://www.linuxquestions.org/questions/linux-newbie-8/drive-space-521700/)

JRink 01-22-2007 09:04 AM

drive space
 
From the shell, how do I determine available drive space? I'm not running KDE or Gnome.

Thanks.

colucix 01-22-2007 09:09 AM

Code:

df -k
check the column "Available"

pwc101 01-22-2007 09:24 AM

You might want to try
Code:

df -h
if you want sizes in megabytes, gigabytes etc. It uses 1024 bytes as its base, not 1000. If you want 1000, use
Code:

df -H
Check out the man page for more detailed info.


All times are GMT -5. The time now is 05:10 AM.