Image

지식 기반 → Debian 12에서 apt 패키지 관리자에 대한 프록시 설정

[가상 서버]
출판 날짜: 08.08.2024

설정을 통해 프록시 서버를 사용하여 apt 명령을 사용하여 Linux Debian 12에서 패키지를 설치하고 업데이트할 수 있습니다.

1. 다음 내용으로 새 파일을 만듭니다.

1.2 권한이 있는 프록시의 경우:

touch /etc/apt/apt.conf.d/proxy.conf
Acquire::http::Proxy "http://username:password@<proxy-server-ip>:port/";
Acquire::https::Proxy "http://username:password@<proxy-server-ip>:port/";

1.3 승인되지 않은 프록시의 경우:

touch /etc/apt/apt.conf.d/proxy.conf
Acquire::http::Proxy "http://<proxy-server-ip>:port/";
Acquire::https::Proxy "http://<proxy-server-ip>:port/";

변경 사항은 즉시 적용되며 별도의 조치가 필요하지 않습니다. 이제 apt 명령의 모든 호출(예: apt update, apt install)은 지정된 프록시 서버를 통과합니다.





No Comments Yet