当前位置:   article > 正文

ubuntu 22.04 server 版本 安装桌面、安装XRDP_ubuntu安装xrdp

ubuntu安装xrdp

ubuntu 22.04 server 版本 安装桌面、安装XRDP

讲真的,是被折腾惨了,才写的这个,前面在网上搜的,基本上没有对的,真尴尬

1、更新软件列表

apt update -y
  • 1

2、安装服务

apt install ubuntu-desktop -y
apt install xrdp -y
systemctl enable --now xrdp
sudo ufw allow 3389/tcp
reboot
  • 1
  • 2
  • 3
  • 4
  • 5

3、如果需要root登录RDP

3.1、修改root 密码

passwd root
  • 1

3.2、修改环境变量文件

vim /root/.profile  

##在mesg 前面加上   tty -s &&
tty -s && mesg n 2> /dev/null || true

root@administrator-KVM:~# cat /root/.profile
# ~/.profile: executed by Bourne-compatible login shells.

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi

tty -s && mesg n 2> /dev/null || true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

3.3、修改pam模块允许root登录

将/etc/pam.d/gdm-autologin  和 /etc/pam.d/gdm-password  文件中
关于root的限制登录选项注释掉
auth   required        pam_succeed_if.so user != root quiet_success

root@administrator-KVM:~# cat /etc/pam.d/gdm-autologin |grep root
#auth   required        pam_succeed_if.so user != root quiet_success

root@administrator-KVM:~# cat /etc/pam.d/gdm-password |grep root
#auth   required        pam_succeed_if.so user != root quiet_success
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

完成之后直接使用RDP登录即可
在这里插入图片描述
登录后的界面
在这里插入图片描述
完成

4、异常

最容易出现的问题是无法登录,或者登录闪退,检查上述配置后确认无误重启即可
另外注意,安装软件的顺序不能错,XRDP只能后装,否则会出现一些依赖问题

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/75556
推荐阅读
相关标签
  

闽ICP备14008679号