码迷,mamicode.com
首页 > 系统相关 > 详细

Linux之部署vnc应用

时间:2014-12-05 19:37:37      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:vnc   linux   root   

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应用

标签:vnc   linux   root   

原文地址:http://hzyan.blog.51cto.com/9617993/1586652

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!