(1)安装新的桌面xubuntu-desktop: 由于ubuntu系统自带的unity桌面不支持远程桌面连接了,所以第一步需要先安装一个其他的桌面环境如xubuntu-desktop,在ssh的终端命令窗口输入:sudo apt-get install xubuntu-desktop
(2)安装xrdp: sudo apt-get install xrdp
(3)安装vnc4server tightvncserver:sudo apt-get install vnc4server tightvncserver
(4)移除unity桌面:sudo apt-get remove unity
(5)重启系统,vino-preferences设置桌面共享,然后写入.xsession文件,最后重启xrdp服务:
sudo reboot
vino-preferences
echo xfce4-session >~/.xsession
sudo service xrdp restart
ubuntu创建桌面快捷方式在ubuntu中一些自己安装的程序没有创建快捷方式,每次都通过绝对路径执行比较复杂,可以通过自己创建快捷方式在桌面上,这样方便了每次的启动。我是给chrome创建的快捷方式,在这里和大家分享一下。 首先将下面的代码复制到一个文件中,文件名的格式为:xxxx.desktop . xxxx为你随意取的名字,以简单易懂为原则。一般就是程序的名字。 [Desktop Entry]Categories=DevelopmentComment[zh_CN]=Comment=Exec=/usr/bin/google-chromeGenericName[zh_CN]=ChromeGenericName=chromeIcon=/opt/google/chrome/product_logo_128.pngMimeType=Name[zh_CN]=ChromeName=chromePath=StartupNotify=trueTerminal=falseType=ApplicationX-DBUS-ServiceName=X-DBUS-StartupType=X-KDE-SubstituteUID=falseX-KDE-Username=owen其中值得注意的是, Exec 是指可执行文件的路径, Icon是指快捷方式所用的图标。Name就是快捷方式的名字。如果安装了包之后无法找到其中可执行文件的路径可以通过 dpkg -L xxxx.deb 命令来查看安装内容的具体路径。 完成之后将xxxx.desktop复制到桌面, 如果用户的当前目录有Desktop目录,直接将此文件移动到Desktop文件中即可。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)