Var/cache/apt/archives occupying huge space
I am in the process of cleaning up my system. and I see a lot of space occupied by this folder /var/cache/apt/archives
(1.5GB). Is it absolutely necessary to keep all these archives?
You don ' t need to keep them around if you don't want them. Executing a
sudo apt-get clean
would clean the directory.
--------------------------------------------------------------------------------------------------------------- --------------
Deleting nginx,–purge including configuration files
sudo apt-get --purge remove nginx
Automatic removal of all unused packages
sudo apt-get autoremove
List the software associated with Nginx and remove the displayed software
--get-selections|grep nginxsudo apt-get --purge remove nginxsudo apt-get --purge remove nginx-commonsudo apt-get --purge remove nginx-core
Execute again
dpkg --get-selections|grep nginxwhich nginx # 不在显示nginx
So you can completely uninstall the Nginx including the configuration file
Note: First, you need to stop Nginx service
sudo service nginx stop
Ubuntu Uninstall clean software (including configuration files)