패키지를 업데이트하고 설치할 수 없습니다: E: 패키지를 찾을 수 없습니다! 리눅스 민트 17.3

패키지를 업데이트하고 설치할 수 없습니다: E: 패키지를 찾을 수 없습니다! 리눅스 민트 17.3

질문이 있습니다.

패키지 설치나 시스템 업데이트는 불가능합니다.

터미널이나 소프트웨어 관리자가 작동하지 않습니다(소프트웨어 관리자가 시작되지 않음).

터미널 표시 명령은 다음과 같습니다.

sudo apt-get update
E: Type 'non-free' is not known on line 3 in source list /etc/apt/sources.list
E: The list of sources could not be read.

프로그램을 설치하려고 하면:

sudo apt-get install exfat-utils exfat-fuse
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package exfat-utils is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'exfat-utils' has no installation candidate
E: Unable to locate package exfat-fuse

sudo apt-get update && sudo apt-get install autokey-gtk
E: Type 'non-free' is not known on line 3 in source list /etc/apt/sources.list
E: The list of sources could not be read.


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

내 소스 목록 파일의 내용은 다음과 같습니다.

#deb cdrom:[Linux Mint 17.3 _Rosa_ - Release amd64 20151128]/ trusty contrib 

main non-free

deb http://xnv4.xandros.com/xs2.0/upkg-srv2 etch main contrib
      non-free

deb http://xnv4.xandros.com/xs2.0/upkg-srv2 etch main contrib
      non-free

이 문제는 이전 Linux Mint(17.0)에서 발생했으며 LM 17.3을 설치한 지 몇 주 후에 다시 나타났습니다.

도와주셔서 정말 감사합니다. 감사합니다!

답변1

형식 sources.list이 잘못되었습니다. "무료 아님"은 별도의 줄에 표시되어서는 안 됩니다. 이것이 바로 다음과 같은 이유입니다.

E: Type 'non-free' is not known on line 3 in source list /etc/apt/sources.list

source.list는 다음과 같아야 합니다.

#deb cdrom:[Linux Mint 17.3 _Rosa_ - Release amd64 20151128]/ trusty main contrib non-free

deb http://xnv4.xandros.com/xs2.0/upkg-srv2 etch main contrib non-free

deb http://xnv4.xandros.com/xs2.0/upkg-srv2 etch main contrib non-free

또한 첫 번째 줄은 주석 처리되어 있으므로 실제로는 두 줄만 있고 어느 쪽도 Mint의 표준 소스처럼 보이지 않습니다. 더 많은 소스를 추가할 수도 있습니다. 또한 xnv4.xandros.com소스를 보존할지 여부도 고려하세요 .

관련 정보