Find the answer to your Linux question:
Results 1 to 3 of 3
I made a new directory with mkdir in the home file. I filled it with stuff I saved. I did a adduser to add it in and chown -R for ...
  1. #1
    Just Joined!
    Join Date
    Nov 2007
    Location
    California
    Posts
    5

    Adding a new user gnome problems.

    I made a new directory with mkdir in the home file. I filled it with stuff I saved. I did a adduser to add it in and chown -R for all the files. Upon boot the new name is listed and the log in works but after that: nothing! Just the background image. How do I get gnome working here?

  2. #2
    Just Joined!
    Join Date
    May 2006
    Location
    Silver Spring, MD
    Posts
    32
    You didn't get an answer because you didn't provide enough information. You need to tell us the dist/release/gnome ver that you're using, otherwise, we cannot help you.

  3. #3
    Linux Guru
    Join Date
    May 2011
    Posts
    1,813
    Yes, answer the questions asked by kabars_edge, but also...

    Did you do the chown command on all of /home/<USER>, e.g.:
    Code:
    chown -R <USER>:<GROUP> /home/<USER>
    or did you do it something like this:
    Code:
    chown -R <USER>:<GROUP> /home/<USER>/*
    If the latter, and some of the files you copied over were hidden (e.g. ~/.gnome), they got missed by your chown command. Try running the former command to fix it.

    Also check these files for errors when you try to log in:
    Code:
    /var/log/messages
    /var/log/secure
    /var/log/Xorg.0.log
    ~/.xsession-errors

Posting Permissions

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