如何使VNC Server与不带xfce的ubuntu-desktop一起使用


30

我有Ubuntu Server LTS 14.04,我想知道是否可以安装vnc4server并使其与ubuntu-desktop(而不是xubuntu-desktop)一起工作而不安装xfce4。

我认为我必须配置vnc4server配置文件,但我是所有这些的初学者。

请不要建议我使用xrdp或gnome-core。我只想仅使用原始的ubuntu-desktop安装来运行VNC服务器。我使用VNC Viewer连接到我的服务器,但是如果它可以与ubuntu-desktop一起使用,则我对使用与vnc4server不同的其他建议没有任何问题。

Answers:


43

安装这些软件包

# apt-get install gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal

并使用此xstartup文件

#!/bin/sh

export XKL_XMODMAP_DISABLE=1
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &

gnome-panel &
gnome-settings-daemon &
metacity &
nautilus &
gnome-terminal &

1
我说过,我想通过原始的ubuntu-desktop运行VNC,您建议在ubuntu-desktop上运行吗?
GoLDeN_GhOsT,2014年

1
这些只是gnome软件包,可帮助vnc4server正确加载,否则您将无法正确看到桌面
Blanca Higgins

太棒了...。寻找了很多年,这就像一个魅力!!
Abimbola Esuruoso 2015年

7
桌面启动了(很棒),但是Unity启动器和键盘快捷键不起作用...
Shmil The Cat 2015年

1
是的,没有团结的爱遵循这些指示。(sadface)只是一个普通的GNOME桌面
RoboKaren

10

我不得不添加gnome-session &之前gnome-panel &得到任何窗口管理工作。没有它,我只能查看默认桌面。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.