web-dev-qa-db-ja.com

Ubuntu 18.04.1にMidnight Commanderをインストールするにはどうすればよいですか?

Ubuntu 18.04.1にMidnight Commander(mc)をインストールできません。

/etc/apt/sources.listファイル:

deb http://archive.ubuntu.com/ubuntu bionic main
deb http://archive.ubuntu.com/ubuntu bionic-security main
deb http://archive.ubuntu.com/ubuntu bionic-updates main

そして、これは私がインストールしようとしたときに私が受け取る返信です:

$ Sudo apt-get install mc
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package mc is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or 
 is only available from another source

これは役に立ちませんでした(#1):

$ Sudo apt-get update

これは役に立ちませんでした(#2):

$ Sudo add-apt-repository ppa:eugenesan/ppa
Sudo apt-get update
Sudo apt-get install mc

また、たとえば、ミラーをhttp://de.archive.ubuntu.comに変更しても役に立ちませんでした。

12
Voju

universeリポジトリを有効にする必要があります。

Sudo add-apt-repositoryユニバース

その後、更新

Sudo aptアップデート

そしてmcをインストールします:

Sudo apt install mc
26
mook765