12
9

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 5 years have passed since last update.

ログインシェルをzshに変える

Posted at

#ログインシェルをzshに変えるコマンドを書いておくだけ

  • LinuxMintは標準のshellはbash
  • 友達のターミナルを見てzshを使いたくなったのでログインシェルを変える

##etc/shellsの確認

% cat /etc/shells 
# /etc/shells: valid login shells
/bin/sh
/bin/dash
/bin/bash
/bin/rbash
/bin/zsh
/usr/bin/zsh
/usr/bin/tmux

/bin/zsh発見!

##ログインシェルをzshに変更する

chsh -s /bin/zsh

ターミナルを閉じて再起動すればzshになるっす。

12
9
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
12
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?