web-dev-qa-db-fra.com

Comment installer Skype sur Arch

J'ai regardé partout et rien n'a fonctionné. J'essaie juste d'installer Skype.

J'ai essayé de voir si c'était dans les référentiels mais je ne l'ai pas trouvé. Donc, je ne suis pas au site Web Skype et trouvé une version Linux, mais je ne savais pas comment l'installer après avoir extrait le fichier tar.

J'ai ensuite essayé de looir dans l'Aur et j'ai trouvé Skype. Mais quand j'ai essayé de courir makepkg, je reçois un

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

J'ai essayé de chercher des solutions mais je n'ai rien trouvé. Chaque fil que j'ai trouvé demande à chck le /etc/pacman.conf déposer. Que j'ai fait et je suis sûr que j'ai le multicib inclus

/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

J'ai l'air de savoir partout, je ne peux pas sembler trouver une solution.

11
Yoseph Alabdulwahab

Vous utilisez correctement le fichier Skype Aur Package . Suivez le chemin makepkg Chemin d'installation Packages d'Aur (Veuillez ne pas vous habituer à des choses comme yaourt si vous vous souciez de la sécurité de votre machine).

$ 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

L'étape qui échoue souvent est makepkg -s, qui installerait des dépendances pour le colis. Cette commande nécessite Sudo qui n'est pas installé par défaut sur Arch. Une autre option consiste simplement à installer les dépendances à la main avant d'exécuter makepkg. La page de paquet AUR répertorie les dépendances et tous sont disponibles à partir des référentiels par défaut (il n'y a pas de dépendances d'AUR pour Skype).

Cela se traduit par skypeforlinux-bin-1.x.x.x-x86_64.pkg.tar.xz (il n'y a pas de soutien pour i386 Dans ce paquet, x.x.x.x représente la version actuelle du package). Le installer en tant que root.

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

Pourtant, et c'est un peu , le forfait Skype Aur se casse souvent. Les gens soutiennent que c'est à cause de Microsoft reprenant le protocole trop souvent sans compatibilité en retard, ni que le package Debian fourni par Skype/Microsoft n'est jamais à jour pour le Skype actuel. Vous pouvez voir une énorme discussion à ce sujet sur la page de forfait Skype Aur, dans les commentaires.

En tant qu'utilisateur d'arc, ce que je fais pour utiliser Skype (et je ne le fais que si je dois) est que j'installe chromium:

pacman -S chromium

Et le Plugin Skype pour cela.

Ou même utiliser l'application Web avec:

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