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?

Ubuntuの開発環境構築

Last updated at Posted at 2024-08-05

EC2 の Ubuntu で新たに自分用の開発環境を構築するときのメモ

zsh

zsh インストール

sudo apt install zsh
chsh -s $(which zsh)

oh-my-zsh インストール

テーマは risto に変更しておく

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

zsh-completions プラグインをインストール

asdf プラグインをインストール

~/.asdfrc に以下を追加

.asdfrc
legacy_version_file = yes

開発用パッケージをインストール

sudo apt install build-essential libz-dev libffi-dev libssl-dev libyaml-dev

Docker をインストール

curl -fsSL https://test.docker.com -o test-docker.sh
sudo sh test-docker.sh

権限の書き換え

sudo chmod 666 /var/run/docker.sock
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?