增加 Vino Ubuntu 18.04 内置桌面共享的使用.

Signed-off-by: lion.chan <cy187lion@sina.com>
This commit is contained in:
lion.chan 2023-06-06 12:18:06 +08:00
parent 2bb9cde877
commit 4cedbf774e
2 changed files with 57 additions and 29 deletions

View File

@ -1,33 +1,35 @@
# 资源网站
---
modified: 2023-06-02T00:01:38.675Z
title: 资源网站
---
- [资源网站](#资源网站)
- [1. 工具网站](#1-工具网站)
- [2. 镜像网站](#2-镜像网站)
- [3. 操作系统学习](#3-操作系统学习)
- [4. 虚拟化](#4-虚拟化)
- [5. Linux 学习](#5-linux-学习)
- [6. Android 学习](#6-android-学习)
- [7. 机器学习与人工智能](#7-机器学习与人工智能)
- [8. 开发板](#8-开发板)
- [9. Nuttx 学习](#9-nuttx-学习)
- [10. RT-Thread](#10-rt-thread)
- [11. Qt 学习](#11-qt-学习)
- [12. Golang 资料](#12-golang-资料)
- [13. 软件资源](#13-软件资源)
- [14. BT 资源](#14-bt-资源)
- [15. PPT 资源](#15-ppt-资源)
- [16. 图像资源](#16-图像资源)
- [17. 项目管理](#17-项目管理)
- [18. Reference](#18-reference)
- [19. 综合技术](#19-综合技术)
- [20. 代码托管](#20-代码托管)
- [20.1. GitHub 加速](#201-github-加速)
- [20.1.1. FAST-GitHub](#2011-fast-github)
- [21. My Web](#21-my-web)
- [22. 玩](#22-玩)
- [23. 乐](#23-乐)
- [24. 书](#24-书)
- [25. 影](#25-影)
- [1. 工具网站](#1-工具网站)
- [2. 镜像网站](#2-镜像网站)
- [3. 操作系统学习](#3-操作系统学习)
- [4. 虚拟化](#4-虚拟化)
- [5. Linux 学习](#5-linux-学习)
- [6. Android 学习](#6-android-学习)
- [7. 机器学习与人工智能](#7-机器学习与人工智能)
- [8. 开发板](#8-开发板)
- [9. Nuttx 学习](#9-nuttx-学习)
- [10. RT-Thread](#10-rt-thread)
- [11. Qt 学习](#11-qt-学习)
- [12. Golang 资料](#12-golang-资料)
- [13. 软件资源](#13-软件资源)
- [14. BT 资源](#14-bt-资源)
- [15. PPT 资源](#15-ppt-资源)
- [16. 图像资源](#16-图像资源)
- [17. 项目管理](#17-项目管理)
- [18. Reference](#18-reference)
- [19. 综合技术](#19-综合技术)
- [20. 代码托管](#20-代码托管)
- [20.1. GitHub 加速](#201-github-加速)
- [20.1.1. FAST-GitHub](#2011-fast-github)
- [21. My Web](#21-my-web)
- [22. 玩](#22-玩)
- [23. 乐](#23-乐)
- [24. 书](#24-书)
- [25. 影](#25-影)
## 1. 工具网站
@ -279,6 +281,7 @@ SSH 通道的使用见官方说明。
## 23. 乐
- [HiFini](https://www.hifini.com/)
- [MP3Juice](https://mp3-juice.com/)
- [MP3Juice](https://mp3juices.net/)
- [MusicDownload](https://musicdownload.zone/)

View File

@ -0,0 +1,25 @@
---
modified: 2023-06-06T04:11:28.164Z
title: Vino Ubuntu 18.04 内置桌面共享的使用
---
Ubuntu 18.04 内置了桌面共享,使用该功能的前提是安装了 Vino
```bash
sudo apt install vino
```
注意Vino 实现了远程桌面同步功能,即远程和当前屏幕看到的内容一致,如果系统没有显示器,则远程显示异常。如果仅仅使用远程桌面(无本地桌面),那需要的是 tightvncserver 功能。
打开 Ubuntu 系统设置->共享->屏幕共享,选择使能远程控制并使用密码来实现访问控制。
然后关闭共享加密策略:
```bash
sudo apt install dconf-editor
dconf write /org/gnome/desktop/remote-access/require-encryption false
# 或
gsettings set org.gnome.Vino require-encryption false
```
Vino 使用的是 5900 端口,重启 Ubuntu 后Windows 端通过 Vncviewer 等软件连接 5900 端口即可。