redhat安装vnc

VNC全称是Virtual Network Computing,属于远程控制类软件。其优点是支持跨操作系统的远程图形化控制。

yum安装

1、查看本机是否已经安装vncserver
# rpm -qa|grep tigervnc

2、安装vncserver
# yum -y install tigervnc-server

3、启动并设置vncserver密码
在第一次启动vncserver会提示输入密码,之后就需要使用vncpasswd命令
# vncserver
Password:
Verify:

4、修改/root/.vnc/xstartup文件
由于我们这里使用的centos系统,安装的是gnome桌面
# sed -i 's/twm &/gnome-session &/' /root/.vnc/xstartup

5、修改/etc/sysconfig/vncservers文件
在这里文件中可以设置希望运行VNC桌面的用户,以及使用vncview连接时显示的屏幕分辨率。VNCSERVERS中的1表示VNC以桌面1运行,如果希望添加其他的桌面,可以修改配置
# echo -e 'VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 1024x768"
' >> /etc/sysconfig/vncservers

安装时出现

安装vncserver出现如下错误: 
  vncext:      VNC extension running! 
  vncext:      Listening for VNC connections on all interface(s), port 5901 
  vncext:      created VNC server for screen 0 
  Could not init font path element /usr/share/X11/fonts/misc, removing from list! 
  Could not init font path element /usr/share/fonts/default/Type1, removing from list! 
  Could not init font path element built-ins, removing from list! 
  主要是缺少相关字体,通过yum安装即可 (yum list *xorg-x11*)
yum install libXfont   
yum install xorg-x11-xfs   
yum install xorg-x11-xfs-utils   
yum install xorg-x11-xinit   
yum install xorg-x11-xdm   

       yum install xorg-x11-fonts*

       安装完后从新启动vnc服务即可。

6、重启vncserver服务

#service vncserver restart



引用:

http://www.myhack58.com/Article/sort099/sort0102/2015/59172.htm

http://www.tuicool.com/articles/nQBF

你可能感兴趣的:(linux,操作系统)