Ubuntu14.04 uninstall software installation

 

---- commonly used software installed

sudo apt-get install vim-gtk // vim installed software

sudo apt-get install zip // decompression software to install and unzip files

sudo apt-get install dos2unix // transcoding software of Windows and linux

---- uninstall software

The first step to find the name of the software (QQ to find full name, for example) 

dpkg --get-selections | grep 'qq' 

After execution, the output will contain the names of all the name 'qq' software, I'm looking for is "wine-qqintl".

The second step to uninstall the software 

Completely uninstall: 

sudo apt-get --purge remove wine-qqintl 

Uninstall preserve configuration: 

sudo apt-get remove wine-qqintl

 

reference:

https://blog.csdn.net/insist_hui/article/details/81514532

 

Guess you like

Origin www.cnblogs.com/sea-stream/p/11130005.html