切换用户出现 bash 4.2 问题
出现 bash 4.2 错误 发现是用户指定家目录下 缺少2个隐藏文件
这题前提条件 我指定的家目录是 /opt/{孙悟空,猪八戒,唐僧,沙悟净}
/etc/skel/.bashrc /etc/skel/.bash_profile 传过去后显示登录成功
问题展示:
[root@localhost ~]# su sunwukong
bash-4.2$ ll
bash: ll: 未找到命令
bash-4.2$
更新隐藏文件 root用户下
source ~/.bashrc
source ~/.bash_profile
使用root用户登录,在用户指定的家目录中传入2个隐藏文件
cp /etc/skel/.bashrc /opt/孙悟空
cp /etc/skel/.bash_profile /opt/孙悟空
cp /etc/skel/.bashrc /opt/沙悟净
cp /etc/skel/.bash_profile /opt/沙悟净
cp /etc/skel/.bashrc /opt/唐僧
cp /etc/skel/.bash_profile /opt/唐僧
cp /etc/skel/.bashrc /opt/猪八戒
cp /etc/skel/.bash_profile /opt/猪八戒
登录效果:
[root@localhost sunwukong]# su sunwukong
[sunwukong@localhost ~]$ ll
总用量 0
[sunwukong@localhost ~]$