現在很少有自帶VNCserver的教程,因為之前官方系統沒有自帶VNC,但是現在最新版的官方系統已經自帶VNCserver,只需要在設置里啟用一下,然后設置就可以用啦。
1、打開樹莓派設置 sudo raspi-config,選擇 5、Interfacing Options ,然后回車:

2、選擇3 VNC,再回車:

3、選擇yes:

4、編輯vncserver,sudo vim /etc/init.d/vncserver,添加以下命令,然后保存退出:
#!/bin/sh ### BEGIN INIT INFO # Provides: vncserver # Required-Start: $local_fs # Required-Stop: $local_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start/stop vncserver ### END INIT INFO # More details see: # http://www.penguintutor.com/linux/vnc ### Customize this entry # Set the USER variable to the name of the user to start vncserver under export USER='pi' ### End customization required eval cd ~$USER case "$1" in start) # 啟動命令行。此處自定義分辨率、控制台號碼或其它參數。 su $USER -c '/usr/bin/vncserver -depth 16 -geometry 1024x768 :1' echo "Starting VNC server for $USER " ;; stop) # 終止命令行。此處控制台號碼與啟動一致。 su $USER -c '/usr/bin/vncserver -kill :1' echo "vncserver stopped" ;; *) echo "Usage: /etc/init.d/vncserver {start|stop}" exit 1 ;; esac exit 0
5、修改權限:
sudo chmod 755 /etc/init.d/vncserver
6、設置開機自啟動:
sudo update-rc.d vncserver defaults
7、重啟服務器:sudo reboot
可以使用RealVNC Viewer客戶端遠程連接VNC服務器了。
