Jak zainstalować skype na arch

Szukałem wszędzie i nic nie działało. Próbuję tylko zainstalować skype.

I próbowałem sprawdzić, czy jest w repozytoriach, ale go nie znalazłem. Poszedłem więc na stronę skype i znalazłem wersję linuxową, ale nie wiedziałem, jak ją zainstalować po rozpakowaniu pliku tar.

Potem spróbowałem przejrzeć AUR i znalazłem skype. Ale kiedy próbowałem uruchomić makepkg, otrzymałem

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

Próbowałem rozejrzeć się za rozwiązaniami, ale nie mogłem nic znaleźć. znaleziony wątek prosi o sprawdzenie pliku /etc/pacman.conf. Tak zrobiłem i upewniłem się, że mam dołączony 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 

Rozejrzałem się po całym świecie i nie znajduję rozwiązania.

Komentarze

  • Domyślam się, że yaourt skype. Czy masz zainstalowany yaourt lub podobny klient AUR?

Odpowiedź

Prawidłowo używasz pakietu Skype AUR . Postępuj zgodnie ze ścieżką makepkg instalacji pakietów AUR (nie przyzwyczajaj się do rzeczy takich jak yaourt jeśli zależy Ci na bezpieczeństwie komputera).

$ 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 

Krok, który często kończy się niepowodzeniem, to makepkg -s, co spowoduje zainstalowanie zależności dla pakietu. To polecenie wymaga sudo, które nie jest domyślnie instalowane w Arch. Inną opcją jest po prostu ręczne zainstalowanie zależności przed uruchomieniem makepkg. Strona pakietu AUR zawiera listę zależności i wszystkie są dostępne z domyślnych repozytoriów (nie ma zależności AUR dla skype).

W rezultacie skypeforlinux-bin-1.x.x.x-x86_64.pkg.tar.xz (istnieje brak obsługi i386 w tym pakiecie, xxxx oznacza aktualną wersję pakietu). Zainstaluj go jako root.

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

Jeszcze, a to już bardzo , pakiet skype AUR często się psuje. Ludzie twierdzą, że dzieje się tak z powodu zbyt częstego przerabiania protokołu przez Microsoft bez kompatybilności wstecznej lub że pakiet Debiana dostarczany przez skype / microsoft nigdy nie jest aktualny do rzeczywistego skype. Możesz zobaczyć ogromną dyskusję na ten temat na stronie pakietu skype AUR w komentarzach.

Jako użytkownik Arch robię to, aby używać skype (i robię to tylko wtedy, gdy muszę), że instaluję chromium:

pacman -S chromium 

Oraz wtyczka skype do tego.

Lub nawet użyj aplikacji internetowej z:

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

Komentarze

  • Dziękuję. To bardzo pomogło. Utknąłem w części dotyczącej zależności jakiś czas temu, ale to wyjaśnia cały proces instalacji z AUR. Jesteś ' ratunkiem dla życia.
  • Zamiast tego powinieneś użyć skypeforlinux-stable-bin
  • Również zaktualizuj powyższą odpowiedź, użyj aurman zamiast yaourt, ponieważ jest on oficjalnie obsługiwany dla arch, chociaż repozytorium github przestało przyjmować błędy i PR, programowanie aurman odbywa się prywatnie. Zamiast tego użyj skypeforlinux-stable-bin, jak już powiedział @OverCoder.
  • A dla tych z nas, jak ja, którzy potrafią ' nie pamiętam polecenia, dodaj alias skype='chromium --app=https://web.skype.com' w swoim .bashrc 😉
  • @ thephoenix01 użyj czegoś takiego jak " yay "

Dodaj komentarz

Twój adres email nie zostanie opublikowany. Pola, których wypełnienie jest wymagane, są oznaczone symbolem *