Midnight CommanderがDebian Linuxにインストールされていないため、ダウンロードしてみました。
私はapt-get install mc
ターミナルにアクセスしましたが、the pack is not found
rootでこれを行い、インターネット接続が完璧だと言いました。なぜ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
ただし、これにより共通のリポジトリにアクセスでき、ローカルミラーの1つを選択するとより良いパフォーマンスが得られます。だから最も近いものを選択してください。このリストまたは使用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