5463 mal gelesen
Die wichtigsten Konsolenbefehle in Linux findet man unter: http://www.computerhope.com/unixtop1.htm
Trust us. We know what we're doing.
5463 mal gelesen
Die wichtigsten Konsolenbefehle in Linux findet man unter: http://www.computerhope.com/unixtop1.htm
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
The output of the ‚df‘ command will show you overall disk usage. To find out how much space a give directory is used us the ‚du -s ‚ command.
# df -h
This will output the usage of each partition in the server. To list the size of a specific directory, run the following command:
# du -sh /home/
If you want to list all the subdirectory sizes under /home, run the following command:
# du -sh /home/*
(http://knowledgelayer.softlayer.com/procedure/how-can-i-check-my-hard-disk-usage-linux)