如何让 VNC 服务器在没有 xfce 的情况下与 ubuntu-desktop 一起工作

如何让 VNC 服务器在没有 xfce 的情况下与 ubuntu-desktop 一起工作

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

我想我必须配置 vnc4server 配置文件,但我对这一切还只是个初学者。

请不要建议我使用 xrdp 或 gnome-core。我只想使用原始 ubuntu-desktop 安装来运行 VNC 服务器。我使用 VNC Viewer 连接到我的服务器,但如果它要与 ubuntu-desktop 配合使用,我不介意建议我使用与 vnc4server 不同的其他程序。

答案1

安装这些包

# 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 &

答案2

我必须gnome-session &先添加才能gnome-panel &使窗口管理正常工作。没有它,我只能查看默认桌面。

相关内容