LoginSignup
0
0

More than 5 years have passed since last update.

zsh導入までの流れ

Posted at

概要

AWS ECS Linuxインスタンスにzshいれるまでの流れをメモ書き

作業

バージョン確認

zsh --version

出て来ればインストール済み

インストール

sudo yum -y install zsh

# 現在設定しているシェルの確認
$ echo $SHELL
/bin/bash

# 使用可能なシェルの確認
$ cat /etc/shells
/bin/sh
/bin/bash
/sbin/nologin
/bin/dash
/usr/bin/tmux
/bin/zsh

シェル設定

chsh -s /bin/zsh

参考

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