Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Aug 2007 13:08:00 -0700
From:      "Steve O'Connor" <steveo@uschartco.com>
To:        "'matt donovan'" <kitche@kitchetech.com>, <freebsd-questions@freebsd.org>
Subject:   RE: I was having an xauth error about the hexkey not found this is myfix for it
Message-ID:  <8C6DAAE908004F3F8D1F536FAA9CD369@gp.uschartco.com>
In-Reply-To: <28283d910708141241u10041d59ga09f66fc731ffe96@mail.gmail.com>
References:  <28283d910708141241u10041d59ga09f66fc731ffe96@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
How does this affect Windows VISta and OSX connections?

-----Original Message-----
From: owner-freebsd-questions@freebsd.org
[mailto:owner-freebsd-questions@freebsd.org] On Behalf Of matt donovan
Sent: Tuesday, August 14, 2007 12:42 PM
To: freebsd-questions@freebsd.org
Subject: I was having an xauth error about the hexkey not found this is
myfix for it

I just had to redo this part

# set up default Xauth info for this machine
case `uname` in
Linux*)
 if [ -z "`hostname --version 2>&1 | grep GNU`" ]; then
  hostname=`hostname -f`
 else
  hostname=`hostname`
 fi
 ;;
*)
 hostname=`hostname`
 ;;
esac

authdisplay=${display:-:0}
mcookie=`dd if=/dev/random bs=16 count=1 2>/dev/null | hexdump -e
\\"%08x\\"`
if x"$mcookie" = x; then
                echo "Couldn't create cookie"
                exit 1
fi

To this

# set up default Xauth info for this machine

 authdisplay=${display:-:0}
 mcookie=`dd if=/dev/urandom bs=16 count=1 2>/dev/null | hexdump -e
\\"%08x\\"`
 for displayname in $authdisplay `hostname`$authdisplay; do
     if ! xauth list "$displayname" | grep "$displayname " >/dev/null
2>&1; then
       xauth add $displayname . $mcookie
       removelist="$displayname $removelist"
     fi
 done

xinit $client $clientargs -- $server $display $serverargs

and it seems to work for me doesn't complain about the magic cookie not
being found anymore
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?8C6DAAE908004F3F8D1F536FAA9CD369>