模拟环境:
useradd shine
su - shine
rm -f .bash*
解决方法:
第一个里程碑-原因
#这个用户家目录里面与环境变量有关的文件被删除
.bash_profile
.bashrc
第二个里程碑-解决从/etc/skel把丢失的文件复制回来即可
#1.切换到这个用户复制
[[email protected] ~]$ logout (ctrl+d)
[[email protected] ~]# su - shine
-bash-4.1$ whoami
shine
-bash-4.1$ cp /etc/skel/.bash* ~ #用户家目录模板
#2.重新登录
-bash-4.1$ logout
[[email protected] ~]# su - shine
[[email protected] ~]$
时间: 2024-10-24 11:23:11