登录远程Linux桌面

远程桌面连接主要使用两种协议,一种是Windows上RDP协议,第二种是VNC协议,从使用效果来看,vnc更优秀。

一、VNC

     使用x11vnc

1.安装x11vnc

sudo apt install x11vnc

2.启动x11vnc

 x11vnc -passwd orangepi -display :0 -forever

orangepi 为登录桌面密码

3.开启之后使用客户端进行连接,默认端口为5900。注意每次连接都要先启动x11vnc

登录远程Linux桌面_第1张图片

 登录远程Linux桌面_第2张图片

二、RDP

      使用xrdp

1.安装xrdp

sudo apt install xrdp

2.启动xrpd服务

sudo systemctl enable xrdp
sudo systemctl start xrdp

3.使用Windows自带远程桌面工具连接Linux桌面

登录远程Linux桌面_第3张图片

 

你可能感兴趣的:(linux,服务器,运维)