Ubuntu 安装桌面(图形界面) 以及 远程桌面

安装桌面环境

安装 Gnome

sudo apt update
sudo apt-get upgrade
sudo apt install ubuntu-desktop

安装 Xfce

sudo apt update
sudo apt-get upgrade
sudo apt install xubuntu-desktop

安装 Xrdp

Xrdp 被包含在默认的 Ubuntu 软件源中。想要安装它,运行:

sudo apt install xrdp
一旦安装完成,Xrdp 服务将会自动启动。你可以输入下面的命令,验证它:

sudo systemctl status xrdp
输出将会像下面这样:

● xrdp.service - xrdp daemon Loaded: loaded
(/lib/systemd/system/xrdp.service; enabled; vendor preset: enabled)
Active: active (running) since Fri 2020-05-22 17:36:16 UTC; 4min 41s
ago …

连接 Xrdp 服务器

Windows 电脑,可以使用默认的 RDP 客户端。在 Windows 搜索栏输入“remote”,并且点击“Remote Desktop Connection”。这将会打开一个 RDP 客户端。在“Computer”区域输入远程服务器 IP地址,并且点击“Connect”。

在登录屏幕,输入你的用户名和密码,点击“OK”。

问题

远程桌面闪退,shell可以用的问题

  1. 需要在该用户目录创建一个.xsession:touch .xsession
  2. 里面写“xfce4-session”一句话就行:echo xfce4-session >~/.xsession 。
  3. 然后进入到用户目录下,sudo chown username:username .xsession

**参考
**

(82条消息) Ubuntu Server 20.04 安装桌面(图形界面) 以及 远程桌面_跳舞的Tango的博客-CSDN博客_ubuntu 安装桌面

【Ubuntu】Windows 远程桌面连接ubuntu及xrdp的一些小问题(远程桌面闪退、连接失败、tab补全功能,无菜单栏,error – problem connecting )_136.la

你可能感兴趣的:(Linux,ubuntu,linux,服务器)