Como instalar o skype no arco

9

Eu olhei em todos os lugares e nada funcionou. Estou apenas tentando instalar o Skype.

Eu tentei ver se estava nos repositórios, mas não o encontrei. Então, eu não fui ao site do Skype e encontrei uma versão do Linux, mas não sabia como instalá-lo depois de extrair o arquivo tar.

Eu então tentei pegar o AUR e encontrei o Skype. Mas quando tentei rodar o makepkg eu peguei um

==> ERROR: PERMISSION was not found in the build directory and is not a URL.

Eu tentei procurar soluções, mas não consegui encontrar nada. Cada thread que eu encontrei pede para descobrir o arquivo /etc/pacman.conf . O que eu fiz e me certifiquei de ter o multilib incluído

/etc/pacman.conf

#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives

#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
# If you wish to use different paths, uncomment and update the paths.
#RootDir     = /
#DBPath      = /var/lib/pacman/
#CacheDir    = /var/cache/pacman/pkg/
#LogFile     = /var/log/pacman.log
#GPGDir      = /etc/pacman.d/gnupg/
#HookDir     = /etc/pacman.d/hooks/
HoldPkg     = pacman glibc
#XferCommand = /usr/bin/curl -C - -f %u > %o
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#CleanMethod = KeepInstalled
#UseDelta    = 0.7
Architecture = auto

# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg   =
#IgnoreGroup =

#NoUpgrade   =
#NoExtract   =

# Misc options
#UseSyslog
#Color
#TotalDownload
CheckSpace
#VerbosePkgLists

# By default, pacman accepts packages signed by keys that its local keyring
# trusts (see pacman-key and its man page), as well as unsigned packages.
SigLevel    = Required DatabaseOptional
LocalFileSigLevel = Optional
#RemoteFileSigLevel = Required

# NOTE: You must run 'pacman-key --init' before first using pacman; the local
# keyring can then be populated with the keys of all official Arch Linux
# packagers with 'pacman-key --populate archlinux'.

#
# REPOSITORIES
#   - can be defined here or included from another file
#   - pacman will search repositories in the order defined here
#   - local/custom mirrors can be added here or in separate files
#   - repositories listed first will take precedence when packages
#     have identical names, regardless of version number
#   - URLs will have $repo replaced by the name of the current repo
#   - URLs will have $arch replaced by the name of the architecture
#
# Repository entries are of the format:
#       [repo-name]
#       Server = ServerName
#       Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
#

# The testing repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.

#[testing]
#Include = /etc/pacman.d/mirrorlist

[core]
Include = /etc/pacman.d/mirrorlist

[extra]
Include = /etc/pacman.d/mirrorlist

#[community-testing]
#Include = /etc/pacman.d/mirrorlist

[community]
Include = /etc/pacman.d/mirrorlist

# If you want to run 32 bit applications on your x86_64 system,
# enable the multilib repositories as required here.

#[multilib-testing]
#Include = /etc/pacman.d/mirrorlist

[multilib]
Include = /etc/pacman.d/mirrorlist

# An example of a custom package repository.  See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#SigLevel = Optional TrustAll
#Server = file:///home/custompkgs

Eu procurei por todos os lados, não consigo encontrar nenhuma solução.

    
por Yoseph Alabdulwahab 30.07.2016 / 20:22

1 resposta

14

Você está usando corretamente o pacote Skype AUR . Por favor, siga o caminho makepkg de instalar pacotes AUR (por favor, não se acostume com coisas como yaourt se você se preocupa com a segurança da sua máquina).

$ wget https://aur.archlinux.org/cgit/aur.git/snapshot/skypeforlinux-bin.tar.gz
$ tar zxf skypeforlinux-bin.tar.gz
$ cd skypeforlinux-bin
$ makepkg -s  # or install dependencies manually if you do not have sudo

A etapa que muitas vezes falha é makepkg -s , que instalaria dependências para o pacote. Esse comando requer sudo , que não é instalado por padrão no Arch. Outra opção é simplesmente instalar as dependências manualmente antes de executar makepkg . A página do pacote AUR lista as dependências e todas estão disponíveis nos repositórios padrão (não há dependências do AUR para o skype).

Isso resulta em skypeforlinux-bin-1.x.x.x-x86_64.pkg.tar.xz (não há suporte para i386 neste pacote, x.x.x.x significa a versão atual do pacote). A instalação como root.

# pacman -U /path/to/package/skypeforlinux-bin-1.x.x.x-x86_64.pkg.tar.xz

Ainda, e isso é muito ainda , o pacote skype AUR quebra com frequência. As pessoas argumentam que é por causa da Microsoft retrabalhando o protocolo com muita frequência sem compatibilidade com versões anteriores, ou que o pacote Debian que é fornecido pelo skype / microsoft nunca está atualizado com o skype real. Você pode ver uma discussão enorme sobre isso na página do pacote AUR skype, nos comentários.

Como usuário do Arch, o que eu faço para usar o Skype (e faço isso apenas se preciso) é que eu instale o chromium :

pacman -S chromium

E o plug-in do Skype para ele.

Ou até mesmo use o aplicativo da web com:

chromium --app=https://web.skype.com
    
por 30.07.2016 / 23:45