2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

docker を ubuntu 18.04 にインストールしようとしたら怒られた

Posted at
# sudo apt install docker.io
パッケージリストを読み込んでいます... 完了
依存関係ツリーを作成しています                
状態情報を読み取っています... 完了
インストールすることができないパッケージがありました。おそらく、あり得
ない状況を要求したか、(不安定版ディストリビューションを使用しているの
であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移
動されていないことが考えられます。
以下の情報がこの問題を解決するために役立つかもしれません:

以下のパッケージには満たせない依存関係があります:
 docker.io : 依存: containerd (>= 1.2.6-0ubuntu1~)
E: 問題を解決することができません。壊れた変更禁止パッケージがあります。

こうやって怒られたので

sudo apt-get remove containerd.io
sudo apt install containerd

これで無事

sudo apt install docker.io

が通った。その後dockerコマンドを利用しようとしたら

# systemctl start docker
Failed to start docker.service: Unit docker.service is masked.

こうやって怒られたので、

# systemctl unmask docker.service
Removed /etc/systemd/system/docker.service.

# systemctl unmask docker.socket

# systemctl start docker.service

この3つを実行したら無事dockerが使えるようになりました。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?