我已经完成了以下操作,但在 VNC Viewer 中看到的只是一个空白的橙色屏幕,如能提供任何帮助我将不胜感激。
apt-get -y install ubuntu-desktop tightvncserver
adduser vnc && passwd vnc
echo "vnc ALL=(ALL) ALL" >> /etc/sudoers
sudo -u vnc vncpasswd
nano ~/.vnc/xstartup
并输入以下内容:#!/bin/sh # Uncomment the following two lines for normal desktop: unset SESSION_MANAGER . /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 1280x1024+10+10 -ls -title "$VNCDESKTOP Desktop" & #x-window-manager &
节省
sudo nano /etc/init.d/vncserver
,粘贴以下内容,然后保存:#!/bin/sh -e ### BEGIN INIT INFO # Provides: vncserver # Required-Start: networking # Default-Start: 3 4 5 # Default-Stop: 0 6 ### END INIT INFO PATH="$PATH:/usr/bin/" # The Username:Group that will run VNC export USER="vnc" #${RUNAS} # The display that VNC will use DISPLAY="1" # Color depth (between 8 and 32) DEPTH="16" # The Desktop geometry to use. #GEOMETRY="<WIDTH>x<HEIGHT>" #GEOMETRY="800x600" GEOMETRY="1024x768" #GEOMETRY="1280x1024" # The name that the VNC Desktop will have. NAME="my-vnc-server" OPTIONS="-name ${NAME} -depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}" . /lib/lsb/init-functions case "$1" in start) log_action_begin_msg "Starting vncserver for user '${USER}' on localhost:${DISPLAY}" su ${USER} -c "/usr/bin/vncserver ${OPTIONS}" ;; stop) log_action_begin_msg "Stopping vncserver for user '${USER}' on localhost:${DISPLAY}" su ${USER} -c "/usr/bin/vncserver -kill :${DISPLAY}" ;; restart) $0 stop $0 start ;; esac exit 0
然后按 ctrl-x 保存,按 Y 表示是,按 Enter 表示接受文件名。
chown -R vnc. /home/vnc/.vnc && chmod +x /home/vnc/.vnc/xstartup
sed -i 's/allowed_users.*/allowed_users=anybody/g' /etc/X11/Xwrapper.config
chmod +x /etc/init.d/vncserver && service vncserver start
update-rc.d vncserver defaults
重启。
最后,使用 tightvnc 查看器客户端进入,瞧,空白的 kool aid 橘黄色屏幕。
答案1
你没有为 xstartup 文件设置 gui 会话,这就是为什么当你尝试在 ubuntu 上通过 vnc 远程连接到你的桌面/服务器时,你会看到空白屏幕,如果你想要 gnome,请安装这些软件包
# 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
据我所知,您无法通过 VNC 进入 Unity。安装不同的桌面环境就可以了。以下是使用 xfce 的方法:
https://www.digitalocean.com/community/articles/how-to-setup-vnc-for-ubuntu-12