Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: No write access to /home/user/.ICEauthority

  1. #1
    Join Date
    Sep 2006
    Location
    India
    Beans
    90
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    No write access to /home/user/.ICEauthority

    I am using Kubuntu 9.04.

    While I am going to log into my machine I am getting an error after giving my log in name and password,


    The following installation problem was detected while trying to start KDE:

    No write access to '/home/user/.ICEauthority'
    KDE unable to start


    I logged in to console and used the following command,

    $ ls -al /home/user/.ICEauthority
    -rw------- 1 root root 0 2009-08-28 12:18 /home/user/.ICEauthority

    What is the problem? How do I log into my desktop? Please help. I am a newbie.
    regards
    Linux Lover

    ========

  2. #2
    Join Date
    Aug 2007
    Location
    US
    Beans
    929
    Distro
    Ubuntu Development Release

    Re: No write access to /home/user/.ICEauthority

    The problem is that it is owned by root instead of the user of the home directory where it resides. You can fix it this way:
    Code:
    sudo chown $USER.$USER /home/user/.ICEauthority
    For example, mine is:
    Code:
    -rw-------  1 phil phil       2736 2009-08-28 23:22 .ICEauthority
    Please mark completed threads as [SOLVED], which lets us find solutions faster!

  3. #3
    Join Date
    Aug 2009
    Beans
    43

    Re: No write access to /home/user/.ICEauthority

    See, if you can bring up the system using the Live CD. You may have some supper user administrative tools to manipulate user account. You probably will be able to reset the user password from the administrative tool bar. But, one caution - do not try to edit or try to change anything without logging on to the system as root(Super User). If you do, it will make the system inoperable. You may have to mount your drive too. I use Unix. Not so familiar with Linux. As a matter of fact, I started using Linux not long ago.

    Also, make sure to check the user read/write privileges.

    rwx rwx rwx user ---------------------------------

  4. #4
    Join Date
    Sep 2006
    Location
    India
    Beans
    90
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    Re: No write access to /home/user/.ICEauthority

    Quote Originally Posted by ptn107 View Post
    The problem is that it is owned by root instead of the user of the home directory where it resides. You can fix it this way:
    Code:
    sudo chown $USER.$USER /home/user/.ICEauthority
    For example, mine is:
    Code:
    -rw-------  1 phil phil       2736 2009-08-28 23:22 .ICEauthority
    Thank you for your response. I tried and used the following command,

    Code:
    sudo chown $user.$user /home/user/.ICEauthority
    after that I restarted the machine. But again I am facing the same problem. Hope I am missing something. Please help me.
    regards
    Linux Lover

    ========

  5. #5
    Join Date
    Sep 2006
    Location
    India
    Beans
    90
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    Re: No write access to /home/user/.ICEauthority

    I used ls -al command again, and for your information, it failed to transfer ownership of .ICEauthority from root to user. I don't know why that happened. I can only confirm you that I did not miss sudo in this case.
    regards
    Linux Lover

    ========

  6. #6
    Join Date
    Mar 2008
    Location
    Portland, OR
    Beans
    45
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: No write access to /home/user/.ICEauthority

    Quote Originally Posted by Linux Lover View Post
    Thank you for your response. I tried and used the following command,

    Code:
    sudo chown $user.$user /home/user/.ICEauthority
    after that I restarted the machine. But again I am facing the same problem. Hope I am missing something. Please help me.
    I'm probably wrong on this, but shouldn't it be:

    Code:
    sudo chown $user:$user /home/user/.ICEauthority
    Where the "user" (in /home/user/...) is your username and there's a colon between the two "$user".

    So, for example, mine would be:

    Code:
    sudo chown $user:$user /home/soley/.ICEauthority
    I think that's right. I hope.
    Last edited by Soley; August 29th, 2009 at 07:59 AM. Reason: wrong code

  7. #7
    Join Date
    Mar 2008
    Location
    Portland, OR
    Beans
    45
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: No write access to /home/user/.ICEauthority

    Also, if you can't login to your main account & have to use a livecd, I believe you can also set the name manually.

    Code:
    sudo chown soley:soley /home/soley/.ICEauthority
    I've used that before & it's worked fine.

  8. #8
    Join Date
    Sep 2006
    Location
    India
    Beans
    90
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    Smile Re: No write access to /home/user/.ICEauthority

    Hello Soley,


    Great feedback............ it worked

    There is no requirement for the $ symbol. So, at last this code worked for me,

    Code:
    sudo chown user:user /home/user/.ICEauthority
    Thank you friend.
    regards
    Linux Lover

    ========

  9. #9
    Join Date
    Sep 2006
    Location
    India
    Beans
    90
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    [SOLVED] No write access to /home/user/.ICEauthority

    Thanks all
    regards
    Linux Lover

    ========

  10. #10
    Join Date
    Mar 2008
    Location
    Portland, OR
    Beans
    45
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: No write access to /home/user/.ICEauthority

    Quote Originally Posted by Linux Lover View Post
    Hello Soley,


    Great feedback............ it worked

    There is no requirement for the $ symbol. So, at last this code worked for me,

    Code:
    sudo chown user:user /home/user/.ICEauthority
    Thank you friend.
    I wasn't entirely sure that first one would work, but I was pretty sure the second one would.

    Glad to hear you got it working!

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •