0
0

Dockerでsudoがないとき

Posted at

起こったこと

Docker に vim をインストールしたかったが,sudo がないと怒られた.
未来の自分の備忘録として残しておく.

$ sudo apt-get install vim
bash: sudo: command not found

解決策

sudo をインストールする.

$ apt-get update
$ apt-get install sudo

これで無事に sudo が使えるようになり,vim をインストールすることができた.

参考

0
0
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
0
0