步骤一
1、先创建haha用户 useradd haha
2、再设置密码 passwd haha
步骤二
1>[root@localhost conf]# vi ~haha/.bash_profile //每次登录时执行
#.bash_profile
#Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
#User specific environment and startup programs
PATH= P A T H : PATH: PATH:HOME/bin
export PATH
echo “welcome haha!”【增加此内容】
保存并退出 --:wq
2>[root@localhost conf]# vi ~haha/.bashrc //每次进入新bash环境中执行
#.bashrc
#Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
#User specific aliases and functions
echo “hi,this is a new bash!”【增加此内容】
保存并退出 --:x
3> [root@localhost conf]# vi ~haha/.bash_logout //每次退出登录时执行
#~/.bash_logout
echo “byebye haha!” 【增加此内容】
sleep 3 【增加此内容】–睡眠3秒跳入下一指令
保存并退出 --:wq
步骤三
在虚拟机中新打开tyy2 端口 (重启客户机),以haha 身份登录
按Ctrl+Alt+F2—F6切换到文本模式,按Alt+F1切换到图形模式