tee -q0 없이 저장소에서 qTox를 설치합니다.

tee -q0 없이 저장소에서 qTox를 설치합니다.

Tox를 설치하고 싶어요(http://tox.chat) 내 Xubuntu 16.04에서. 기본 사이트에서는 다음과 같은 방법으로 저장소를 추가할 것을 권장합니다.

echo "deb https://pkg.tox.chat/debian nightly $(lsb_release -cs)" | sudo tee /etc/apt/sources.list.d/tox.list
wget -qO - https://pkg.tox.chat/debian/pkg.gpg.key | sudo apt-key add -

하지만 실행하면 오류가 발생합니다.

tee: invalid option -- 'q'
Try 'tee --help' for more information.
gpg: no valid OpenPGP data found.

"man tee"를 확인했는데 실제로 tee는 -q 옵션을 제공하지 않습니다. 나는 wget에 그것이 있다는 것을 알고 있지만 다음 접근 방식을 시도했습니다.

echo deb https://pkg.tox.chat/debian nightly $(lsb_release -cs) | sudo tee /etc/apt/sources.list.d/tox.list $(wget -qO - https://pkg.tox.chat/debian/pkg.gpg.key) | sudo apt-key add -
tee: unrecognized option '-----BEGIN PGP PUBLIC KEY BLOCK-----'
Try 'tee --help' for more information.
gpg: no valid OpenPGP data found.

또한 .deb 패키지에서 qTox를 설치할 수 있다는 것도 알고 있지만 항상 저장소와 업데이트/동기화하는 것을 선호합니다.

저장소에서 qTox를 설치하는 방법은 무엇입니까?

부가 질문: 왜 tox나 다른 소프트웨어는 "apt-add-repository ppa:user/repository"와 같은 간단한 방법을 제공하는 대신 저장소를 추가하는 스크립트를 제공합니까?

답변1

sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/antonbatenev:/tox/xUbuntu_16.04/ /' >> /etc/apt/sources.list.d/qtox.list"

sudo apt-get update

sudo apt-get install qtox

관련 정보