Midnight Commander가 Debian Linux에 설치되어 있지 않아서 다운로드해 보았습니다.
나는 apt-get install mc
터미널에 접속했지만 the pack is not found
루트로 이 작업을 수행했고 인터넷 연결이 완벽하다고 말했습니다. 왜 MC를 다운로드하고 설치할 수 없는지 잘 모르겠습니다. 아는 사람 있나요?
내 거 /etc/apt/sources.list
:
#
# deb cdrom: [Debian GNU/Linux 7.6.0 _Wheezy_ - Offical amd64 CD Binary-1 20140712-14:11]/ wheezy main
deb cdrom: [Debian GNU/Linux 7.6.0 _Wheezy_ - Offical amd64 CD Binary-1 20140712-14:11]/wheezy main
deb http://security.debian.org/ wheezy/update main
deb-src http://security.debian.org/ wheezy/updates main
# wheezy-updates, previously known as 'volatile'
# A networl mirror was not selected during install. The following entries
# are provided as examples, but you should amend them as appropriate
# for your mirror of choice.
#
# deb http://ftp.debian.org/debian/ wheezy-updates main
# deb-src http://ftp.debian.org/debian/ wheezy-updates main
답변1
기본 Debian 저장소가 누락되었으며 소스가 보안 저장소만을 가리키고 있습니다. 마지막 몇 줄의 주석을 해제하세요 /etc/apt/sources/list
. 이것을 변경하십시오:
# deb http://ftp.debian.org/debian/ wheezy-updates main
# deb-src http://ftp.debian.org/debian/ wheezy-updates main
이와 관련하여:
deb http://ftp.debian.org/debian/ wheezy main
deb-src http://ftp.debian.org/debian/ wheezy main
그러나 이렇게 하면 공통 저장소에 액세스할 수 있으며 로컬 미러 중 하나를 선택하면 더 나은 성능을 얻을 수 있습니다. 그러니 가장 가까운 것을 선택하세요.이 목록또는 사용netselect-apt
:
sudo apt-get install netselect-apt
sudo netselect-apt -n wheezy
sudo cp ./sources.list /etc/apt/sources.list
무엇을 선택하든 다음을 실행하여 피드를 새로 고치는 것을 잊지 마세요.
sudo apt-get update
답변2
Debian 리디렉터(http://http.debian.net/)...
리디렉터는 사용자와 이미지의 지리적 위치와 네트워크 위치, 요청된 파일의 아키텍처, IP 주소 계열, 이미지의 가용성과 최신성, 기타 정보를 사용합니다.
/etc/apt/sources.list
다음과 같이 리디렉터와 함께 main, contrib 및 non-free를 사용하십시오 .
deb http://http.debian.net/debian/ wheezy main contrib non-free
deb-src http://http.debian.net/debian/ wheezy main contrib non-free
deb http://security.debian.org/ wheezy/updates main contrib
deb-src http://security.debian.org/ wheezy/updates main contrib
# wheezy-updates, previously known as 'volatile'
deb http://http.debian.net/debian/ wheezy-updates main contrib
deb-src http://http.debian.net/debian/ wheezy-updates main contrib
업데이트: sudo apt-get update
MC 설치:sudo apt-get install mc