Como instalar o skype no arch


11

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

Tentei ver se estava nos repositórios, mas não o encontrei. Então, eu não estava no site do skype e encontrei uma versão linux, mas não sabia como instalá-lo depois de extrair o arquivo tar.

Então tentei procurar no AUR e encontrei o skype. Mas quando tentei executar o makepkg, recebo uma

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

Tentei procurar soluções, mas não encontrei nada. Cada thread que encontrei pede para bloquear o /etc/pacman.confarquivo. O que fiz e me certifiquei de incluir a multilib

/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 olhei por toda parte não consigo encontrar nenhuma solução.


Meu palpite é yaourt skype. Você tem yaourtou um cliente AUR semelhante instalado?
ddnomad

Respostas:


16

Você está corretamente usando o pacote Skype AUR . Por favor, siga o makepkgcaminho da instalação dos pacotes AUR (por favor, não se acostume com coisas como yaourtse 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 geralmente falha é a makepkg -sinstalação de dependências para o pacote. Esse comando requer sudoque não esteja 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 i386este pacote, xxxx significa a versão atual do pacote). A instalação como raiz.

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

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

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

pacman -S chromium

E o plugin do skype para ele.

Ou até mesmo use o aplicativo da web com:

chromium --app=https://web.skype.com

Obrigado. Isso ajudou muito. Há algum tempo, fiquei preso nas dependências, mas isso esclarece todo o processo de instalação do AUR. Você é um salva-vidas.
Yoseph Alabdulwahab

3
Você deve usar em skypeforlinux-stable-binvez disso
OverCoder

1
Também para atualizar a resposta acima, use em aurmanvez de yaourt, como é oficialmente suportado pelo arch, embora o repositório do github tenha parado de receber bugs e PRs, o aurmandesenvolvimento é feito em particular. Além disso, use skypeforlinux-stable-bincomo o @OverCoder já disse.
21818 Subroto

1
E para aqueles de nós como eu, que não conseguem se lembrar do comando, adicione o alias skype='chromium --app=https://web.skype.com'seu .bashrc;-) #
Alexis

1
@ thephoenix01 use algo como "yay"
OverCoder 20/01
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.