You are not logged in.
Every time after starup computer creating ".serverauth." file in "/root" directory (I working with root) with different ectension. For example now then I turn on computer creat file ".serverauth.3985".
There it content:
myhost 0 MIT-MAGIC-COOKIE-1 f&x] x*ДJ myhost 1 MIT-MAGIC-COOKIE-1 5PܔWhat me do, that computer do not create this files?
Goodbye!
Offline
i think you don't use any login manager and you start DE with
startxcommand. I had the same problem and i solve it by using these link:
In a world without walls,who need windows?
Offline
I've also read that you can edit your /usr/bin/startx file, and change line 131 to this:
xserverauthfile=$XAUTHORITY...but I've not tried it.
oz
Offline
i think you don't use any login manager and you start DE with
startxcommand. I had the same problem and i solve it by using these link:
I create autologin program and add to ~/.bash_profile
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/vc/1 ]]; then
xinit
logout
fiThanks.
Goodbye!
Offline
I was experiencing same problem. Changed line as stated in post above
Bug report is at: http://bugs.archlinux.org/task/6941?histring=xinit
Offline
after peeking openbsd startx. adding this line in startx solve it
..............
xserverauthfile=$HOME/.serverauth.$$
trap "rm -f $xserverauthfile" ERR HUP INT QUIT ILL TRAP KILL BUS TERM # ->> add this line
add :$dummy . $mcookie
...........Offline