TigerVnc vncviewer는 일부 시스템 응용 프로그램을 열 수 없습니다

TigerVnc vncviewer는 일부 시스템 응용 프로그램을 열 수 없습니다

vncviewer를 사용하여 연결하려는 컴퓨터는 Ubuntu 18.04 시스템입니다.대시보드에서 패널로그놈 확장.

내가 사용할 때first.vnc/xstartup, 연결한 후에 검은색 화면만 나타납니다.

내가 사용할 때Second.vnc/xstartup, 나는노틸러스 파일 관리자연결되면 pdf 파일 자체를 두 번 클릭하여 evince를 사용하여 pdf를 열 수 있습니다. 하지만텍스트 파일 자체를 두 번 클릭하여 gedit를 열 수 없고, 마우스 오른쪽 버튼 클릭 메뉴를 사용하여 터미널을 열 수도 없습니다.. 왜?

여기에 이미지 설명을 입력하세요.

발행할 때 다음 Journalctl 로그를 얻습니다.SSH Destination_computer_username@destination_computer_ip_addr "DISPLAY=:2 nohup gnome-terminal"내 소스 컴퓨터 터미널에서

Dec 20 14:06:13 UbuntuHW15 dbus-daemon[4137]: [session uid=1000 pid=4137] Activating via systemd: service name='org.gnome.Terminal' unit='gnome-terminal-server.service' requested by ':1.352' (uid=1000 pid=13704
Dec 20 14:06:13 UbuntuHW15 systemd[4111]: Starting GNOME Terminal Server...
Dec 20 14:06:13 UbuntuHW15 gnome-terminal-server[13707]: Invalid MIT-MAGIC-COOKIE-1 keyUnable to init server: Could not connect: Connection refused
Dec 20 14:06:13 UbuntuHW15 gnome-terminal-server[13707]: Failed to parse arguments: Cannot open display:
Dec 20 14:06:13 UbuntuHW15 systemd[4111]: gnome-terminal-server.service: Main process exited, code=exited, status=10/n/a
Dec 20 14:06:13 UbuntuHW15 systemd[4111]: gnome-terminal-server.service: Failed with result 'exit-code'.
Dec 20 14:06:13 UbuntuHW15 systemd[4111]: Failed to start GNOME Terminal Server.

first.vnc/xstartup

#!/bin/sh

unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
OS=`uname -s`
if [ $OS = 'Linux' ]; then
  case "$WINDOWMANAGER" in
    *gnome*)
      if [ -e /etc/SuSE-release ]; then
        PATH=$PATH:/opt/gnome/bin
        export PATH
      fi
      ;;
  esac
fi
if [ -x /etc/X11/xinit/xinitrc ]; then
  exec /etc/X11/xinit/xinitrc
fi
if [ -f /etc/X11/xinit/xinitrc ]; then
  exec sh /etc/X11/xinit/xinitrc
fi
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &

gnome-wm&
metacity&

Second.vnc/xstartup

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

관련 정보