Does this log mean that my server disk is full?

Status
Not open for further replies.

trader_c

Active Member
47
2013
4
0
Hi all,
I'm new to linux. Does this log from putty mean that my server disk is full?

Code:
root@user:~# df -k
Filesystem     1K-blocks     Used Available Use% Mounted on
/dev/simfs      26214400 26214400         0 100% /
none             1048576        4   1048572   1% /dev
none              209716     1320    208396   1% /run
none                5120        0      5120   0% /run/lock
none              629140        0    629140   0% /run/shm
none              102400        0    102400   0% /run/user
overflow            1024        0      1024   0% /tmp

__________________
Added after 51 minutes:

I googled out that yes, disk is full

I googled out that yes, disk is full.
 
Last edited:
3 comments
If you don't want to see this large KB-Blocks just type
df -h
for getting it in human readable format. (e.g. MB or GB)

Check your logs if there are some you can dispose.
if you have lot's of users coming to your site, disable access-log to save storage
 
root@user:~# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/simfs 26214400 26214400 0 100% /

Yes, this does mean that / partition is full. You need to delete some files in order make space.
 
Status
Not open for further replies.
Back
Top