共计 3017 个字符,预计需要花费 8 分钟才能阅读完成。
Linux(RHEL6\CentOS6\OLE6) 下 VNC-SERVER 安装与配置
1. 安装并启动 tigervnc-server
# rpm -ivh tigervnc-1.1.0-16.el6.x86_64.rpm
warning: tigervnc-1.1.0-16.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing… ########################################### [100%]
1:tigervnc ########################################### [100%]
# rpm -ivh tigervnc-server-1.1.0-5.el6.x86_64.rpm
warning: tigervnc-server-1.1.0-5.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
error: Failed dependencies:
xorg-x11-fonts-misc is needed by tigervnc-server-1.1.0-5.el6.x86_64
# rpm -ivh tigervnc-server-1.1.0-5.el6.x86_64.rpm
warning: tigervnc-server-1.1.0-5.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Preparing… ########################################### [100%]
1:tigervnc-server ########################################### [100%]
# vncserver
You will require a password to access your desktops.
Password:
Verify:
New ‘node1:1 (root)’ desktop is node1:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/node1:1.log
2. 修改配置文件
# vim /root/.vnc/xstartup
#!/bin/sh
[-r /etc/sysconfig/i18n] && . /etc/sysconfig/i18n
export LANG
export SYSFONT
vncconfig -iconic &
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
OS=`uname -s`
if [$OS = ‘Linux’]; then
case “$WINDOWMANAGER” in
*gnome*)
if [-e /etc/SUSE-release]; then
PATH=$PATH:/opt/gnome/bin
export PATH
fi
;;
esac
fi
if [-x /etc/X11/xinit/xinitrc]; then
exec /etc/X11/xinit/xinitrc
fi
if [-f /etc/X11/xinit/xinitrc]; then
exec sh /etc/X11/xinit/xinitrc
fi
[-r $HOME/.Xresources] && xrdb $HOME/.Xresources
xsetroot -solid grey
xterm -geometry 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
#twm &
gnome-session &
# vim /etc/sysconfig/vncservers
# The VNCSERVERS variable is a list of display:user pairs.
#
# Uncomment the lines below to start a VNC server on display :2
# as my ‘myusername’ (adjust this to your own). You will also
# need to set a VNC password; run ‘man vncpasswd’ to see how
# to do that.
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted! For a secure way of using VNC, see this URL:
# http://kbase.RedHat.com/faq/docs/DOC-7028
# Use “-nolisten tcp” to prevent X connections to your VNC server via TCP.
# Use “-localhost” to prevent remote VNC clients connecting except when
# doing so through a secure tunnel. See the “-via” option in the
# `man vncviewer’ manual page.
VNCSERVERS=”1:root”
# VNCSERVERARGS[2]=”-geometry 800×600 -nolisten tcp -localhost”
重启 vncserver 服务
# service vncserver restart
VNC 的安装配置 http://www.linuxidc.com/Linux/2013-05/84941.htm
CentOS 6.3 安装和配置 VNC http://www.linuxidc.com/Linux/2013-05/84668.htm
Linux 下强制不检测依赖安装 VNC http://www.linuxidc.com/Linux/2013-05/84075.htm
CentOS6 VNC 服务安装配置 http://www.linuxidc.com/Linux/2013-04/82510.htm
CentOS 下 VNC 配置和安装 http://www.linuxidc.com/Linux/2013-05/83975.htm
VNC 远程控制安装和设置 http://www.linuxidc.com/Linux/2013-01/77769.htm
Windows 通过 VNC 访问 Ubuntu http://www.linuxidc.com/Linux/2012-10/73043.htm
Windows 远程桌面访问 Ubuntu 12.04 之安装 VNC http://www.linuxidc.com/Linux/2012-07/64801.htm
更多 RedHat 相关信息见 RedHat 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=10
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-12/125862.htm