APT를 사용하여 패키지를 설치하려고 할 때 "패키지를 찾을 수 없습니다"

APT를 사용하여 패키지를 설치하려고 할 때 "패키지를 찾을 수 없습니다"

패키지를 찾을 수 없음 오류로 인해 "sudo" 이외의 다른 항목을 설치할 수 없습니다. 누구든지 아이디어가 있습니까? 주로 Steam 및 leafpad와 같은 다른 앱을 설치하려고 시도하면서 거의 모든 문제가 해결되었기 때문에 여기에 게시합니다. 나는 Ubuntu를 사용하고 있었지만 최근에 그것을 시험해 보기 위해 Debian으로 전환했다는 것을 명심하십시오.

더 많은 정보가 필요하시면 댓글 남겨주시면 감사하겠습니다. 그런데 다른 유사한 질문을 모두 확인했지만 그 중 아무 것도 도움이 되지 않았습니다.

데비안 제시 8.6

실수:

$ sudo apt-get install <package>
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package <package>

Sources.list 파일: #

# deb cdrom:[Debian GNU/Linux 8.6.0 _Jessie_ - Official amd64 DVD     Binary-1 20160917-14:25]/ jessie contrib main

#deb cdrom:[Debian GNU/Linux 8.6.0 _Jessie_ - Official amd64 DVD Binary-1     20160917-14:25]/ jessie contrib main

deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

# jessie-updates, previously known as 'volatile'
deb http://ftp.au.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.au.debian.org/debian/ jessie-updates main contrib non-free

답변1

source.list 파일이 누락된 것 같습니다. /etc/apt로 이동하여 source.list라는 새 파일을 만듭니다.

나는 당신이 Debian Stable을 사용하고 있다고 가정하고 다음 내용을 입력합니다:

deb http://httpredir.debian.org/debian/ jessie main non-free contrib
deb http://httpredir.debian.org/debian/ jessie-updates main contrib non-free
deb http://security.debian.org/ jessie/updates main contrib non-free

deb-src http://httpredir.debian.org/debian/ jessie main non-free contrib
deb-src http://httpredir.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

나중에 데비안 테스트(최신 애플리케이션, 커널 등)를 시도하려면 다음과 같이 이 파일에 테스트 저장소 줄을 추가해야 합니다:

deb http://httpredir.debian.org/debian/ testing main non-free contrib
deb http://httpredir.debian.org/debian/ testing-updates main contrib non-free
deb http://security.debian.org/ testing/updates main contrib non-free

deb-src http://httpredir.debian.org/debian/ testing main non-free contrib
deb-src http://httpredir.debian.org/debian/ testing-updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free

비교를 위해 /etc/apt 폴더를 살펴보십시오.

root@debian:/home/gv/Desktop/PythonTests# ls -al /etc/apt 
total 56
drwxr-xr-x   6 root root  4096 Jan  4 19:16 .
drwxr-xr-x 131 root root 12288 Jan  4 19:17 ..
drwxr-xr-x   2 root root  4096 Jan  5 00:38 apt.conf.d
-rw-r--r--   1 root root    99 Dec 27 08:42 listchanges.conf
-rw-r--r--   1 root root   218 Jan  1 21:53 preferences
drwxr-xr-x   2 root root  4096 Mar 12  2016 preferences.d
-rw-r--r--   1 root root  1558 Jan  1 22:00 sources.list
drwxr-xr-x   2 root root  4096 Jan  1 21:38 sources.list.d
-rw-r--r--   1 root root  4171 Jan  1 21:38 trusted.gpg
drwxr-xr-x   2 root root  4096 Dec 27 02:58 trusted.gpg.d

관련 정보