우분투 repository 제거하는법 / apt update오류 해결
우선 /etc/apt/sources.list에서 해당 라인을 삭제합니다.
만약 add-apt-repository로 repo(저장소)를 추가했을 경우에는
메인 파일인
/etc/apt/sources.list 에 추가되지 않고
/etc/apt/sources.list.d 디렉토리 아래에 개별 파일로 저장됩니다.
따라서 파일을 지워주시면 apt에 등록된 repo를 제거할 수 있습니다.
(선택) 필수는 아니지만
키를 더 이상 신뢰하지 않으려면
sudo apt-key list
에서 해당 키 값을 확인하고,
sudo apt-key del KEY_ID
로 지워주시면 되겠습니다.
To remove a repository, you have to do 2 things:
Remove it from sources.list.
If it was added by add-apt-repository then you will find it in its own file in /etc/apt/sources.list.d, not in the main sources.list.
sudo rm /etc/apt/sources.list.d/nemh-systemback-precise.list
Optional: Stop trusting the key
Use apt-key list to list trusted keys. Look for an entry like "Launchpad PPA for Kendek" in this case. Then use apt-key del to delete it:
sudo apt-key del 73C62A1B
# list the trusted keys
sudo apt-key list
# remove the key
sudo apt-key del KEY_ID
만약 add-apt-repository로 repo(저장소)를 추가했을 경우에는
메인 파일인
/etc/apt/sources.list 에 추가되지 않고
/etc/apt/sources.list.d 디렉토리 아래에 개별 파일로 저장됩니다.
따라서 파일을 지워주시면 apt에 등록된 repo를 제거할 수 있습니다.
(선택) 필수는 아니지만
키를 더 이상 신뢰하지 않으려면
sudo apt-key list
에서 해당 키 값을 확인하고,
sudo apt-key del KEY_ID
로 지워주시면 되겠습니다.
To remove a repository, you have to do 2 things:
Remove it from sources.list.
If it was added by add-apt-repository then you will find it in its own file in /etc/apt/sources.list.d, not in the main sources.list.
sudo rm /etc/apt/sources.list.d/nemh-systemback-precise.list
Optional: Stop trusting the key
Use apt-key list to list trusted keys. Look for an entry like "Launchpad PPA for Kendek" in this case. Then use apt-key del to delete it:
sudo apt-key del 73C62A1B
# list the trusted keys
sudo apt-key list
# remove the key
sudo apt-key del KEY_ID