2

私はハイパーレジャーファブリック(環境のセットアップ)をやろうとしていますが、ドッカーが必要でした。docker をインストールする解決策のインターネットを検索しようとしましたが、役に立ちませんでした。以下は、docker をインストールしようとしたときに発生したエラーです。

git bash(git) で を使ってみましたsudo apt-get install docker-engine。しかし、それは言う

Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 Docker-engine: Depends: init-system-helpers (>= 1.13~) but it is not installable
                 Depends: sysv-rc (>= 2.88dsf-24) but 2.88dsf-13.10ubuntu11 is to be installed or
                          file-rc (>= 0.8.16) but it is not installable
                 Depends: libc6 (>= 2.17) but 2.15-0ubuntu10 is to be installed
                 Depends: libdevmapper1.02.1 (>= 2:1.02.63) but 2:1.02.48-4ubuntu7 is to be installed
                 Depends: libsystemd-journal0 (>= 201) but it is not installable
                 Recommends: aufs-tools but it is not going to be installed
                 Recommends: cgroupfs-mount but it is not installable or
                             cgroup-lite but it is not going to be installed
                 Recommends: git but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

docker をインストールする際に、この Web サイトのすべてのステップに従いました: https://docs.docker.com/engine/installation/linux/ubuntulinux/

これは私がハイパーレジャーファブリックを構築しようとしたWebサイトです(vagrantの外部で構築し、dockerをインストールする段階で): http://hyperledger-fabric.readthedocs.io/en/latest/dev-setup/build/

4

5 に答える 5

4

のパッケージを直接ダウンロードlibsystemd-journal0すると役立つ場合があります。

特定の deb ファイルをダウンロードして、dpkgコマンドを使用してインストールすることはできますが、依存関係の問題が残っている可能性があります。したがって、このページ/etc/apt/source.listに従ってファイルを変更することをお勧めします(64 ビット バージョンが必要な場合)。

libsystemd-journal0末尾の後に次の行を追加できます/etc/apt/sources.list

deb http://cz.archive.ubuntu.com/ubuntu trusty main

それから

sudo apt-get update

他の依存関係の問題も同様の方法で解決できると思います。

于 2016-10-26T08:03:57.843 に答える
1

これが機能するかどうかはわかりませんが、これを試してください:

sudo apt update

と、

sudo apt-get update

それから、

sudo apt install docker.io

プロンプト/要求されるたびにsudoパスワードを入力するか、ルートとしてログインすることをお勧めします。Linuxディストリビューションにdockerをインストールしていたときにこれを試しました。(カリ)。これがあなたにとってもうまくいくことを願っています... [Linuxディストリビューションの更新も試してください]

于 2021-06-07T06:26:41.767 に答える