Linux Vnc安装教程
sudo passwd root
yum groupinstall "XWindow System"
yum groupinstall"Desktop"
提供虚机时 可能只提供Ssh 登入(22)、用户名及密码
一般在windows上用 putty.exe工具进行登入访问 安装VNC
1.确认VNC是否安装
检查VNC是否安装
rpm -qa | grep vnc
如果没有需要 VNC安装包(基本上可以如下)
gtk-vnc-0.3.10-3.el6.x86_64.rpm
libvncserver-0.9.7-4.el6.x86_64.rpm
tigervnc-server-1.0.90-0.10.20100115svn3945.el6.x86_64.rpm
不同的linux Os下可能需要不同的依赖包
安装命令 rpm- ivh *.rpm
安装完毕后
2.启动VNC服务
使用vncserver命令启动VNC服务,命令格式为“vncserver :桌面号”,其中“桌面号”用“数字”的方式表示,每个用户连个需要占用1个桌面
启动编号为1的桌面示例如下
[root@testdb ~]# vncserver :1
You will require a password to access yourdesktops.
Password:
Verify:
第一次需要输入密码
3.VNC服务使用的端口号与桌面号的关系
VNC服务使用的端口号与桌面号相关,VNC使用TCP端口从5900开始,对应关系如下
桌面号为“1” ---- 端口号为5901
桌面号为“2” ---- 端口号为5902
桌面号为“3” ---- 端口号为5903
……
基于Java的VNC客户程序Web服务TCP端口从5800开始,也是与桌面号相关,对应关系如下
桌面号为“1” ---- 端口号为5801
桌面号为“2” ---- 端口号为5802
桌面号为“3” ---- 端口号为5803
……
基于上面的介绍,如果Linux开启了防火墙功能,就需要手工开启相应的端口,以开启桌面号为“1”相应的端口为例,命令如下
修改防火墙配置文件:
vi /etc/sysconfig/iptables
-A RH-Firewall-1-INPUT -mstate –state NEW -m tcp -p tcp –dport 5901 -j ACCEPT
chmod 755 /root/.vnc/xstartup
[root@testdb ~]# vi/root/.vnc/xstartup
#!/bin/sh
# Uncomment the following two lines for normaldesktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec/etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb$HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title"$VNCDESKTOP Desktop" &
twm &
将这个xstartup文件的最后一行修改为“startkde&”,再重新启动vncserver服务后就可以登陆到KDE桌面环境
将这个xstartup文件的最后一行修改为“gnome-session &”,再重新启动vncserver服务后就可以登陆到GNOME桌面环境
可以直接删掉全部覆盖
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
#xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOPDesktop" &
gnome-session &
#set starting GNOME desktop
#startkde & #kde desktop
#twm & #Text interface
#/usr/bin/startxfce4
#exec /usr/bin/fluxbox
重新启动vncserver服务的方法:
[root@testdb ~]# vncserver -kill :1
[root@testdb ~]# vncserver :1
6.配置多个桌面
可以使用如下的方法启动多个桌面的VNC
vncserver :1
vncserver :2
vncserver :3
……
但是这种手工启动的方法在服务器重新启动之后将失效,因此,下面介绍如何让系统自动管理多个桌面的VNC,方法是将需要自动管理的信息添加到/etc/sysconfig/vncservers配置文件中,先以桌面1为root用户桌面2为oracle用户为例进行配置如下:
格式为:VNCSERVERS="桌面号:使用的用户名 桌面号:使用的用户名"
[root@testdb ~]# vi /etc/sysconfig/vncservers
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 1024x768"
7.修改VNC访问的密码
使用命令vncpasswd对不同用户的VNC的密码进行修改,一定要注意,如果配置了不同用户的VNC需要分别到各自用户中进行修改,例如在我的这个实验中,root用户和oracle用户需要分别修改,修改过程如下:
[root@testdb ~]# vncpasswd
Password:
Verify:
[root@testdb ~]#
8.启动和停止VNC服务
1)启动VNC服务命令
[root@testdb ~]# /etc/init.d/vncserver start
Starting VNC server: 1:root
New 'testdb:1 (root)' desktop is testdb:1
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/testdb:1.log
2:oracle
New 'testdb:2 (oracle)' desktop is testdb:2
Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/testdb:2.log
[ OK ]
2)停止VNC服务命令
[root@testdb ~]# /etc/init.d/vncserver stop
Shutting down VNC server: 1:root2:oracle [ OK ]
3)重新启动VNC服务命令
[root@testdb ~]# /etc/init.d/vncserver restart
Shutting down VNC server: 1:root 2:oracle [ OK ]
Starting VNC server: 1:root
New 'testdb:1 (root)' desktop is testdb:1
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/testdb:1.log
2:oracle
New 'testdb:2 (oracle)' desktop is testdb:2
Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/testdb:2.log
[ OK ]
4)设置VNC服务随系统启动自动加载
第一种方法:使用“ntsysv”命令启动图形化服务配置程序,在vncserver服务前加上星号,点击确定,配置完成。
第二种方法:使用“chkconfig”在命令行模式下进行操作,命令使用如下(预知chkconfig详细使用方法请自助式man一下)
[root@testdb ~]# chkconfig vncserver on
[root@testdb ~]# chkconfig --list vncserver
vncserver 0:off 1:off 2:on 3:on 4:on 5:on 6:off
9.小结
VNC的详细配置方法到此已经写完,希望能对大家有帮助。VNC对于远程调用图形化界面来说非常的轻巧和便捷,善用之!
遇到问题:
Error: WALinuxAgent conflicts with NetworkManager
You could try using --skip-broken to workaround the problem
You could try running: rpm -Va --nofiles--nodigest
解决办法:
http://social.msdn.microsoft.com/Forums/en-US/WAVirtualMachinesforLinux/thread/e836aa6a-65cb-47dd-81d5-363ffc013c75
Hi Wilshix,
I believe you can install GNOME with the following steps. Theproblem happens since Windows Azure Linux Agent is not compatible withNetworkManager included in GNOME packages.
I can install GNOME with these steps and please let me knowif you meet any issues or problems.
* Remove Windows Azure Linux Agent
[root@machinename ~]# yum removeWALinuxAgent-1.3-1.noarch
* Install X Window and GNOME
[root@machinename ~]# yum groupinstall"X Window System" "Desktop" "Fonts" "GeneralPurpose Desktop"
* Install GUI tool like Free NX to accesswith GUI environment
* Remove NetworkManager and install Windows Azure Linux Agent
[root@machinename ~]# yum removeNetworkManager-0.8.1-34.el6_3.x86_64
[root@machinename ~]# yum install WALinuxAgent-1.3-1.noarc
http://chinawl.blog.51cto.com/611661/818544
yum groupinstall "X Window System" //安装Xorg
yum groupinstall "Desktop" //安装GNOME
yum groupinstall "Chinese Support" //安装中文支持
yum install nautilus-open-terminal //安装终端
yum install firefox //安装火狐
修改/etc/inittab文件
id:5:initdefault:
reboot后就会自动进入x window
使vnc访问服务器时进入gnome:
vi /root/.vnc/xstartup
最后一行注释掉twm &,加上gnome-session&
#twm &
gnome-session&