Linux gconf-sanity-check-2 exited with status 256

时间:2019-11-20 08:54:09  来源:igfitidea点击:

登录Linux时,报错
gconf-sanity-check-2 exited with status 256

检查/tmp权限

/tmp目录比较特殊,需要设置粘滞位:

# chown -R root:root /tmp
# chmod 1777 /tmp
# ls -ld /tmp/

输出示例:

drwxrwxrwt 27 root root 12288 Jul 18 15:25 /tmp/

t表示设置了粘滞位。

检查/home权限

/home目录的权限一般应该是这样的:

$ ls -ld /home/

输出示例:

drwxr-xr-x. 3 root root 18 Sep 30 14:02 /home

如果权限不对,设置正确的权限:

# chown root:root /home
# chmod 0755 /home

清空gdm文件

如果上面方法在系统重启后,还是无效,可以尝试下面的方法:

# rm -rf /var/lib/gdm3/.*

gnome版本(gdm 2):

# rm -rf /var/lib/gdm/.*