解决centos 新建用户登陆出现bash
lj是新的用户
解决办法:
登陆切换root
chown lj:lj /home/lj
chmod 700 /home/lj
到这里还不行,在linux下通过useradd方式创建新用户时,都会将所有的配置文件从/etc/skel到/home目录的新用户录下,所以还需要拷贝文件
bash-4.2$ cd /etc/skel/
bash-4.2$ ls -a
. .. .bash_logout .bash_profile .bashrc
bash-4.2$ cp .bash_logout /home/lj/
bash-4.2$ cp .bash_profile /home/lj/
bash-4.2$ cp .bashrc /home/lj/