崬城衞 发表于 2018-10-21 11:09:56

在centos6.8上安装使用VNC server

  1.Install Tiger VNC Server on our Centos
  # yum install tigervnc-server.x86_64
  Loaded plugins: fastestmirror, refresh-packagekit, security
  Loading mirror speeds from cached hostfile
  * base: mirror.nus.edu.sg
  * epel: ftp.kddilabs.jp
  * extras: mirrors.hostemo.com
  * updates: centos.ipserverone.com
  Setting up Install Process
  Resolving Dependencies
  –> Running transaction check
  —> Package tigervnc-server.x86_64 0:1.1.0-5.el6 will be installed
  –> Processing Dependency: xorg-x11-fonts-misc for package: tigervnc-server-1.1. 0-5.el6.x86_64
  –> Running transaction check
  —> Package xorg-x11-fonts-misc.noarch 0:7.2-9.1.el6 will be installed
  –> Finished Dependency ResolutionDependencies Resolved================================================================================

  Package Arch Version Repository>  ================================================================================
  Installing:
  tigervnc-server x86_64 1.1.0-5.el6 base 1.0 M
  Installing for dependencies:
  xorg-x11-fonts-misc noarch 7.2-9.1.el6 base 5.8 MTransaction Summary
  ================================================================================

  Install 2 Package(s)Total download>
  Installed>  Is this ok : y
  Downloading Packages:
  (1/2): tigervnc-server-1.1.0-5.el6.x86_64.rpm | 1.0 MB 00:05
  (2/2): xorg-x11-fonts-misc-7.2-9.1.el6.noarch.rpm | 5.8 MB 00:29
  —————————————————————————————————————————————————————————————————–
  Total 189 kB/s | 6.8 MB 00:37
  Running rpm_check_debug
  Running Transaction Test
  Transaction Test Succeeded
  Running Transaction
  Installing : xorg-x11-fonts-misc-7.2-9.1.el6.noarch 1/2
  Installing : tigervnc-server-1.1.0-5.el6.x86_64 2/2
  Verifying : xorg-x11-fonts-misc-7.2-9.1.el6.noarch 1/2
  Verifying : tigervnc-server-1.1.0-5.el6.x86_64 2/2Installed:
  tigervnc-server.x86_64 0:1.1.0-5.el6
  Dependency Installed:
  xorg-x11-fonts-misc.noarch 0:7.2-9.1.el6
  Complete!
  #
  2.Create username and password for VNC Server
  # useradd lb
  # su lb
  $ cd ~
  $ vncpasswd
  Password:
  Verify:
  $
  3. Configure VNC configuration for new user
  编辑文件/etc/sysconfig/vncservers
  注意:虽然root用户可以通过如下配置实现远程访问,但是不建议这样配置!
  # 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=”2:myusername”
  # VNCSERVERARGS=”-geometry 800×600 -nolisten tcp -localhost”
  VNCSERVERS="1:root 2:lb"      #如果不配root,删掉字符串1:root
  VNCSERVERARGS="-geometry 800x600"   #如果不配root,删掉本行
  VNCSERVERARGS="-geometry 800x600"
  #
  4. Start VNC Server and configure VNC Server run when server start up
  # chkconfig vncserver on
  # /etc/init.d/vncserver start
  Starting VNC server: 2:kevin.ngo xauth: creating new authority file /home/kevin.ngo/.XauthorityNew ‘localhost.localdomain:2 (kevin.ngo)’ desktop is localhost.localdomain:2Creating default startup script /home/kevin.ngo/.vnc/xstartup
  Starting applications specified in /home/kevin.ngo/.vnc/xstartup
  Log file is /home/kevin.ngo/.vnc/localhost.localdomain:2.log[ OK ]
  #
  5. Disable iptables on Centos 6.4
  这一步非常重要
  # /etc/init.d/iptables stop
  iptables: Flushing firewall rules: [ OK ]
  iptables: Setting chains to policy ACCEPT: filter [ OK ]
  iptables: Unloading modules: [ OK ]
  # chkconfig iptables off
  #
  7. Use VNC Viewer and connect to VNC Server (Centos 6.8) with user lb
  http://www.realvnc.com/download/viewer/


页: [1]
查看完整版本: 在centos6.8上安装使用VNC server