2016年6月22日 星期三

Raspberry Pi 3 ( 六 ) VNC 連線


     VNC 是一種使用 RFB 協定的螢幕畫面分享及遠端操作軟體,由於 VNC 與作業系統無關,因此可跨平台使用,如果我們需要和 Pi 做有圖形介面的連線,使用 VNC 是最好的選擇。

   安裝VNC Server

    安裝VNC只能在終端機或SSH模式下進行,開啟SSH 登入 Raspberry。


安裝VNC 這過程要一段時間,跟網路速度有很大關係 。  $ 後為指令。

sudo apt-get install tightvncserver



執行 tightvncserver。

&  tightvncserver

    第一次執行 vncserver 時會問幾個問題,包括登入的密碼和可供其他人流覽的 read-only 密碼, read-only 密碼可以不設定。

 安裝Windows VNCViewer

在這裡下載,請選擇自己符合電腦的版本。

http://www.tightvnc.com/download.php


選擇自定安裝,Server 部分不用安裝,其他就下一步下一步就可。


執行 TightVNC Viewer 輸入Rispberry 的 IP,我們使用埠號是5901就 :1 就可。


這樣就可看到Raspberry 的畫面了。


 我習慣VNC 畫面是 Full HD 在開啟VNC時可以加這樣的參數。

$  vncserver :1 -geometry 1920x1080 -depth 24

  要在開機時就啟動 VNC 伺服器 須在 /etc/init.d/ 下建立一個控制的腳本 (script),例如取名為 vncboot。

$  sudo nano /etc/init.d/vncboot

 script 內容如下。

#! /bin/sh
# /etc/init.d/vncboot

### BEGIN INIT INFO
# Provides: vncboot
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start VNC Server at boot time
# Description: Start VNC Server at boot time.
### END INIT INFO

USER=pi
HOME=/home/pi

export USER HOME

case "$1" in
 start)
  echo "Starting VNC Server"
  #Insert your favoured settings for a VNC session
  su - $USER -c "/usr/bin/vncserver :1 -geometry 1920x1080 -depth 24"
  ;;

 stop)
  echo "Stopping VNC Server"
  /usr/bin/vncserver -kill :1
  ;;

 *)
  echo "Usage: /etc/init.d/vncboot {start|stop}"
  exit 1
  ;;
esac

exit 0

須修改檔案權限。

$ sudo chmod 755 /etc/init.d/vncboot

將腳本加入預設的啟動程序。

$ sudo update-rc.d -f lightdm remove
$ sudo update-rc.d vncboot defaults

重開 Raspberry 測試一次。

$ sudo reboot

等Raspberry 開機完成後 就可用 VNC 登入, VNC畫面變大了。

參考資料 :

     https://www.raspberrypi.org/documentation/remote-access/vnc/

沒有留言:

張貼留言