Ubuntu Server 中缺少 dash

Ubuntu Server 中缺少 dash

我宁愿到处使用 Ubuntu Desktop 以简化操作。不幸的是,我别无选择,只能在云 VM 上部署 Ubuntu Server。这教程云提供商指示要使系统像桌面一样,请执行以下操作。

sudo apt-get install ubuntu-desktop gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal

~/.vnc/xstartup文件应如下所示。

#!/bin/sh

# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey 
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &

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

做好这些准备后,桌面仍然与我熟悉的桌面有很大不同。有一个徽标,dash但它没有提供我熟悉的搜索功能。如何使dash搜索正常运行?

相关内容