
Home > Debian > おまけ > プロンプトをFedoraチックに
| プロンプトをFedoraチックに |
デフォルトのプロンプトが sarge:~# な感じだったので、これをFedoraチックに変更してみる。
今現在の状態を先ずは確認してみる。その後でFedoraチックに変更する。
sarge:~# echo $PS1 \h:\w\$ sarge:~# vi .bashrc export PS1='\h:\\$ ' ↓ export PS1 sarge:~# vi /etc/profile PS1='\h:\w\$ ' ↓ PS1='[\u@\h \w]\$ ' sarge:~# . /etc/profile ←変更を適用 [root@sarge ~]# ←Fedoraチックになった |
以降はログアウトしてもこの変更が適用される。
ついでに一般ユーザ(chibi)にもこの設定を適用させてみる
chibi@sarge:~$ vi .bashrc
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
↓
PS1='${debian_chroot:+($debian_chroot)}[\u@\h \w]\$ '
chibi@sarge:~$ . .bashrc ←変更を適用
[chibi@sarge ~]$
|
最終更新 : 09/26/2005