一般客户端通过ssh获得可视化的窗口,可以在ssh命令后面加上选项-X或-Y,但是并不是所有的主机都支持可视化,需要在主机上修改/etc/ssh/sshd_config文件:
X11Forwarding yes若不想影响到所有的用户,也可以对某个用户设置,修改$HOME/.ssh/config文件
但在CentOS6.2系统中,会提示:Host remotehost ForwardX11 yes
说明没有X的认证库,需要安装:debug1: Requesting X11 forwarding with authentication spoofing. debug1: Remote: No xauth program; cannot forward with spoofing.
yum install xorg-x11-xauth即可。