I explained how to launch an X11 application from RaspberryPi and display it on MS-Windows with X11-Forwarding. It was easier to do the same between X-Windows.
- xhost +ip-address : will allow X11 server to accept incoming data from the ip-address.
- xhost : will list all the clients registered.
- ssh -X ip-address command : will launch the "command" from the "ip-address" with X11-Forwarding.
If you didn't setup passwordless-ssh-login, you may need to give ID and password as well.
One downside of this approach is that when I try to upload an image, the web-browser will not be able see the image files on my local machine. I needed to transfer the image file to the web-server running RaspberryPi via FTP.
I figured that "xhost" needs to be installed with a command:
ReplyDeletesudo apt-get install x11-xserver-utils