用 windows 的 mstsc 连接 ubuntu 的 xrdp 时,进入后只看到墙纸,其他什么都没有,鼠标指针也不见,输入按键都无反应。
原来 Ubuntu 启动了 3d 桌面,导致 xrdp 运行异常。
使用如下方法解决:
$sudo vim /etc/xrdp/startwm.sh
在 . /etc/X11/Xsession 一行前面插入一行:
echo "gnome-session --session=ubuntu-2d" > .xsession
然后保存退出。
$sudo service xrdp restart
然后再连接上去,一切OK。
现在连上去桌面显示是Unity的新风格界面,如果想用传统的 gnome 风格,则要先安装:
$sudo apt-get install gnome-panel
然后编辑上面插入的一行,把 ubuntu-2d 改为 gnome-classic 保存退出。
注销再登陆就恢复传统桌面了。
RedHat 6使用xrdp远程界面登陆:http://www.linuxdiyf.com/linux/12853.html
使用xrdp实现Windows远程桌面Ubuntu Linux:http://www.linuxdiyf.com/linux/12280.html
Ubuntu 14.04+xRDP+Xfce实现Windows远程桌面连接:http://www.linuxdiyf.com/linux/11367.html
Win7用远程桌面(xrdp+vnc)连接Ubuntu:http://www.linuxdiyf.com/linux/5958.html
CentOS安装XRDP实现远程桌面访问:http://www.linuxdiyf.com/linux/3759.html