Linux远程登录window桌面
> 在前面的学习中,我们常常说过,在 windows 下利用 `vnc` 可以远程连接 Linux 的桌面。反过来,如何利用 Linux 连接 windows 的桌面呢?### 一 在 Windows 启动 vncserver

### 二 Linux 利用 vncviewer 连接
命令如下:
```
vncvieweroptions ip:5900
```
**参数说明:**
`options`: 就是控制桌面有没有声音,分辨率等参数
`ip`:远程桌面的 ip 地址
实例:
```
vncviewer -shared 192.168.123.86:5900
```
### 效果如下

### bug修复
连接提示错误
Connected to RFB server, using protocol version 3.3
No configured security type is supported by 3.3 VNC Viewer
解决方法:
修改`encryption` 选项选为 `prefer on`即可!
页:
[1]