Results 1 to 6 of 6
Hi everyone,
I use KDE desktop (3.5.10) on my Gentoo computer. I'd like to run remote applications on my computer.
For clarity, lets say the box that I want to ...
- 06-26-2009 #1
[SOLVED] How to export the display
Hi everyone,
I use KDE desktop (3.5.10) on my Gentoo computer. I'd like to run remote applications on my computer.
For clarity, lets say the box that I want to export X from is named A(CentOS) and the one want it to go to is named B(Gentoo).
B:
mike@gentoobear ~ $ xhost +192.168.1.2
192.168.1.2 being added to access control list
mike@gentoobear ~ $ ssh 192.168.1.2
A:
[mike@bearcentos ~]$ DISPLAY=192.168.1.7:0.0; export DISPLAY
[mike@bearcentos ~]$ echo $DISPLAY
192.168.1.7:0.0
[mike@bearcentos ~]$ xterm
xterm Xt error: Can't open display: 192.168.1.7:0.0
why this is happening...
What elese do I need to do?
- 06-27-2009 #2
Try
EDIT: maybe I'm confused to which IP you want, you might want 192.168.1.7:0.0 instead. Try different variations if it doesn't work right.Code:export DISPLAY 192.168.1.2:0.0
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this. and the Forum FAQS.
- 06-27-2009 #3
- 06-27-2009 #4Linux Guru
- Join Date
- Nov 2004
- Posts
- 6,110
I generally tunnel over ssh. I connect to the remote box using ssh -X and then any applications I launch from that ssh session - including an entire desktop session - will open on my local machine. Is that any help to you?
- 06-28-2009 #5
I am trying to do it over xdmcp. Not over X11 forwading.
- 06-28-2009 #6
I've tried to do it over X11 forwarding.
I've checked the following line in my /etc/ssh/sshd_config file:
X11Forwarding yes
B:
mike@gentoobear ~ $ xhost +
access control disabled, clients can connect from any host
mike@gentoobear ~ $ ssh -X 192.168.1.2
mike@192.168.1.2's password:
Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
Last login: Sun Jun 28 18:39:29 2009 from beargentoo
A:
[mike@bearcentos ~]$ xterm &
[1] 5077
[mike@bearcentos ~]$ firefox &
[2] 5111
[1] Done xterm
[mike@bearcentos ~]$
It works for me but can anybody explain me what dies it mean:
Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
???




