Skype'a skype nasıl kurulur


11

Her yere baktım ve hiçbir şey olmadı. Ben sadece skype yüklemeye çalışıyorum.

Depolarda olup olmadığını görmeye çalıştım ama bulamadım. Bu yüzden skype web sitesine gitmedim ve linux sürümünü buldum ama tar dosyasını çıkardıktan sonra nasıl yükleyeceğimi bilmiyordum.

Daha sonra AUR'da görünmeye çalıştım ve skype buldum. Ama makepkg'ı çalıştırmayı denediğimde

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

Çözüm aramaya çalıştım ama hiçbir şey bulamadım. Bulduğum her iş parçacığı /etc/pacman.confdosyayı almak istiyor . Hangi yaptım ve multilib dahil olduğundan emin yaptı

/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

Her yere baktım, çözüm bulamıyorum.


Benim tahminim yaourt skype. Eğer var mı yaourtveya benzer AUR istemci yüklü?
ddnomad

Yanıtlar:


16

Skype AUR paketini doğru şekilde kullanıyorsunuz . Lütfen AUR paketlerinimakepkg kurma yolunu takip edin (lütfen makinenizin güvenliğini önemsiyorsanız gibi şeylere alışmayın).yaourt

$ 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

Sıklıkla başarısız olan adım makepkg -s, pakete bağımlılıkların yüklenmesidir. Bu komut sudo, Arch'de varsayılan olarak yüklü olmayan gerektirir . Başka bir seçenek de, bağımlılıkları çalıştırmadan önce elle kurmaktır makepkg. AUR paketi sayfası bağımlılıkları listeler ve tümü varsayılan depolardan edinilebilir (skype için AUR bağımlılıkları yoktur).

Sonuç olarak skypeforlinux-bin-1.x.x.x-x86_64.pkg.tar.xz( i386bu pakette hiçbir destek yoktur , xxxx paketin mevcut sürümünü temsil eder). Kök olarak yükleyin.

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

Yine de, bu henüz biraz , skype AUR paketi sık sık kırılıyor. İnsanlar bunun Microsoft'un protokolü geriye dönük uyumluluk olmadan çok sık yeniden çalışması nedeniyle olduğunu ya da skype / microsoft tarafından sağlanan Debian paketinin gerçek skype için hiçbir zaman güncel olmadığını iddia ediyor. Bu konuda AUR skype paketi sayfasında, yorumlarda büyük bir tartışma görebilirsiniz.

Bir Arch kullanıcısı olarak skype kullanmak için ne yapmam (ve sadece yapmam gerekiyorsa yapıyorum) yüklemek chromium:

pacman -S chromium

Ve bunun için skype eklentisi .

Ya da web uygulamasını aşağıdakilerle birlikte kullanın:

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

Teşekkür ederim. Bu çok yardımcı oldu. Bir süre önce bağımlılıklar üzerinde takılıp kaldım ama bu AUR'dan tüm yükleme işlemini netleştiriyor. Sen bir hayat kurtarıcısın.
Yoseph Alabdulwahab

3
Bunun skypeforlinux-stable-binyerine kullanmalısınız
OverCoder

1
Ayrıca yukarıdaki cevabı, Kullan güncellemek için aurmanyerine yaourtgithub repo böcek ve PRs almayı bırakmış olmasına rağmen resmen, kemer için desteklenir olarak, aurmangeliştirme özel yapılır. Ayrıca, skypeforlinux-stable-bin@OverCoder zaten dediğim gibi , bunun yerine kullanın .
Subroto

1
Ve benim gibi komutu hatırlayamayanlar alias skype='chromium --app=https://web.skype.com'için .bashrc;-)
Alexis

1
@ thephoenix01 "yay" gibi bir şey kullanın
OverCoder
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.