I wants to access GUI of Linux machine from another Linux machine.
I can access its terminal using “ssh username@IP_Address” command but i wants the access of its GUI.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I use SSH tunneling and VNC. You will need to set up a VNC server on your remote machine and start a vnc session.
Add the
-Lflag on your SSH connect.-L 5555:localhost:5901– this means bind local port 5555 to 5901 on the remote machine.Finally, use
vncviewer localhost:5555to connect to the remote machine through SSH.Doing it this way, all your traffic will be sent over SSH and be encrypted. This is important, because VNC is an unencrypted protocol.