Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently the warning below is shown, logging in over SSH. ``` > ssh deinemuddah Warning: No xauth data; using fake authentication data for X11 forwarding. ``` As a result, forwarding X programs does not work anymore. ``` > xclock Error: Can't open display: ``` The problem is, that the xauth binary is hard-coded into the SSHD binary during build time, and set to `/usr/X11R6/bin/xauth`. ``` > strings /usr/sbin/sshd | grep X11R /usr/X11R6/bin/xauth ``` So manually set it to `/usr/bin/xauth`, as this is where it’s stored in Mariux. Debian does the same [1]. [1] https://anonscm.debian.org/cgit/pkg-ssh/openssh.git/tree/debian/rules#99
- Loading branch information