Ubuntu22.04 lts に上げた時のやったことメモ

/

メモ

WSL 用の環境を Ubuntu 22.04 LTS に上げたときのやったことを雑にメモ書き。因みに Ubuntu 自体は Windows Store から DL した。

github 設定

undefined
git config --global user.name "username"
git config --global user.email "email"
git config --global --list
undefined
ls -al ~/.ssh
# =>
# id_rsa.pub
# id_ecdsa.pub
# id_ed25519.pub
undefined
ssh-keygen -t ed25519 -C "email"
cat ~/.ssh/id_ed25519.pub
# => copy and past

npm and yarn

undefined
sudo apt install -y nodejs npm
sudo npm i -g n
sudo n stable
sudo apt purge -y nodejs npm
exec $SHELL -l
node -v
# yarn
sudo npm i --global yarn
# npm check and update
sudo npm i -g npm-check-updates
ncu

other CLI

undefined
sudo npm i -g vercel
undefined
sudo npm i -g firebase-tools
firebase login
undefined
sudo npm i -g textlint
undefined
sudo npm i -g @squoosh/cli

list global installed packages

undefined
npm list --g