긴밀한 VNC 서버, Ubutu 12.10 및 Unity 데스크탑

긴밀한 VNC 서버, Ubutu 12.10 및 Unity 데스크탑

다음을 수행했지만 VNC 뷰어에 나타나는 것은 빈 주황색 화면뿐입니다. 도움을 주시면 감사하겠습니다.

  1. apt-get -y install ubuntu-desktop tightvncserver

  2. adduser vnc && passwd vnc

  3. echo "vnc ALL=(ALL) ALL" >> /etc/sudoers

  4. sudo -u vnc vncpasswd

  5. 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 &
    

    구하다

  6. 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를 누르세요.

  7. chown -R vnc. /home/vnc/.vnc && chmod +x /home/vnc/.vnc/xstartup

  8. sed -i 's/allowed_users.*/allowed_users=anybody/g' /etc/X11/Xwrapper.config

  9. chmod +x /etc/init.d/vncserver && service vncserver start

  10. update-rc.d vncserver defaults

  11. 재부팅.

  12. 마지막으로,Tightvnc 뷰어 클라이언트로 들어가 보세요. 짜잔, 빈 koolaid tangerine 오렌지 화면이 보입니다.

답변1

xstartup 파일에 대한 GUI 세션을 설정하지 않았기 때문에 우분투에서 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를 통합할 수 없습니다. 다른 데스크탑 환경을 설치하면 문제가 해결될 것입니다. Xfce의 방법은 다음과 같습니다.

https://www.digitalocean.com/community/articles/how-to-setup-vnc-for-ubuntu-12

관련 정보