美文网首页
为VPS加持桌面环境并实现远程桌面连接

为VPS加持桌面环境并实现远程桌面连接

作者: semi | 来源:发表于2016-11-16 23:05 被阅读0次

    玩VPS的伙伴都知道VPS一般都是最小化安装,安装完成之后是没有桌面系统的,当然,作为服务器是没有必要使用桌面环境的,如果喜欢瞎折腾就不一样了。ok,切入主题。

    要使用到的软件叫vnc viewer,它有服务器端:vnc viewer server,和客户端:vnc viewer,需要先安装好vnc viewer客户端。本文仅涉及vnc viewer server服务器端的安装和配置。

    一、安装桌面环境

    [root@MyCloudServer ~]# yum -y groupinstall "X Window System"
    [root@MyCloudServer ~]# yum -y groupinstall "Desktop"
    [root@MyCloudServer ~]# yum -y groupinstall "General Purpose Desktop"

    二、安装 tigervnc

    [root@MyCloudServer ~]# yum install tigervnc
    [root@MyCloudServer ~]# yum install tigervnc-server

    三、配置登陆用户

    [root@MyCloudServer ~]# vi /etc/sysconfig/vncservers

    配置内容如下:


    VNCSERVERS="1:root"
    VNCSERVERARGS[1]="-geometry 800x600 -nolisten tcp -%"


    四、启动 vncserver 服务

    [root@MyCloudServer ~]# vncserver

    初次启动会要求设置密码,设置好即可。然后使用 netstat -ntlp 查看 vncserver 监听的端口,
    在使用 vnc viewer 连接服务器的时候要加上额外的信息,如果端口是5901,则服务器地址为 ip:1 ,如果端口是5902则服务器地址为 ip:2 ,以此类推。

    五、参考

    安装桌面环境 : https://www.server-world.info/en/note?os=CentOS_6&p=x
    安装配置 vncserver : http://blog.sina.com.cn/s/blog_6cf180d10102v07j.html

    相关文章

      网友评论

          本文标题:为VPS加持桌面环境并实现远程桌面连接

          本文链接:https://www.haomeiwen.com/subject/fjzrpttx.html