JackLi · 2020年01月08日

能不能使用Windows远程桌面来连接EAIDK-310开发套件呢?怎么操作?

能不能使用Windows远程桌面来连接EAIDK-310开发套件呢?怎么操作?

1 个回答 得票排序 · 时间排序
杨二凯 · 2020年01月08日

一般情况下,如果需要登陆远程Linux系统,我们会使用ssh/telnet来完成,如果需要登陆到远程Linux系统的桌面环境,我们可以使用xrdp
安装xrdp

sudo yum install xrdp

配置重启xrdp

sudo systemctl restart xrdp

完成之后,就可以使用Windows的远程桌面连接来连开发板
若板子系统重启后,需要重新开启xrdp才能再次使用Windows远程桌面连接

sudo systemctl start xrdp

查看xrdp状态,查看是否开启成功

systemctl status xrdp.service

为了方便,将xrdp设置为开机启动

sudo systemctl enable xrdp
你的回答