首页 > 代码库 > Linux之部署vnc应用

Linux之部署vnc应用

Linux之部署vnc应用

  1.1.1       安装软件包

    [root@localhost ~]# rpm -q vnc-server

    [root@localhost ~]# yum install vnc-server vnc

  1.1.2       设置用户密码

    [root@rhel ~]# vncpasswd

    Password:

    Verify:

    说明:设置密码完毕后会在root目录下建立一个.vnc的隐藏目录

1.1.3       编辑服务配置文件

    [root@localhost ~]# vi /etc/sysconfig/vncservers
    VNCSERVERS="2:root" //
用户名

    VNCSERVERARGS[2]="-geometry 800x600" 屏幕分辨率

1.1.4       创建xstarup文件

    [root@localhost ~]# service vncserver start

    [root@localhost ~]# service vncserver stop

    [root@localhost ~]# ls .vnc/

    localhost:2.log  localhost:2.pid  passwd  xstartup

1.1.5       编辑xstarup

    [root@localhost ~]# vi .vnc/xstartup

    #!/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 "$VNCDESKTOP Desktop" &

    twm &

1.1.6       启动测试VNC

    [root@localhost ~]# service vncserver start

本文出自 “老韩技术笔记” 博客,请务必保留此出处http://hzyan.blog.51cto.com/9617993/1586652

Linux之部署vnc应用