
Originally Posted by
didiercool
sudo chmod 644 /home/monkey/.dmrc
sudo chown monkey /home/monkey/.dmrc
sudo chmod -R 700 /home/monkey
sudo chown -R monkey /home/monkey
Ouch! the sudo chown/chmod run on the home directory was a bad idea.
In any case, the second command should be:
Code:
sudo chown monkey:monkey /home/monkey/.dmrc
I don't know (but I suspect) that you may have broken something else by recursively chmod/chown'ing the files in your home directory. Try the above command and check
Code:
ls -l ~/.dmrc
-rw-r--r-- 1 user user 28 2008-09-26 20:28 /home/user/.dmrc
If this is what you get, try restarting X and see if everything works fine.
And yes, just deleting the file works as well (it will be automatically recreated when you next logon, or just create a blank file)
Bookmarks