Am căutat peste tot și nimic nu a funcționat. Încerc doar să instalez skype.
I Am încercat să văd dacă se află în depozite, dar nu l-am găsit. Așa că nu am fost pe site-ul skype și am găsit o versiune Linux, dar nu știam cum să-l instalez după extragerea fișierului tar.
Am încercat apoi să mă uit în AUR și am găsit skype. Dar când am încercat să rulez makepkg, primesc un
==> ERROR: PERMISSION was not found in the build directory and is not a URL.
Am încercat să caut soluții, dar nu am putut găsi nimic. firul pe care l-am găsit solicită cahck fișierul /etc/pacman.conf
. Ceea ce am făcut și m-am asigurat că am inclus 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
Am privit peste tot nu pare să găsesc nicio soluție.
Comentarii
Răspuns
Utilizați corect pachetul Skype AUR . Vă rugăm să urmați calea makepkg
de instalare a pachetelor AUR (vă rugăm să nu vă obișnuiți cu lucruri precum yaourt
dacă vă pasă de securitatea mașinii dvs.).
$ 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
Pasul care eșuează adesea este makepkg -s
, care ar instala dependențe pentru pachet. Această comandă necesită sudo
care nu este instalat implicit în Arch. O altă opțiune este de a instala pur și simplu dependențele manual înainte de a rula makepkg
. Pagina pachetului AUR listează dependențele și toate sunt disponibile din depozitele implicite (nu există dependențe AUR pentru skype).
Acest lucru are ca rezultat skypeforlinux-bin-1.x.x.x-x86_64.pkg.tar.xz
(există nu există suport pentru i386
în acest pachet, xxxx reprezintă versiunea curentă a pachetului). Instalați-l ca root.
# pacman -U /path/to/package/skypeforlinux-bin-1.x.x.x-x86_64.pkg.tar.xz
Totuși, acesta este un pic încă , pachetul skype AUR se rupe des. Oamenii susțin că se datorează faptului că Microsoft a prelucrat protocolul prea des fără compatibilitate inversă sau că pachetul Debian furnizat de skype / microsoft nu este niciodată actualizat la skype-ul real. Puteți vedea o discuție uriașă despre asta pe pagina pachetului AUR skype, în comentarii.
În calitate de utilizator Arch, ceea ce fac pentru a folosi skype (și o fac doar dacă trebuie) este că instalez chromium
:
pacman -S chromium
Și plugin skype pentru asta.
Sau chiar folosește aplicația web cu:
chromium --app=https://web.skype.com
Comentarii
- Vă mulțumesc. Acest lucru a ajutat foarte mult. Am rămas blocat pe partea dependențelor cu ceva timp în urmă, dar acest lucru clarifică întregul proces de instalare din AUR. ‘ sunteți un salvator de viață.
- În schimb, ar trebui să utilizați
skypeforlinux-stable-bin
- De asemenea, pentru a actualizați răspunsul de mai sus, utilizați
aurman
în loc deyaourt
, deoarece este acceptat oficial pentru arch, deși repozitorul github a încetat să mai ia bug-uri și PR-uri,aurman
dezvoltarea se face în mod privat. De asemenea, utilizațiskypeforlinux-stable-bin
în loc, așa cum a spus deja @OverCoder. - Și pentru cei dintre noi ca mine care pot ‘ nu vă amintiți comanda, adăugați
alias skype='chromium --app=https://web.skype.com'
în.bashrc
😉 - @ thephoenix01 folosiți ceva de genul ” yay ”
yaourt skype
. Avețiyaourt
sau un client AUR similar instalat?