zoukankan      html  css  js  c++  java
  • Ubuntu20.04 Desktop安装tigervncserver

    Ubuntu20.04 Desktop安装tigervnc-server

    一、准备

    由于使用的是desktop版,默认为gnome桌面

    二、安装TigerVNC服务器

    TigerVNC,是一个主动维护的高性能VNC服务器

    sudo apt install tigervnc-standalone-server
    

    三、修改配置文件

    如果home目录下没有.vnc目录,新建目录

    touch $HOME/.vnc/xstartup
    

    修改xstartupvim .vnc/xstartup, 修改为以下内容:

    #!/bin/sh
    
    unset SESSION_MANAGER
    unset DBUS_SESSION_BUS_ADDRESS
    /etc/X11/xinit/xinitrc
    # Assume either Gnome or KDE will be started by default when installed
    # We want to kill the session automatically in this case when user logs out. In case you modify
    # /etc/X11/xinit/Xclients or ~/.Xclients yourself to achieve a different result, then you should
    # be responsible to modify below code to avoid that your session will be automatically killed
    if [ -e /usr/bin/gnome-session -o -e /usr/bin/startkde ]; then
        vncserver -kill $DISPLAY
    fi
    

    修改xstartup权限

    chmod u+x xstartup
    

    四、创建vnc端口

    • 一定要加上 -localhost no, 否则只能本地连接,不能实现远程连接,那么vnc就毫无意义
    • 关闭防火墙,否则可能无法连接
    vncserver :1  -geometry 1920x1000  -depth 24 -localhost no
    
    博客内容仅供参考,部分参考他人优秀博文,仅供学习使用
  • 相关阅读:
    最短路计数
    轻拍牛头(类埃式筛)
    子序列(尺取模板题)
    状压dp(洛谷:互不侵犯)
    刷题-力扣-73. 矩阵置零
    刷题-力扣-150. 逆波兰表达式求值
    刷题-力扣-300. 最长递增子序列
    刷题-力扣-1576. 替换所有的问号
    刷题-力扣-54. 螺旋矩阵
    刷题-力扣-705. 设计哈希集合
  • 原文地址:https://www.cnblogs.com/linagcheng/p/15745041.html
Copyright © 2011-2022 走看看