设置远程 X Windows 环境

Micheal Chen Lv6

date: 2010-03-19 23:55:24

因为服务器主要用于虚拟化,不在其上安装X Windows系统,所以需要设置远程窗口环境,以便在终端客户机器上能够对GUI的X Windows程序进行操作。

选用Xming作为Windows环境下的X Server环境,安装于Vista操作系统中。
http://sourceforge.net/projects/xming/
注意:需要在启动Xming时选择”no access control”,否则会拒绝X Client程序的连接。

在CentOS上安装部分X Window应用程序以供测试

1
2
3
4
5
6
7
8
9
10
yum install xterm
install: xterm
install: libXaw
install: libXmu
install: libXpm

yum install xeyes
install: xorg-X11-apps
install: libfontenc
install: libxkbfile

CentOS主机地址 192.168.1.108,Windows主机(X Server)地址 192.168.1.80

Telnet进入主机启动应用程序:

1
2
3
4
5
6
7
telnet 192.168.1.108
export DISPLAY=192.168.1.80:0.0
xterm
xeyes
xclock
xlogo
xmessage

启动成功,估计因为字体问题,启动应用时仍然会出现错误消息:

1
2
Warning: Missing charsets in String to FontSet conversion
Warning: Cannot convert string "" to type XftFont
  • Title: 设置远程 X Windows 环境
  • Author: Micheal Chen
  • Created at : 2010-03-19 23:55:24
  • Updated at : 2025-03-22 21:00:48
  • Link: https://www.xhis.com/hexo/2010/03/19/notes/设置远程-X-Windows-环境/
  • License: This work is licensed under CC BY-NC-SA 4.0.
On this page
设置远程 X Windows 环境