用户的环境变量配置文件不存在导致的问题
=================================================
模拟环境:
[root@zyl_apache ~]# su - 12
[12@zyl_apache ~]$ ll -a
total 24
drwx------. 2 12 12 4096 Jul 18 19:58 .
drwxr-xr-x. 17 root root 4096 Jul 17 19:08 ..
-rw-------. 1 12 12 156 Jul 18 19:58 .bash_history
-rw-r--r--. 1 12 12 18 Jul 18 19:51 .bash_logout
-rw-r--r--. 1 12 12 176 Jul 18 19:51 .bash_profile
-rw-r--r--. 1 12 12 124 Jul 18 19:51 .bashrc
[12@zyl_apache ~]$ rm -f .*
rm: cannot remove `.‘: Is a directory
rm: cannot remove `..‘: Is a directory
[12@zyl_apache ~]$ ll -a
total 8
drwx------. 2 12 12 4096 Jul 18 20:00 .
drwxr-xr-x. 17 root root 4096 Jul 17 19:08 ..
[12@zyl_apache ~]$ su -
Password:
[root@zyl_apache ~]# su - 12
-bash-4.1$
-bash-4.1$ =========>>>>>用户的环境变量配置文件不存在导致
=================================================
解决:
[root@zyl_apache ~]# cp -a /etc/skel/.* /home/12
[root@zylclient /]# ll /home/12 -a
total 28
drwx------. 4 12 12 4096 Jul 18 19:43 .
drwxr-xr-x. 17 root root 4096 Jul 17 19:08 ..
-rw-r--r--. 1 root root 18 Jul 18 2013 .bash_logout
-rw-r--r--. 1 root root 176 Jul 18 2013 .bash_profile
-rw-r--r--. 1 root root 124 Jul 18 2013 .bashrc
drwxr-xr-x. 2 12 12 4096 Nov 12 2010 .gnome2
drwxr-xr-x. 4 12 12 4096 Jun 27 00:44 .mozilla
[root@zylclient /]# chown -R 12:12 /home/12/
[root@zylclient /]# su - 12
[12@zylclient ~]$ =========>>>>>OK!
[12@zylclient ~]$ ls -la
total 28
drwx------. 4 12 12 4096 Jul 18 19:43 .
drwxr-xr-x. 17 root root 4096 Jul 17 19:08 ..
-rw-r--r--. 1 12 12 18 Jul 18 2013 .bash_logout
-rw-r--r--. 1 12 12 176 Jul 18 2013 .bash_profile
-rw-r--r--. 1 12 12 124 Jul 18 2013 .bashrc
drwxr-xr-x. 2 12 12 4096 Nov 12 2010 .gnome2
drwxr-xr-x. 4 12 12 4096 Jun 27 00:44 .mozilla
=================================================
本文出自 “zhangyiling” 博客,转载请与作者联系!
原文地址:http://813415154.blog.51cto.com/10900500/1827547