본문 바로가기
컴퓨터 교실/라즈베리파이

[RPi] apt install not found 에러 :: 한국 미러링 링크로 변경하기

by 그레이 후드 2024. 4. 3.
728x90

라즈베리파이의 미러링 링크에 오류가 생기면,

apt-get 업그레이드, 업데이트, 혹은 새로운 패키지를 설치할 때 not found 에러가 발생할 수 있습니다.

 

이때 아래의 파일을 열어서 미러 링크를 수정해주면, 정상적으로 설치 및 업데이트가 진행됩니다.

/etc/apt/sources.list

 

nano를 사용하여 편집하시려면 아래의 순서대로 따라해 보세요.

먼저 아래의 명령어를 복사하여 입력합니다.

sudo nano /etc/apt/sources.list

 

그러면 파일이 다음과 같이 열립니다.

deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi

 

첫 번째 줄은 주석처리하여 작동하지 않게 하고, 맨 아래에 새로운 미러 링크를 입력합니다.

#deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
deb http://ftp.kaist.ac.kr/raspbian/raspbian/ buster main contrib non-free rpi

 

다 작성하였으면, ctrl+X 키 👉 Y 키 👉 엔터 를 눌러 저장합니다.

다시 sudo apt-get install 혹은 update, upgrade 등을 하시면 정상적으로 작동합니다.

 

문제가 해결되시기를 바랍니다 :)

 

👇 미러 링크가 정리된 페이지 링크를 참고하세요!

https://www.raspbian.org/RaspbianMirrors

728x90

댓글