Fazer
2008-Oct-08 16:07 UTC
[Wine] "User's $HOME/.dmrc file is being ignored" after compilation
Each time I compile Wine and restart Ubuntu (8.04), there's an error just after I log in: "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 permissions. User's $HOME directory must be owned by user and not writable by other users." These commands fix this, but when I recompile Wine, the bug's back again. What is going on? Code: sudo chmod 755 /home sudo chmod 755 /home/user sudo chmod 644 /home/user/.dmrc sudo chown user.user /home/user sudo chown user.user /home/user/.dmrc
PleegWat
2008-Oct-08 17:12 UTC
[Wine] "User's $HOME/.dmrc file is being ignored" after compilation
Fazer wrote:> Each time I compile Wine and restart Ubuntu (8.04), there's an error just after I log in: > > "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 permissions. User's $HOME directory must be owned by user and not writable by other users." > > These commands fix this, but when I recompile Wine, the bug's back again. What is going on? > > > Code: > sudo chmod 755 /home > sudo chmod 755 /home/user > sudo chmod 644 /home/user/.dmrc > sudo chown user.user /home/user > sudo chown user.user /home/user/.dmrcActually what's wrong with the files? Which part of the requirement is being broken? Check (or paste) the output of: stat /home/user stat /home/user/.dmrc Also, in what directory are you compiling wine, and where are the sources coming from? PleegWat
PleegWat wrote:> Actually what's wrong with the files? Which part of the requirement is > being broken? > > Check (or paste) the output of: > > stat /home/user > stat /home/user/.dmrc > > Also, in what directory are you compiling wine, and where are the > sources coming from?I googled for the error and found that I should run those commands to fix it. arkadiusz at arkadiusz-hardy:~ -> stat /home/arkadiusz File: `/home/arkadiusz' Size: 4096 Blocks: 8 IO Block: 4096 katalog Device: 821h/2081d Inode: 14852098 Links: 85 Access: (0777/drwxrwxrwx) Uid: ( 1000/arkadiusz) Gid: ( 1000/arkadiusz) Access: 2008-10-02 19:46:21.000000000 +0200 Modify: 2008-10-08 20:16:13.000000000 +0200 Change: 2008-10-08 20:16:13.000000000 +0200 arkadiusz at arkadiusz-hardy:~ -> stat /home/arkadiusz/.dmrc File: `/home/arkadiusz/.dmrc' Size: 28 Blocks: 8 IO Block: 4096 zwykBy plik Device: 821h/2081d Inode: 14856175 Links: 1 Access: (0600/-rw-------) Uid: ( 1000/arkadiusz) Gid: ( 1000/arkadiusz) Access: 2008-10-07 15:44:15.000000000 +0200 Modify: 2008-10-07 15:44:15.000000000 +0200 Change: 2008-10-07 15:44:15.000000000 +0200 I compiled Wine in a directory "/home/arkadiusz/Programy/wine-git". The sources were downloaded from git://source.winehq.org/git/wine.git using git-gui.