6

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?

5 Answers5

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,093
  • 1
    I did this but now when I boot up a pop up window appears asking me to agree or disagree to the Skype terms of service. – XinJeisan Dec 04 '12 at 08:04
  • run cd / && find | sudo grep -i skype. this will take a while but will show all files that include the name "skype." You can choose to remove them if you want. You should also check your "Startup Applications" to make sure skype is deselected. – philshem Dec 04 '12 at 15:15
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
  • 169,590
Gru
  • 101
  • 2
-1

This did for me

sudo apt-get purge skype-bin
hg8
  • 13,462
-2

Run:

sudo apt-get remove skype skype-bin
Eliah Kagan
  • 117,780
user298684
  • 11
  • 1
  • purge, not remove. OP wants to remove it completely, remove keeps configuration files and possibly some other stuff. – Donarsson Jun 28 '14 at 16:40