728x90
반응형
# pod 내부로 접근하여 apt update 등 명령어 실행시 아래의 오류가 발생함
The repository 'http://security.debian.org/debian-security stretch/updates Release' does not have a Release file.
- 해결방법
Commands:
I used these bash commands to make the replacement:
replace deb.debian.org with archive.debian.org:
sudo sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list
replace security.debian.org with archive.debian.org/debian-security/:
sudo sed -i 's|security.debian.org|archive.debian.org/debian-security/|g' /etc/apt/sources.list
remove line that contains source stretch-updates:
sudo sed -i '/stretch-updates/d' /etc/apt/sources.list
- 결과
apt-get install nano
apt-get install vim
apt-get install vi
설치 잘된다.
- 만약 그래도 안된다면 upgrade 후 적용해보기.
apt-get upgrade
- 끝 -
728x90
반응형
'⭐ Kubernetes & EKS > pod (파드)' 카테고리의 다른 글
EKS 에서 pod IP를 수동으로 확인하는 방법 (0) | 2024.06.26 |
---|---|
pod 특징 (0) | 2024.02.15 |
pod 생성 및 삭제 (0) | 2021.12.23 |
pod 재시작 (0) | 2021.12.23 |