0
0

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.

ubuntu18.04 LTS(desktop)インストール後の最低開発環境を用意

Posted at

ubuntu18.04 LTS インストール後の最低開発環境を用意します。
vmware、hyper-v、virtualbox等はご自身でご用意下さい。

要不要、追加等はお好みで。

isoの用意

アップデート

sudo apt update
sudo apt upgrade
sudo apt autoremove

タイムゾーンを直す

chromeのインストール

ホームディレクトリのフォルダの英語化

隠しフォルダ確認方法

sudoのパスワードをなしにする

デフォルトのテキストエディタをvimにする

画面ロックをやめる

最新のgitをぶちこむ

brew を使えるようにする

sudo apt install linuxbrew-wrapper

linuxbrewのpathを通す

anyenv + nodenv 周り(好み)

$ cd
$ git clone https://github.com/riywo/anyenv ~/.anyenv
$ echo 'export PATH="$HOME/.anyenv/bin:$PATH"' >> ~/.bashrc
$ echo 'eval "$(anyenv init -)"' >> ~/.bashrc
$ echo 'export PATH="$HOME/.anyenv/envs/nodenv/bin:$PATH"' >> ~/.bashrc
$ exec $SHELL -l
$ source ~/.bashrc
$ anyenv install nodenv
$ exec $SHELL -l
$ brew install node-build
$ echo yarn >> $NODENV_ROOT/default-packages
$ nodenv install 11.4.0 #状況に応じて
$ nodenv rehash

あとは好きにする。
参考
https://blog.officekoma.co.jp/2020/02/nodenvnodejs.html
https://qiita.com/yoko_u/items/6c8ee617d5ea0ac13d13

git初期設定

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?