2
1

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.

世界最速でUbuntu環境を構築するお話

Last updated at Posted at 2020-05-27

さくっと環境が欲しくなったときのためにここに書き留めておきます。

#Ubuntuを引っ張る

bash
$ docker run -it ubuntu bash

はい終わり。多分これが一番早いです。

スクリーンショット 2020-05-27 11.37.38.png 無事root権限でログインできてます。

加えてsudoとかnanoとか任意です。

bash
root$ apt-get update
#gitのインストール
root$ sudo apt-get -y install git
#エディタ(nano)のインストール
root$ sudo apt-get install nano

ちなみにこれだと日本語入力に対応していないので, 以下を参考にしてみてください。
【Docker】ubuntuの環境で日本語入力を可能にする

あとはubuntuをいじくり倒し(てぶっ壊し)ましょう!

2
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?