web-dev-qa-db-ja.com

Debianに真夜中の司令官をインストールできないのはなぜですか?

真夜中の司令官は私の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
6
blackcornail

メインの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
6
terdon

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

3
Christopher