我的服务器默认是最小安装,所以没有vncserver。使用yum安装一个。
# yum install tigervnc-server
之后启动起来:
# vncserver :1
尝试在Windows下使用VNCViewer连接,发现跟公司的那台服务器一样,是黑屏的界面。
查看了一下日志 ~/.vnc/localhost.localdomain:0.log
发现如下报错:
/home/cake/.vnc/xstartup: line 27: xsetroot: command not found
/home/cake/.vnc/xstartup: line 28: xterm: command not found
/home/cake/.vnc/xstartup: line 29: twm: command not found
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server “:0″^M
after 141 requests (140 known processed) with 0 events remaining.^M
看起来是因为xsetroot/xterm/twm没有安装导致的。
于是使用yum安装:
# yum install xsetroot
# yum install xterm
# yum install twm
之后kill掉vncserver进程,然后重新启动。
# vncserver -kill :1
# vncserver :1
之后再次用VNCViewer连接,发现已经可以正常显示了~