无法在ubuntu 12.04LTS上安装skype


1

我正在尝试最后两个小时在Ubuntu 12.04上安装Skype 但得到错误

Extracting templates from packages: 100%
dpkg: error: unable to create new file '/var/lib/dpkg/info/format-new': Is a directory
E: Sub-process /usr/bin/dpkg returned an error code (2)

任何帮助将不胜感激 !!!


1
您是通过一些回购安装还是使用Skype网站提供的软件包?
Siddharth sharma

我正在使用 sudo apt-get update && sudo apt-get install skype
VKatz

1
从skype网站下载包并安装它。
Siddharth sharma

通过从skype.com安装,我已经能够在12.04上使用skype
Blaine

Answers:


2

要安装Skype,请添加Canonical Partner Repository。打开终端并运行以下命令:

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

在Ubuntu 32bit上安装Skype:

wget -O skype.deb http://download.skype.com/linux/skype-ubuntu_4.0.0.8-1_i386.deb
sudo apt-get install libxss1
sudo dpkg -i skype.deb
sudo apt-get -f install 

在Ubuntu 64bit上安装Skype:

wget -O skype.deb http://download.skype.com/linux/skype-ubuntu_4.0.0.8-1_amd64.deb
sudo apt-get install libxss1 lib32stdc++6 lib32asound2 ia32-libs libc6-i386 lib32gcc1 
sudo dpkg -i skype.deb
sudo apt-get -f install 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.