Debian に midnight commander をインストールできないのはなぜですか?

Debian に 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 アドレス ファミリ、ミラーの可用性と最新性、およびその他のいくつかの情報を使用します。

リダイレクタで main、contrib、non-free を使用すると、/etc/apt/sources.list 次のようになります。

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

関連情報