You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
261 B

3 years ago
# CentOS安装xrdp
xrdp需要安装桌面环境。
```bash
sudo yum group install "Server with GUI"
```
安装xrdp
```bash
sudo yum install xrdp
sudo systemctl enable --now xrdp
echo 'exec gnome-session' >> /etc/xrdp/xrdp.ini
sudo systemctl restart xrdp
```