권한 거부 : /etc/apt/sources.list


20

Java jre를 설치하려고하는데 일반적으로 다음과 같이합니다.

sudo echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list
sudo apt-key adv --keyserver keys.gnupg.net --recv-keys 5CB26B26
sudo apt-get update
sudo apt-get install update-sun-jre
exit

하지만 내가 할 때

sudo echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list

내가 참조

권한 거부 : /etc/apt/sources.list

내가 할 때

ls -l /etc/apt/sources.list

내가 참조

-rw-r--r-- 1 root root 3360 Aug 26 01:45 /etc/apt/sources.list

내가 할 때

sudo mv /etc/apt/sources.list /etc/apt/sources.list.old
sudo cat /etc/apt/sources.list.old | sudo tee /etc/apt/sources.list

내가 참조

#deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/main/binary-i386/

#deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/restricted/binary-i386/
#deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ precise main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://lb.archive.ubuntu.com/ubuntu/ precise main restricted
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://lb.archive.ubuntu.com/ubuntu/ precise-updates main restricted
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://lb.archive.ubuntu.com/ubuntu/ precise universe
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise universe
deb http://lb.archive.ubuntu.com/ubuntu/ precise-updates universe
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://lb.archive.ubuntu.com/ubuntu/ precise multiverse
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise multiverse
deb http://lb.archive.ubuntu.com/ubuntu/ precise-updates multiverse
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://lb.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu precise-security main restricted
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
deb http://security.ubuntu.com/ubuntu precise-security universe
deb-src http://security.ubuntu.com/ubuntu precise-security universe
deb http://security.ubuntu.com/ubuntu precise-security multiverse
deb-src http://security.ubuntu.com/ubuntu precise-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu precise partner
# deb-src http://archive.canonical.com/ubuntu precise partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu precise main
deb-src http://extras.ubuntu.com/ubuntu precise main

문제가 해결되지 않았습니다. 그래도 권한 오류가 표시됩니다. 64 비트 노트북에 있습니다.

답변:


40

이것은 알려진 sudo방식으로,이 방식으로 사용할 때 제대로 작동하지 않습니다. 그동안 때문이다 echo명령으로 실행 sudo>>APPEND의 시도에 대한이 비처럼 파일 대상을 열 sudo사용자. 그것이 권한 문제가있는 곳입니다.

그러나 여러 부분으로 구성된 답변을 읽으십시오. 그러면 내가 제공하는 다른 것보다 더 '안전한'것으로 간주 될 수있는 별도의 솔루션이 제공됩니다.

1:

/etc/apt/sources.list.d/지금 말하는 deb 명령이 들어 있는 별도의 파일을 사용하십시오 . sudo그래도 파일을 편집 / 생성하려면 을 사용해야 합니다.


2 :

해결책은 sudo su -c "echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list"시스템이 수퍼 유저로 시스템을 실행하도록 지시하고, 'su'명령 앞에 'sudo'를 사용하여 액세스 할 수있게합니다.

하십시오 있습니다 su당신이 절대적으로 필요한 경우에만이 방법을 사용한다, 그래서 여기에 언급 된 명령 I의 명령을 사용 외부는 위험하다.


가장 안전한 솔루션 (# 3) : echo | sudo tee별도 사용 및 별도.list

그러나 슈퍼 유저 프롬프트로 넘어 가지 않고도 위와 동일한 결과를 얻을 수 있습니다. 이 명령으로

echo 'deb http://www.duinsoft.nl/pkg debs all' | sudo tee -a /etc/apt/sources.list

그러나 위의 # 1도 고려하고 대신 새 파일을 사용하십시오.

sudo touch /etc/apt/sources.list.d/duinsoft.list
echo 'deb http://www.duinsoft.nl/pkg debs all' | sudo tee -a /etc/apt/sources.list.d/duinsoft.list

이런 식으로 메인을 그대로 두지 sources.list만 소스는이 저장소를 특별히 처리하는 포함 된 파일을 통해 추가됩니다. (PPA가 추가되는 방식입니다!)


19

이 명령으로 발생하는 echo것은 루트로 실행되지만 그렇지는 않습니다 >>. 대신 다음을 시도하십시오.

echo 'deb http://www.duinsoft.nl/pkg debs all' | sudo tee -a /etc/apt/sources.list

또는 두 단계로 수행 할 수 있습니다.

sudo -i

echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list

exit

3

이 명령의 기능은에 추가 deb http://www.duinsoft.nl/pkg debs all됩니다 /etc/apt/sources.list. 다른 방법으로 해보자! 해당 파일을 열고 수동으로 추가하십시오!

sudo nano /etc/apt/sources.list

그런 다음 deb http://www.duinsoft.nl/pkg debs all끝에 추가 Ctrl + O하고을 누른 다음 ENTER를 눌러 변경 사항을 저장하고 마지막 Ctrl + X으로 종료하십시오 nano.

이제 다음 명령으로 넘어갈 수 있습니다 ...


1
니스, 이것은 나에게 많은 도움이되었다!
Kirill Gusyatin

0

>>이 작업을 수행 한 후 sudo를 다시 추가하기 만하면됩니다. 이 시도

sudo echo 'deb http://www.duinsoft.nl/pkg debs all'>> sudo /etc/apt/sources.list

나는 문자 그대로 동일한 문제가 있었고 역 추적하고 싶지 않았으며 이것이 나를 위해 일했다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.