なぜDebianにMidnight Commanderをインストールできないのですか?

なぜDebianにMidnight Commanderをインストールできないのですか?

Midnight CommanderがDebian Linuxにインストールされていないため、ダウンロードしてみました。

私はapt-get install mcターミナルにアクセスしましたが、the pack is not foundrootでこれを行い、インターネット接続が完璧だと言いました。なぜ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

おすすめ記事