[opensuse] setenv DISPLAY $HOST:0.0
Under Leap 15.1 any attempt to open the display with a $DISPLAY value different from :0.0 fails and generates the answer: <program>: can't open display <HOST>:0.0, aborting Under 13.2, an efficient work around was removing "-nolisten tcp" from the files /etc/X11/xinit/xserverrc and /etc/X11/xdm/Xservers as follows: diff /etc/X11/xinit/xserverrc /etc/X11/xinit/xserverrc.bak < args="$args" ---
args="$args -nolisten tcp"
------------------------------------------------------------- diff /etc/X11/xdm/Xservers /etc/X11/xdm/Xservers.bak < :0 local /usr/bin/X -br vt7 -keeptty ---
:0 local /usr/bin/X -nolisten tcp -br vt7 -keeptty
But these modifications do not help any more, because the failure not only happens at a request from outside (TCP) but also at a local request. What can I do to provide "setenv DISPLAY $HOST:0.0" making sense under Leap 15.1? Thanks in advance, Wolfgang -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 9/4/19 1:01 PM, Wolfgang Mueller wrote:
Under Leap 15.1 any attempt to open the display with a $DISPLAY value different from :0.0 fails and generates the answer:
<program>: can't open display <HOST>:0.0, aborting
Probably: man xauth -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On Wed, 4 Sep 2019 at 15:55:10 +0200, Bernhard Voelker wrote:
On 9/4/19 1:01 PM, Wolfgang Mueller wrote:
Under Leap 15.1 any attempt to open the display with a $DISPLAY value different from :0.0 fails and generates the answer:
<program>: can't open display <HOST>:0.0, aborting
Probably: man xauth
I cannot find any appropriate xauth command. Which one do you mean? Or which one do you use? Wolfgang -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 9/5/19 9:37 AM, Wolfgang Mueller wrote:
On Wed, 4 Sep 2019 at 15:55:10 +0200, Bernhard Voelker wrote:
On 9/4/19 1:01 PM, Wolfgang Mueller wrote:
Under Leap 15.1 any attempt to open the display with a $DISPLAY value different from :0.0 fails and generates the answer:
<program>: can't open display <HOST>:0.0, aborting
Probably: man xauth
I cannot find any appropriate xauth command. Which one do you mean? Or which one do you use?
You can also try `xhost` - Adam -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On Thu, 5 Sep 2019 10:19:24 +0200, Adam Majer wrote:
On 9/5/19 9:37 AM, Wolfgang Mueller wrote:
On Wed, 4 Sep 2019 at 15:55:10 +0200, Bernhard Voelker wrote:
On 9/4/19 1:01 PM, Wolfgang Mueller wrote:
Under Leap 15.1 any attempt to open the display with a $DISPLAY value different from :0.0 fails and generates the answer:
<program>: can't open display <HOST>:0.0, aborting
Probably: man xauth
I cannot find any appropriate xauth command. Which one do you mean? Or which one do you use?
You can also try `xhost`
"xhost +" does not help. So, what else can I try? Thank you in advance, Wolfgang
On 9/5/19 9:37 AM, Wolfgang Mueller wrote:
I cannot find any appropriate xauth command. Which one do you mean? Or which one do you use?
---->8---- $ cnf xauth Program 'xauth' is present in package 'xauth', which is installed on your system. Absolute path to 'xauth' is '/usr/bin/xauth'. Please check your $PATH variable to see whether it contains the mentioned path. ----8<---- Have a nice day, Berny -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 9/5/19 9:37 AM, Wolfgang Mueller wrote:
I cannot find any appropriate xauth command. Which one do you mean? Or which one do you use?
Program 'xauth' is present in package 'xauth', which is installed on your system. Absolute path to 'xauth' is '/usr/bin/xauth'. Please check your $PATH variable to see whether it contains the mentioned path. Of course I know that all, but I do not find any xauth command that is appropriate to my problem. Please give me a hint which command you mean or use. Thanks again, Wolfgang -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 9/5/19 2:03 PM, Wolfgang Mueller wrote:
Of course I know that all, but I do not find any xauth command that is appropriate to my problem. Please give me a hint which command you mean or use.
According to the man page, this should suffice: EXAMPLE The most common use for xauth is to extract the entry for the current display, copy it to another machine, and merge it into the user's authority file on the remote machine: % xauth extract - $DISPLAY | ssh otherhost xauth merge - Have a nice day, Berny -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
participants (3)
-
Adam Majer
-
Bernhard Voelker
-
Wolfgang Mueller