安装xquartz

https://www.xquartz.org/

在linux服务器端打开X11转发

1
sudo vim /etc/ssh/sshd_config

配置转发参数为yes

1
2
X11Forwarding yes
X11DisplayOffset 10

然后重启ssh服务

1
service ssh restart 

在Mac本地设置

1
sudo vim /etc/ssh/ssh_config

配置转发参数为yes

1
2
3
4
ForwardAgent yes
ForwardX11 yes
ForwardX11Trusted yes
XAuthLocation /opt/X11/bin/xauth

使用

ssh -X username@host ssh -X nickname