Problema de instalação do Skype Alpha ubuntu 16.10

1

Recentemente, tive este problema para instalar o Skype DEB ou via repo:

link

Veja o log:

Gtk-WARNING **: Theme directory  imported-Humanity/192 of theme Lubuntu has no size field
A seleccionar pacote anteriormente não seleccionado libpango1.0-0:amd64.
(Lendo banco de dados ... 228056 ficheiros e directórios actualmente instalados.)
A preparar para desempacotar .../libpango1.0-0_1.40.1-1_amd64.deb ...
A descompactar libpango1.0-0:amd64 (1.40.1-1) ...
Configurando libpango1.0-0:amd64 (1.40.1-1) ...
A seleccionar pacote anteriormente não seleccionado skypeforlinux.
(Lendo banco de dados ... 228063 ficheiros e directórios actualmente instalados.)
A preparar para desempacotar .../skypeforlinux_1.6.0.3_amd64.deb ...
A descompactar skypeforlinux (1.6.0.3) ...
Configurando skypeforlinux (1.6.0.3) ...
Warning: The postinst maintainerscript of the package skypeforlinux
Warning: seems to use apt-key (provided by apt) without depending on gnupg or gnupg2.
Warning: This will BREAK in the future and should be fixed by the package maintainer(s).
Note: Check first if apt-key functionality is needed at all - it probably isn't!
Warning: apt-key should not be used in scripts (called from postinst maintainerscript of the package skypeforlinux)
OK
/etc/aptsources.list.d is not a folder
dpkg: erro ao processar o pacote skypeforlinux (--install):
 sub-processo script post-installation instalado retornou estado de saída de erro 1
A processar 'triggers' para hicolor-icon-theme (0.15-1) ...
A processar 'triggers' para desktop-file-utils (0.23-1ubuntu1) ...
A processar 'triggers' para mime-support (3.60ubuntu1) ...

Alguma ideia para resolver o problema?

    
por Wellington1993 02.09.2016 / 15:11

2 respostas

2

Edite /var/lib/dpkg/info/skypeforlinux.postinst e substitua

FULLSOURCEDIR=$ROOTFOLDER$ETCFOLDER$SOURCEDIR

com

FULLSOURCEDIR=$ROOTFOLDER$ETCFOLDER/$SOURCEDIR

Em seguida, execute

sudo apt-get -f install
    
por 02.09.2016 / 16:31
1

Para instalar o Skype, você precisa ativar o parceiro da Canonical primeiro:

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

Em seguida, execute os seguintes comandos:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install skype
skype

Ou você pode instalá-lo seguindo as etapas descritas aqui :

'# make sure you have 'apt-transport-https' installed

dpkg -s apt-transport-https > /dev/null || bash -c "sudo apt-get update; sudo apt-get install apt-transport-https -y" 
curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add - 
echo "deb [arch=amd64] https://repo.skype.com/deb stable main" | sudo tee /etc/apt/sources.list.d/skype-stable.list 
sudo apt-get update 
sudo apt-get install skypeforlinux -y 

Editar

Skype for Linux Alpha depends on gnome-keyring and libgnome-keyring0 packages for storing credentials. Both of these packages are installed as a dependency for the Skype for Linux Alpha package.

sudo apt-get update
sudo apt-get install gnome-keyring
sudo apt-get install libgnome-keyring0
    
por 02.09.2016 / 15:25

Tags