cleaning up disk

Tha

New member
Joined
Oct 5, 2009
Messages
4
I'd like to remove stuff from the server I don't need to free up memory. After having used Custombuild to install the software, which directories or files are best to be removed to free up space and without infering in the systems working?
 
You can do the following to free up some space:
Code:
cd /usr/local/directadmin/custombuild
rm -f *.tar.gz
rm -f *.tgz
rm -rf mysql
rm -rf /usr/local/directadmin/scripts/packages/*

If you do not need MySQL backups, you can also execute:
Code:
rm -rf /usr/local/directadmin/custombuild/mysql_backups
 
I thought there was a ./build feature for this....
 
Back
Top