0

I am trying to install Skype on Ubuntu 12.02.05. However, I get an error message:

rails@rails-desktop:~/Downloads$ sudo dpkg -i skype-ubuntu-precise_4.2.0.11-1_i386.deb 
sudo: /var/lib/sudo writable by non-owner (040777), should be mode 0700
[sudo] password for rails: 
dpkg: error processing skype-ubuntu-precise_4.2.0.11-1_i386.deb (--install):
 cannot access archive: No such file or directory
Errors were encountered while processing:
 skype-ubuntu-precise_4.2.0.11-1_i386.deb
rails@rails-desktop:~/Downloads$ 

How can I solve this?

harsha
  • 1

1 Answers1

1

dpkg fails because cannot found the file, are you sure that you have download Skype at ~/Downloads ?

Besides that, I recommend to use package manager like apt or aptitude (or if you prefer a graphic utilit Ubuntu Sofware Center).

# add repository
sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"

# update packages list and install
sudo apt-get update && sudo apt-get install skype

Source and more info: https://help.ubuntu.com/community/Skype

EDIT: removed add i386 as @gertvdijk suggested!

slamora
  • 161