• 【原创】VNC-view配置


    环境:

    1. Redhat5.6;

    主要步骤:
    1. XManager配置;
    2. VNC配置;


    XManager配置

    1.“系统”à“管理”à“登陆屏幕”,弹出登录窗口首选项窗口。

    2.【远程】样式:与本地相同;



    【安全】:选中“允许本地系统管理员登陆”、“允许远程管理员登陆”;



    VNC配置

    1. 输入指令:# vncserver,设置密码为123456,启动vnc服务;

    2. 输入指令:# vim /root/.vnc/xstartup去掉unset SESSION_MANAGER exec /etc/X11/xinit/xinitrc前的#;在twm &前键入#将其注释,并在最下面加入一行“gnome-session &,使用gnome会话,最终文件如下:



    1. #!/bin/sh
    2.  
    3. # Uncomment the following two lines for normal desktop:
    4.  unset SESSION_MANAGER
    5.  exec /etc/X11/xinit/xinitrc
    6.  
    7. [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
    8. [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
    9. xsetroot -solid grey
    10. vncconfig -iconic &
    11. xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
    12. #twm &
    13. gnome-session &

    3.  修改/etc/sysconfig/vncservers文件,最后一行中增加VNCSERVERS="1:root"


    4.  接下来需要开启VNC服务,命令如下:
    1. # vncserver :1               开启
    2. # vncserver -kill :1       关闭


    5. 开启vnc服务之后,使用VNC Viewer进行登录,如下图所示:
    6. 登录成功之后,会进入到系统主界面,如下图所示:
     
    注:若要修改密码,使用命令:
    #vncpasswd





  • 相关阅读:
    使用cookie来做身份认证
    讲一下Asp.net core MVC2.1 里面的 ApiControllerAttribute
    不要使用Resource Owner Password Credentials
    nginx部署dotnet core站点
    这可能是最low的发布dotnet core站点到centos7教程
    记一个常见的ms sql server中取第N条记录的方法
    MVC基本开发介绍 (1)列表展示
    WCF 入门(29)
    WCF 入门(25,26,27,28)
    使用 Visual Studio Code 搭建 C/C++ 开发和调试环境
  • 原文地址:https://www.cnblogs.com/ssslinppp/p/5887713.html
Copyright © 2020-2023  润新知