I want to completely uninstall Skype 4.1 from the terminal. How do I do that. Also, do I have to delete anything else to make sure I have removed it completely?
Asked
Active
Viewed 4.2k times
5 Answers
13
From the terminal, run:
sudo apt-get purge skype*
sudo apt-get autoremove
Then you can remove the config files:
rm -fr ~/.Skype
That should do it.
philshem
- 2,103
3
I tried
sudo apt-get purge skype*
sudo apt-get autoremove
rm -fr ~/.Skype
Nothing worked, only this did
sudo dpkg -r skype:i386
Siddharth
- 331
0
Yo can try also this:
wget -O skype http://download.skype.com/linux/skype-ubuntu_4.0.0.8-1_i386.deb
sudo apt-get install libxss1
sudo dpkg -i skype
sudo apt-get -f install && sudo rm skype
This might work.
Radu Rădeanu
- 174,089
- 51
- 332
- 407
Gru
- 101