답변:
add-apt-repository
/etc/apt/sources.list.d
ppa 저장소 에 새 파일을 작성 합니다. 적절한 파일을 삭제하는 것 외에도 추가 된 gpg 키도 삭제해야합니다.
apt-key list
apt-key del $ID
36FD5529
는 id이고 1024
, 키 길이이며, 나머지는 uid입니다
del
대신에 작동합니다 delete
.
우분투 매뉴얼 페이지 ( man add-apt-repository
)에서 :
-r
,--remove
지정된 저장소를 제거
그래서...
sudo add-apt-repository -r ppa:noobslab/indicators
/etc/apt/sources.list.d/의 저장소 목록에서 제거됩니다.
위의 명령을 실행하기 전에 수행중인 작업에 따라- 해당 리포지토리에서 설치된 패키지가 표준 리포지토리에서 동일한 패키지보다 최신 버전 인 경우 ppa-purge를 사용 하여 수동으로 다운 그레이드하십시오 .
sudo ppa-purge ppa:noobslab/indicators
데비안의 경우 .list 파일을 삭제하십시오. /etc/apt/sources.list.d/
source.list
있습니까?
.list
에/etc/apt/sources.list.d/
실행 취소하려면 다음 add-apt-repository
과 같은 형식을 사용하십시오.
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
다음 명령으로 표시되는 출력을 사용하여 삭제하려는 저장소를 찾으십시오.
grep ^ /etc/apt/sources.list /etc/apt/sources.list.d/*
출력 예 :
/etc/apt/sources.list:#deb cdrom:[Linux Mint 17.3 _Rosa_ - Release amd64 20151128]/ trusty contrib main non-free
/etc/apt/sources.list.d/additional-repositories.list:deb [arch=amd64] https://download.docker.com/linux/ubuntu trusty stable
...
이 예에서는 /etc/apt/sources.list.d/additional-repositories.list
실행 취소 / 제거 할 리포지토리가 있습니다. 파일을 편집하고 해당 줄을 제거하십시오.
pub 1024R/36FD5529 2010-12-14 uid Launchpad PPA for noobslab
. 무엇입니까$ID
?