Arch Linux에서 AUR 패키지를 사용하여 Skype를 설치한 후 실행하는 방법

Arch Linux에서 AUR 패키지를 사용하여 Skype를 설치한 후 실행하는 방법

AUR 패키지를 사용하여 Skype를 설치하려면 아래 단계를 수행했습니다.

wget https://aur.archlinux.org/cgit/aur.git/snapshot/skypeforlinux-bin.tar.gz
tar zxf skypeforlinux-bin.tar.gz
cd skypeforlinux-bin
makepkg -s

출력은 다음과 같습니다

==> Making package: skypeforlinux-bin 8.6.76.56247-1 (Fri Sep  8 10:11:48 -03 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found skypeforlinux_8.6.76.56247_amd64.deb
==> Validating source files with sha256sums...
    skypeforlinux_8.6.76.56247_amd64.deb ... Passed
==> Extracting sources...
  -> Extracting skypeforlinux_8.6.76.56247_amd64.deb with bsdtar
==> Removing existing $pkgdir/ directory...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Stripping unneeded symbols from binaries and libraries...
  -> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "skypeforlinux-bin"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: skypeforlinux-bin 8.6.76.56247-1 (Fri Sep  8 10:13:39 -03 2017)

이제 Skype를 어떻게 실행하나요? 명령 skype같은 것을 검색해 보았지만 아무 것도 나오지 않았기 때문입니다 .

도와주세요? 감사합니다!

답변1

패키지( makepkg -s)를 빌드했지만 아직 설치하지 않았으므로 당연히 실행할 수 없습니다.

pacman -Q skypeforlinux-bin아직 설치되지 않았음을 확인합니다.

출력에는 makepkg다음도 표시됩니다.

==>완료: skypeforlinux-bin 8.6.76.56247-1 (2017년 9월 8일 금요일 10:13:39 -03)

~처럼AUR의 위키 페이지makepkg -i명확하게 하려면 를 통해 빌드한 패키지를 설치 해야 합니다 .

이 시점에서 다시 빌드하거나 더 쉽게 빌드된 패키지가 있는 한 pacman을 사용하면 됩니다.

sudo pacman -U $package_name.pkg.tar.xz

관련 정보