2
1

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.

新しく作ったユーザでタブ補完やコマンドの履歴が使えない場合

Posted at

#はじめに
これは、Linux初心者の私が、少し悩んでしまったことをメモとして記録したものですので、寛大な心でお読みください。
#症状
・Ubuntu19.04にて、新しく作ったユーザで
  ・タブキーでコマンドの補完ができない
  ・矢印キーでコマンドの履歴を見れない
  ・シェルがモノクロ
 などの症状がでる。
#原因
・それはbashではなく、shのシェルです。
#解決策
・ようは、使用するシェルを変更すれば良いため、
  ・chshコマンドで使用するシェルを変更
  ・/etc/passwdのファイルから、変更するユーザの行のシェルを書き換える
 などの方法がある。お好みで。

※chshコマンドでbashに変更した場合

$ chsh
パスワード: 
Changing the login shell for 〇〇〇(ユーザ名)
Enter the new value, or press ENTER for the default
        Login Shell [/bin/sh]: /bin/bash (← 入力)

そして、再接続か、bashコマンドでbashが起動する。
もし、bash以外を使用している方はbashのところを変更してください。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?