<---- template headericclude ----->
what is /usr/libexec/gconf-sanity-check-2 ?
FedoraForum.org - Fedora Support Forums and Community
Results 1 to 12 of 12
  1. #1
    Join Date
    Mar 2006
    Location
    Italy
    Posts
    264
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    what is /usr/libexec/gconf-sanity-check-2 ?

    Hi , after update my system F10 x86_64 , at the first reboot i have this message and after black screen ....

    There is a problem with the configuration server. (/usr/libexec/gconf-sanity-check-2 exited with status 256)


    any help ? what is this gconf-sanity-check-2 ?

    thanks

  2. #2
    Join Date
    Dec 2004
    Location
    Canada
    Age
    32
    Posts
    9,221
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't say for sure, but I'd imagine it checks your gconf configuration (gconf is the Gnome equivalent of the Windows registry, but it's only used for storing your preferences things like about font sizes, current theme, etc) and it's exiting with status 256 because it found a problem. Try backing up your ".gconf" folder like this:
    Code:
    mv .gconf gconf-bak
    That will erase all your preferences, but if you need them back just remove the new ".gconf" folder which is auto-generated and replace it with the stored backup (gconf-bak).
    Firewing1
    [+] My open source software and blog
    [+] Some of my howtos: (for full list, click here)

  3. #3
    Join Date
    Feb 2004
    Location
    Shallotte, NC
    Posts
    175
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just started having this problem with FC10 X86-64 and tried your solution without success.

    Any other suggestions?

    Thanks

  4. #4
    Join Date
    Apr 2010
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: what is /usr/libexec/gconf-sanity-check-2 ?

    I faced a similar problem which I solved by changing the permissions of /tmp directory to rwx-rwx-rwx.

  5. #5
    Join Date
    Apr 2008
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: what is /usr/libexec/gconf-sanity-check-2 ?

    Quote Originally Posted by vednth87
    I faced a similar problem which I solved by changing the permissions of /tmp directory to rwx-rwx-rwx.
    That fixed it for me as well. Thanks for the post.

    I wish gconf-sanity-check-2 was a bit more verbose when it found a problem.

  6. #6
    Join Date
    Jul 2010
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Smile Re: what is /usr/libexec/gconf-sanity-check-2 ?

    Hi,

    I'm running the FC13 and this issue has come up...and it says

    There is a problem with the configuration server. (/usr/libexec/gconf-sanity-check-2 exited with status 256)

    on closing that, the login screen comes and if I try to login, the same alert pops up and the screen is blank when logged-in via the GNOME and it if tried via the KDE or KDE (Failsafe) it returns to the login screen.

    Someone please help

  7. #7
    Join Date
    Sep 2010
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: what is /usr/libexec/gconf-sanity-check-2 ?

    Hi,

    @charan2987


    i don't know if u are still facing da problem !!


    this is my first post by da way!!! but i had also got the same error when i have wrongly set up TMPDIR parameter in bash_profile.

    i had corrected the entry and the problem is solved. i can log in now.

    just think n check for any latest changes u have done in system configuration

    refert if it works !!!

  8. #8
    Join Date
    Jul 2010
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: what is /usr/libexec/gconf-sanity-check-2 ?

    @wolvarine - A quick question here....how to change the parameter set wrongly on the bash_profile when I am unable to go past the login screen cos of this error popping up

    N as I did not know wat to do or find a solution online then...I had to reinstall the OS....!!!

    Thanks

  9. #9
    Join Date
    Sep 2010
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Smile Re: what is /usr/libexec/gconf-sanity-check-2 ?

    @charan2987


    well i had done changes to bash profile of oracle user account. and for other account which i had created during os installation i could able to login. so i had done changes.

    But in your case as i don't know what exactly you might have done configuration changes,

    i can not comment.

    have u tried logging from another account if u had??

    but it doesn't matter any more now. not after you have re-installed OS .

    ny ways u can still google on what could have been done? if u had a time !!!

    cheers"""

    thanks

  10. #10
    Join Date
    Jul 2010
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: what is /usr/libexec/gconf-sanity-check-2 ?

    Hi Every body

    Today I also started getting the same problem on my Fedora 13 machine i.e.

    There is a problem with the configuration server. (/usr/libexec/gconf-sanity-check-2 exited with status 256)

    As per my findings, I am getting this problem only because I have accidentally changed permissions on /tmp folder. The owner of /tmp folder become other than root and also no other user have read, write or execute rights on /tmp folder. I just changed its owner again to root, group also to root and gave every body read, write and execute rights.

    chown -rwx root:root /tmp
    chmod 777 /tmp

    Take Care

  11. #11
    Join Date
    Jun 2005
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: what is /usr/libexec/gconf-sanity-check-2 ?

    Absolutely Folks: The /tmp directory is the problem. When I set up Fedora 14 I made the /dev/[tmp] FS too small so when I decided not to mount it the /tmp dir had the wrong permissions.
    Then I checked in here and SHAZAM! (Captain Marvel appeared).
    Anyway my root dir is plenty large enough to hold the tmp dir.

    Cheers!

  12. #12
    Join Date
    Jan 2011
    Posts
    374
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: what is /usr/libexec/gconf-sanity-check-2 ?

    Thx to everyone that pointed out the permission problem with /tmp. All you need to do is this as root:

    Code:
    chmod a+rwx /tmp
    Quote Originally Posted by tanveerall
    Hi Every body

    Today I also started getting the same problem on my Fedora 13 machine i.e.

    There is a problem with the configuration server. (/usr/libexec/gconf-sanity-check-2 exited with status 256)

    As per my findings, I am getting this problem only because I have accidentally changed permissions on /tmp folder. The owner of /tmp folder become other than root and also no other user have read, write or execute rights on /tmp folder. I just changed its owner again to root, group also to root and gave every body read, write and execute rights.

    chown -rwx root:root /tmp
    chmod 777 /tmp

    Take Care
    This does not work. There is no -rwx options. Read the man pages.

Similar Threads

  1. C preprocessor /lib/cpp fails sanity check *help*
    By Brime in forum Installation, Upgrades and Live Media
    Replies: 7
    Last Post: 25th October 2010, 07:22 AM
  2. I'm losing my sanity with /lib/cpp" fails sanity check
    By cruiserparts in forum Using Fedora
    Replies: 4
    Last Post: 2nd June 2006, 01:50 PM
  3. CPP fails sanity check
    By mewilh0 in forum Servers & Networking
    Replies: 5
    Last Post: 13th December 2005, 04:47 PM
  4. /usr/libexec/gconf-sanity-check-2 error!
    By mac48bit in forum Using Fedora
    Replies: 0
    Last Post: 22nd May 2004, 01:56 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
[[template footer(Guest)]]