I’ve logged into the server (“droplet”) using Putty and the root username and password. Now I would like to know how much disk space is remaining that is available to me. How can I find this out?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Since the df -h
was not detailed enough, and I needed each folder’s size and find out where the biggest folder is, I used the tutorial of https://serverpilot.io/community/articles/how-to-determine-what-is-using-disk-space.html
sudo apt-get install ncdu
sudo ncdu /
Done.
You can even navigate into the folders to get more details!
Since the df -h
was not detailed enough, and I needed each folder’s size and find out where the biggest folder is, I used the tutorial of https://serverpilot.io/community/articles/how-to-determine-what-is-using-disk-space.html
sudo apt-get install ncdu
sudo ncdu /
Done.
You can even navigate into the folders to get more details!
Since the df -h
was not detailed enough, and I needed each folder’s size and find out where the biggest folder is, I used the tutorial of https://serverpilot.io/community/articles/how-to-determine-what-is-using-disk-space.html
sudo apt-get install ncdu
sudo ncdu /
Done.
You can even navigate into the folders to get more details!
Since the df -h
was not detailed enough, and I needed each folder’s size and find out where the biggest folder is, I used the tutorial of https://serverpilot.io/community/articles/how-to-determine-what-is-using-disk-space.html
sudo apt-get install ncdu
sudo ncdu /
Done.
You can even navigate into the folders to get more details!
Since the df -h
was not detailed enough, and I needed each folder’s size and find out where the biggest folder is, I used the tutorial of https://serverpilot.io/community/articles/how-to-determine-what-is-using-disk-space.html
sudo apt-get install ncdu
sudo ncdu /
Done.
You can even navigate into the folders to get more details!
df -h will report disk space, it doesn’t show RAM usage. The line you want for how much disk space you’re using is likely /dev/vda. For instant on mine I see: <br> <br>/dev/vda 20G 2.0G 17G 11% / <br> <br>The second column shows total space, third column how much you’re using, fourth amount free and fifth percent used. <br> <br>To see how much RAM you’re using run: <br> <br>free -m <br>
df -h will report disk space, it doesn’t show RAM usage. The line you want for how much disk space you’re using is likely /dev/vda. For instant on mine I see: <br> <br>/dev/vda 20G 2.0G 17G 11% / <br> <br>The second column shows total space, third column how much you’re using, fourth amount free and fifth percent used. <br> <br>To see how much RAM you’re using run: <br> <br>free -m <br>
df -h will report disk space, it doesn’t show RAM usage. The line you want for how much disk space you’re using is likely /dev/vda. For instant on mine I see: <br> <br>/dev/vda 20G 2.0G 17G 11% / <br> <br>The second column shows total space, third column how much you’re using, fourth amount free and fifth percent used. <br> <br>To see how much RAM you’re using run: <br> <br>free -m <br>
df -h will report disk space, it doesn’t show RAM usage. The line you want for how much disk space you’re using is likely /dev/vda. For instant on mine I see: <br> <br>/dev/vda 20G 2.0G 17G 11% / <br> <br>The second column shows total space, third column how much you’re using, fourth amount free and fifth percent used. <br> <br>To see how much RAM you’re using run: <br> <br>free -m <br>
df -h will report disk space, it doesn’t show RAM usage. The line you want for how much disk space you’re using is likely /dev/vda. For instant on mine I see: <br> <br>/dev/vda 20G 2.0G 17G 11% / <br> <br>The second column shows total space, third column how much you’re using, fourth amount free and fifth percent used. <br> <br>To see how much RAM you’re using run: <br> <br>free -m <br>
It worked for me, though without the ‘-’ before df. “df -h”
It worked for me, though without the ‘-’ before df. “df -h”
It worked for me, though without the ‘-’ before df. “df -h”
It worked for me, though without the ‘-’ before df. “df -h”
Type “-df -h” on the terminal to find how much disk space has been used and is available.
would love to know this too