zoukankan      html  css  js  c++  java
  • ubuntu18.04的网络配置,Desktop Sharing 设置无法打开的问题

    ubuntu18.04直接更改/etc/resolv.conf修改nameserver重启被重置解决方法:

    vi /etc/systemd/resolved.conf,加上DNS,设置多个DNS服务器的地址,这样就完成了 DNS的修改,保存退出,然后重启机器

    https://blog.csdn.net/lengye7/article/details/88877867?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param

    ubuntu18.04的网络配置:

    https://blog.csdn.net/lengye7/article/details/88889807

    解决升级到 Ubuntu 18.04 LTS 后 Desktop Sharing 设置无法打开的问题:

    https://www.somedoc.net/?p=3940

    1) 编辑 org.gnome.Vino 方案来恢复缺失的 “enabled” 参数(复制自 16.04):
    sudo nano /usr/share/glib-2.0/schemas/org.gnome.Vino.gschema.xml

    加入以下 key 的内容:

        <key name='enabled' type='b'>
          <summary>Enable remote access to the desktop</summary>
          <description>
            If true, allows remote access to the desktop via the RFB
            protocol. Users on remote machines may then connect to the
            desktop using a VNC viewer.
          </description>
          <default>false</default>
        </key>
    

      

    2) 编译 Gnome 方案:
    sudo glib-compile-schemas /usr/share/glib-2.0/schemas

    3) 此时系统设置里的 Desktop Sharing 应该就可以用了,不过,还不足以使 vino 能运行起来!你需要在会话开始的时候把程序 Vino-server 用此命令行加入进去:
    /usr/lib/vino/vino-server

    现在就可以 VNC 你的 18.04-Unity 了!

  • 相关阅读:
    vue中使用axios对同一个接口连续请求导致返回数据混乱的问题
    GitLab 项目
    pythonWeb开发
    $(function(){})里面不能定义函数
    elementUI el-cascader回显问题
    elementUI 弹框嵌套蒙层问题
    JS获取浏览器信息及屏幕分辨率
    mockjs导致element-ui upload组件的on-progress和axios的responseType失效
    vue中记录页面的滚动距离
    vue组件的inheritAttrs属性
  • 原文地址:https://www.cnblogs.com/moonbaby/p/13686723.html
Copyright © 2011-2022 走看看