E: Malformed entry 11 in list file /etc/apt/sources.list (URI parse)
E: The list of sources could not be read.
E: Malformed entry 11 in list file /etc/apt/sources.list (URI parse)
E: The list of sources could not be read.
주로 apt-get update 등을 진행 할 때, sorces.list에 잘못된 데이터가 들어가면서 발생하는 에러인데, 보통 저기에 표기된 라인의 줄을 제거하더라도, 다른 줄에서 또 에러가 발생하는 등 계속해서 에러가 이어진다.
이럴 때 여러가지 줄을 수정하며 찾기보다는, 차라리 디폴트 값을 입력해주는게 오히려 빠른 해결로 이어지기도 한다
다음의 소스는 Ubuntu 20.04 LTS (Focal Fossa) -- Full sources.list이다. 퍼온 출처는 아래의 깃허브
https://gist.github.com/ishad0w/788555191c7037e249a439542c53e170
nano /etc/apt/sources.list 후에 아래의 내용을 붙여넣기(기존에 있던 내용은 전부 삭제)
deb http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
deb http://archive.canonical.com/ubuntu focal partner
deb-src http://archive.canonical.com/ubuntu focal partner
# 이후 다시 apt update를 진행 후 설치하고자 하는 패키지를 설치
반응형
'23년 이전 글 > 리눅스' 카테고리의 다른 글
오프라인 환경 Vim 플러그인 설치, python wheel 설치 (0) | 2022.12.27 |
---|---|
리눅스 파일 접근 권한 (0) | 2022.07.19 |
VI 에디터 사용 기초 (0) | 2022.07.19 |
리눅스 파일 시스템과 명령어 (0) | 2022.07.18 |
리눅스 명령어 참고 (0) | 2022.07.14 |