When your linux machine gives .dmrc problem
"“User’s $HOME/.dmrc” file is being ignored. This prevents the default session and language from being saved. File should be owned by user and have 644 permission. User $HOME directory must be owned by user and not writable by other users
Do this....
sudo chmod 644 ~/.dmrc
sudo chown your_username ~/.dmrc
sudo chmod 755 /home/your_username
sudo chown your_username /home/your_username
"“User’s $HOME/.dmrc” file is being ignored. This prevents the default session and language from being saved. File should be owned by user and have 644 permission. User $HOME directory must be owned by user and not writable by other users
Do this....
sudo chmod 644 ~/.dmrc
sudo chown your_username ~/.dmrc
sudo chmod 755 /home/your_username
sudo chown your_username /home/your_username
Comments
Thanks