首页 > 代码库 > Ubuntu12.04开机报错:could not update ICEauthority file /home/user/.ICEauthority 解决
Ubuntu12.04开机报错:could not update ICEauthority file /home/user/.ICEauthority 解决
产生原因:误将/home/user目录的用户变成了root,所以无法更新ICE导致开机警告
解决方法:
1.使用guest登录
2.打开一个console
3.Ctrl + Alt +F1 进入安全模式
4.使用你的用户名登录
5.sudo chown -R user:user /home/$user/.ICEauthority 或 sudo chown -R user:user /home/$user/.* user为你自己的用户名
sudo chmod 644 /home/$USER/.ICEauthority
6.sudo reboot 此时就可以使用自己的用户名登录了
其他解决方法:
一、
sudo chown user -R /home/user(此处user为你的用户名)
二、
首先,要查看/home/目录的用户和组是不是属于root用户的,这个目录必须是属于root用户和root组的
# ls -l /home/用户名
drwxr-xr-x 4 root root 4096 2008-05-31 10:40 home
如果不是的话,变更组为root,用户为root
# sudo chgrp -R root /home //改变组为root
# sudo chown -R root /home //改变用户为root
其次,变更/home目录的权限为755
# sudo chmod 755 /home
再次,变更/home/用户名/.dmrc权限为644
# sudo chmod 600 /home/用户名/.ICEauthorit