Tips liberación espacio filesystem

Find out the files which got added to the / recetly and find out the files with more size.

1) find / -xdev -size +10000 -exec ls -l {} \;
Use
2) du -sk * | sort -n from / to find out which all folders use more space on the file system

3) find / -xdev -name core

To find out any core files. Removing the /temp files might have created issues to the running applications temp files.


Comentarios