Quote:
Originally Posted by eco_bach
So I assume my issue is disk space. I logged into text terminal and freed up some space in /home but still showing 100% usage in / (root)
What is the safest way to free up space in root from the text terminal?
|
First, find out where the space is used up. In your case, /home seems to be a separate filesystem (quite common), so that removing files from there doesn't help.
To see how much space is used by the various directories on the root file system, you can run the command
du -sx /*. The -s option generates a summary, the -x option prevents from reporting space on other filesystems.
After that, analyze the filesystems with the largest space usage until you find a directory from where it is safe to remove files and that occupies a good chunk.
If you need help with that, start by sharing the output of that command.