1

I've just installed skype 4.0 for my Ubuntu 12.4LTS and the font and setup of it still looks like the older ersion 2.2 beta. I've tryed reinstalling it, and rebooting my computer but it doesn't help. I know that it's suppose to look differently according to screenshots of other people using it.

Nick Bailuc
  • 3,325
  • 12
  • 45
  • 68
  • 1
    Check the "About Skype" from the menu, and it will tell you what version is running. – Marty Fried Jun 14 '12 at 15:51
  • it says 4.0.0.7 but still looks like 2.2 beta – Nick Bailuc Jun 14 '12 at 15:54
  • have you purged your old skype install first before installing the deb package? – fossfreedom Jun 14 '12 at 16:01
  • purged? you mean uninstalled – Nick Bailuc Jun 14 '12 at 16:05
  • yes of cource i did – Nick Bailuc Jun 14 '12 at 16:05
  • purged means not only uninstalling, but getting rid of the configuration files, which can sometimes have an effect. Personally, I'm pretty happy with the way 2.2 looks, and sometimes I hate it when there is a new version and I have to relearn how to use it. But then, all I use it for is messaging and video calls. – Marty Fried Jun 14 '12 at 16:10
  • yes i purge removed it with terminal, uninstalled with software center, deleted .skype file in /home and even did search for ANY possible left files taht can leave traces of skype i've tried pretty much everything i could, but still no good result – Nick Bailuc Jun 14 '12 at 17:27

1 Answers1

2

Here's how to upgrade to 4.0 from the previous 2.2 beta version:

from: http://ubuntuforums.org/showthread.php?t=1695589

1) make sure the old version is purged, and that old config files are moved to a backup folder (in case you want to restore them later if there's a problem)

sudo apt-get autoremove --purge skype

mv ~/.Skype ~/.Skype.bak

2) download the 4.0 deb from the skype website (http://www.skype.com/intl/fr/get-skype/on-your-computer/linux/) and install from commandline:

e.g., sudo dpkg -i ~/Downloads/skype-ubuntu_4.0.0.7-1_amd64.deb

this will fail with an error. that's ok! we have to run the following command to fix dependencies:

sudo apt-get install -f

now install again:

sudo dpkg -i ~/Downloads/skype-ubuntu_4.0.0.7-1_amd64.deb

amc
  • 7,142