AIX安装好之后只有一个$或#的提示符,使用起来非常的不方便,在网上搜索到的资料都只说到修改~/.profile文件,或者是在/etc/profile文件加入环境变量PS1=‘[email protected]$PWD $ ‘, 但是这样修改要么是每个用户都得自己改~/.profile文件,要么root的提示符也变成了$,经过我的试验,只需要在/etc/profile文件加入下面内容,就能根据是否root登陆而自动设置root的提示符为#: PS1=‘[email protected]$PWD $ ‘ if [ "$LOGNAME" = "root" ] then PS1=‘[email protected]$PWD # ‘ fi 外1种解决方法: 修改/etc/profile PS1=‘[email protected]$PWD $ ‘ 修改/.profile PS1=‘[email protected]$PWD # ‘
AIX修改root # 号提示符
时间: 2024-10-19 02:33:29