libncurses5를 다운로드하지 못했습니다.

libncurses5를 다운로드하지 못했습니다.

내 컴퓨터에 ncurses 라이브러리를 설치할 수 없습니다. make로 컴파일하면 치명적인 오류 n.curses.h: No such file or Directory가 발생합니다.

터미널을 통해 설치하려고 시도했지만 성공하지 못했습니다. 나는 다음과 같은 응답을 받았습니다.sudo apt-get install libncurses5 libncurses5:i386

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package libncurses5
E: Unable to locate package libncurses5:i386

또한 다음을 사용한 이후로 source.list를 수정하려고 했습니다. sudo tee /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

(...)

내 source.list에 복사하여 붙여넣고 or 라고 #표시된 위치에 ''를 배치했습니다 . 이제 터미널을 통해 소프트웨어를 다운로드할 수 없습니다. 도와주실 수 있나요?debdeb-src


uname -a; arch

Linux muca 5.8.0-59-generic #66~20.04.1-Ubuntu SMP Thu Jun 17 11:14:10 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
x86_64

답변1

따라서 64비트 Ubuntu 20.04 LTS를 실행하고 있습니다. 다음 단일 긴 명령을 사용하여 기본 APT 리포지토리를 복원할 수 있습니다.

cat <<EOF | sudo tee /etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu/ focal main universe multiverse restricted
deb http://security.ubuntu.com/ubuntu/ focal-security main universe multiverse restricted
deb http://archive.ubuntu.com/ubuntu/ focal-updates main universe multiverse restricted
deb http://archive.ubuntu.com/ubuntu/ focal-backports main universe multiverse restricted

deb-src http://archive.ubuntu.com/ubuntu/ focal main universe multiverse restricted
deb-src http://security.ubuntu.com/ubuntu/ focal-security main universe multiverse restricted
deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main universe multiverse restricted
deb-src http://archive.ubuntu.com/ubuntu/ focal-backports main universe multiverse restricted
EOF

32비트 i386 아키텍처 추가, 필요한 패키지를 사용하여 패키지 목록 업데이트 및 설치

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libncurses5 libncurses5:i386

관련 정보