干杯

干杯

我可以使用 VNC Viewer 从我的 Mac OSX 10.11.4 连接到 Ubuntu 14.04

我看到的是黑屏和鼠标光标。当我右键单击鼠标时,我看到远程计算机上弹出上下文菜单,键盘也可以使用。

为什么我看不到远程桌面?

的内容~/.vnc/xstartup

#!/bin/sh

#xrdb $HOME/.Xresources
xsetroot -solid grey
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &
# Fix to make GNOME work
#export XKL_XMODMAP_DISABLE=1
#/etc/X11/Xsession

答案1

我花了很长时间才弄清楚,现在我尝试了很多方法,但我不知道到底是什么原因造成的。当问题最终得到解决时,我所在的页面如下:

以下是我记得在几周内做过的一些其他事情:

以下是我最近收到的history

766  vi ~/.vnc/xstartup 
767  sudo reboot
768  tightvncserver 
769  exit
770  sudo apt-get install xfce4 xfce4-goodies tightvncserver
771  find . -name "xstartup"
772  vi .vnc/xstartup 
773  ls -la .vnc/xstartup 
774  vi .vnc/xstartup 
775  sudo reboot
776  sudo apt-get install gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal
777  vi .vnc/xstartup 
778  sudo reboot
779  sudo apt-get install tightvncserver
780  sudo vi /etc/lightdm/lightdm.conf.d/vnc.conf 
781  sudo reboot
782  export DISPLAY=:0
783  xhost +
784  sudo apt-get install x2x
785  sudo apt-get remove x2x
786  nautilus .
787  nautilus ~
788  cd ~
789  ls
790  gedit 
791  exit
792  sudo apt-get install xfce4 xfce4-goodies gnome-icon-theme-full
793  sudo apt-get install xfce4 xfce4-goodies
794  vi /etc/lightdm/lightdm.conf.d/xfce.conf
795  sudo vi /etc/lightdm/lightdm.conf.d/xfce.conf
796  sudo reboot
797  vi .vnc/xstartup 
798  history

上面列出的一些文件的内容:

〜/ .vnc / 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 &

/etc/lightdm/lightdm.conf.d/vnc.conf

[VNCServer]
enabled=true
port=5900
width=1280
height=720
depth=24

/etc/lightdm/lightdm.conf.d/xfce.conf

[SeatDefaults]
user-session=xfce

我希望我的笔记能让你花在这个问题上的时间比我少得多。

干杯

#jetsontk1 #mac #osx10.11.4 #ubuntu14.04#vnc

相关内容