Chrome OS를 통해 adb 디버깅 사이드로더를 설치하려고 시도한 후 Linux 터미널에 오류 메시지가 표시됩니다. 나는 이것이 이것과 아무 관련이 없다고 생각합니다. 실행할 때 표시되는 오류 메시지는 sudo apt-get install android-tools-adb
다음과 같습니다.
E: Type 'new' is not known on line 4 in source list /etc/apt/sources.list
E: The list of sources could not be read.
이 오류 메시지는 무엇이며 해결 방법은 무엇입니까?
답변1
파일의 내용을 게시하세요 /etc/apt/sources.list
. 먼저 확인하려면 파일의 4번째 줄이 나머지 부분과 다르게 보이는지 확인하세요. 사이드로더를 설치하려고 할 때 source.list가 어떤 방식으로든 손상된 것 같습니다.
제이슨 C.
답변2
명령줄은 내용을 덮어쓰고 /etc/apt/sources.list
다음 오류를 해결합니다(오류는 4번째 줄에서 발생함).데비안 위키: Sources.list:
E: Type 'new' is not known on line 4 in source list /etc/apt/sources.list
E: The list of sources could not be read.
터미널을 열고 다음 줄을 붙여넣습니다.
cat <<-EOF | sudo tee /etc/apt/sources.list
deb http://deb.debian.org/debian buster main
deb-src http://deb.debian.org/debian buster main
deb http://deb.debian.org/debian-security/ buster/updates main
deb-src http://deb.debian.org/debian-security/ buster/updates main
deb http://deb.debian.org/debian buster-updates main
deb-src http://deb.debian.org/debian buster-updates main
EOF
sudo apt update
sudo apt -y install android-tools-adb