web-dev-qa-db-ja.com

バイオニックにコックピットをインストールできません

apt-get install cockpitを使用してcockpitvbyをインストールしようとしていますが、次のエラーが発生します。

The following packages have unmet dependencies: 
cockpit : Depends: cockpit-system (= 172-1~ubuntu18.04.1) but it is not going to be installed 
          Recommends: cockpit-storaged (= 172-1~ubuntu18.04.1) but it is not going to be installed 
E: Unable to correct problems, you have held broken packages.

少しグーグルとコックピットで 命令 Ubuntuから、次の行もsource.listに追加しました

deb http://archive.ubuntu.com/ubuntu bionic-backports main restricted universe multiverse

buntuヘルプ に概説されているように、更新

Sudo apt-get update

そして、インストールしてみてください

Sudo apt-get install cockpit

しかし、まだ次のエラーが発生します:

The following packages have unmet dependencies:
cockpit : Depends: cockpit-system (= 172-1~ubuntu18.04.1) but it is not going to be installed
          Recommends: cockpit-storaged (= 172-1~ubuntu18.04.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
2
Simsons

コックピットはBionicの公式リポジトリに存在するため、簡単にインストールするには次のようにします。

Sudo apt update && Sudo apt install cockpit

注:追加したリポジトリと更新をSudo apt updateを介して削除し、インストールに進みます。

OPとの十分なやり取りの後、問題は彼がsources.listuniverseリポジトリがないことを発見したので、克服するために次の手順を実行しました。

  1. リポジトリを追加:

    Sudo add-apt-repository universe
    
  2. それに応じて更新します。

    Sudo apt update
    
  3. 今すぐインストール:

    Sudo apt install cockpit
    
5
George Udosen