SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Pastimes : Linux OS.: Technical questions

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
Recommended by:
FJB
From: Thomas A Watson9/3/2019 7:28:42 PM
1 Recommendation  Read Replies (1) of 477
 
Running x apps on remote system using an ssh tunnel.

SSH X11 Forwarding youtube.com this video explains it all.


on server. this is the computer where x app runs. and displays on the client.

make sure you have xauth

apt list

sudo vi /etc/ssh/ssh_config

verify or edit
ForwardX11 yes
ForwardX11Trusted yes

after save

sudo service ssh restart

ssh stop/waiting
ssh start/running, process 2883


sudo vi /etc/ssh/sshd_config

X11Forwarding yes
X11DisplayOffset 10

after save

sudo service ssh restart

on client starting ssh with X forwarding.

ssh -X right # slowest response

echo $DISPLAY

ssh -X -C -c blowfish-cbc,arcfour right # -C compression -c cyfers blowfish-cbc,arcfour this gives faster response.

ssh -Y right # trusted.


youtube.com how to enable X11 forwarding on linux,
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext