CD 대신 인터넷을 통해 데비안 패키지를 설치하는 방법은 무엇입니까?

CD 대신 인터넷을 통해 데비안 패키지를 설치하는 방법은 무엇입니까?

sudo를 설치하기 위해 Debian 테스트에 root를 입력할 때 다음을 입력합니다.

apt-get install sudo

다음을 반환합니다.

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  sudo
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/920 kB of archives.
After this operation, 2,895 kB of additional disk space will be used.
Media change: please insert the disc labeled
 'Debian GNU/Linux testing _Stretch_ - Official Snapshot amd64 xfce-CDBinary-1 20150518-05:36'
in the drive '/media/cdrom/' and press enter

인터넷을 통해 데비안에 sudo를 어떻게 설치하나요?

답변1

apt-get(다른 모든 APT 기반 소프트웨어와 마찬가지로: aptitude, synaptic 등) 파일에 언급된 위치에서 패키지를 찾습니다./etc/apt/sources.list. 또한 디렉터리의 파일이 사용됩니다 /etc/apt/sources.list.d(이름이 너무 "이상하지" 않은 경우).

파일을 편집하여 /etc/apt/sources.list데비안 CD를 참조하는 줄을 제거하거나 주석 처리하세요. 행을 주석 처리하려면 #시작 부분에 이 문자를 추가하십시오. 이 파일을 편집하려면 루트여야 합니다. nano를 사용하는 경우 단어 줄 바꿈으로 인해 실수로 개행 문자가 삽입되지 않도록 하세요(실행 nano -w /etc/apt/sources.list하거나 Alt+를 눌러 L단어 줄 바꿈을 비활성화하세요).

인터넷 패키지 소스가 필요합니다. 설치 중에 선택한 옵션에 따라 해당 옵션이 이미 있을 수도 있고 없을 수도 있습니다. 존재하더라도 CD를 참조하는 줄이 있으면 CD에 있는 패키지보다 CD가 우선합니다.

다음은 네트워크 리소스에 대한 몇 가지 일반적인 라인입니다. 다음 ftp.fr.debian.org으로 교체거울당신 옆에.

## Debian testing proper
deb http://ftp.fr.debian.org/debian stretch main non-free contrib
deb-src http://ftp.fr.debian.org/debian stretch main non-free contrib

## Security updates
deb http://security.debian.org/ stretch/updates main contrib non-free
deb-src http://security.debian.org/ stretch/updates main contrib non-free

## Other updates
deb http://ftp.fr.debian.org/debian stretch/updates main non-free contrib
deb-src http://ftp.fr.debian.org/debian stretch/updates main non-free contrib

파일을 편집한 후 sources.list(루트로) 명령을 실행하십시오.

apt-get update

이제 인터넷에서 패키지를 설치할 수 있습니다.

관련 정보