업데이트할 수 없습니다.

업데이트할 수 없습니다.

터미널에 가서 sudo apt-get update를 입력하면 응답은 다음과 같습니다. E: 소스 목록 /etc/apt/sources.list(dist 구문 분석)의 잘못된 라인 64 E: '를 입력합니다.

이 문제를 고칠 수 있나요?

답변1

/etc/apt/sources.list 파일 편집

$ sudo gedit /etc/apt/sources.list

64번째 줄로 가서 오류를 수정하세요. 오류를 찾을 수 없으면 해당 행을 주석 처리하십시오. 주석 처리된 줄은 로 시작합니다 #.

deb은 다음과 같아야합니다

deb http://archive.canonical.com/ <dist> <section>`

어디

  • dist : 정확한, 유토피아, ...
  • 섹션 : 유니버스, 메인, 파트너, ...

참고하세요https://help.ubuntu.com/community/Repositories/CommandLine

답변2

이 문제를 해결하려면 /etc/apt/ 위치에 있는 기존 "sources.list"를 백업하세요.

source.list를 백업하는 단계,

1. Open the terminal with Ctrl-Alt-T

2. cd /etc/apt/

3. sudo cp source.list /etc/apt/source.list.bak 

4. sudo sed -i -e '64d' /etc/apt/sources.list (this deletes the problematic line)

5. sudo apt-get update (this updates the database)

이 방법으로 문제가 해결되기를 바랍니다. 그렇지 않은 경우 3단계에서 만든 bak 파일을 사용하여 소스 파일을 되돌리세요.

관련 정보