如何配置xRDP默认桌面
概要: 配置RDP远程连接Linux时的默认桌面环境
创建时间: 2022.05.19 01:03:17
更新时间: 2023.07.30 23:44:35
Gnome 3
Bash |
---|
| echo "gnome-session" > ~/.Xclients
chmod +x ~/.Xclients
sudo systemctl restart xrdp.service
|
Gnome Fallback
Bash |
---|
| echo "gnome-fallback" > ~/.Xclients
chmod +x ~/.Xclients
sudo systemctl restart xrdp.service
|
KDE
Bash |
---|
| echo "startkde" > ~/.Xclients
chmod +x ~/.Xclients
sudo systemctl restart xrdp.service
|
MATE
Bash |
---|
| echo "mate-session" > ~/.Xclients
chmod +x ~/.Xclients
sudo systemctl restart xrdp.service
|
Cinnamon
Bash |
---|
| echo "cinnamon" > ~/.Xclients
chmod +x ~/.Xclients
sudo systemctl restart xrdp.service
|
Xfce4
Bash |
---|
| echo "startxfce4" > ~/.Xclients
chmod +x ~/.Xclients
sudo systemctl restart xrdp.service
|
参考