설정을 통해 프록시 서버를 사용하여 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