树莓派上手实战之SSH下配置VNC服务器实现远程桌面(可以实现开机自启动vncserver)

时间:2022-11-05 15:37:49
VNC是linux下面常用的远程桌面,用它可以在windows或者unix主机上方便的通过网络操作远程主机而不需要一个额外的显示器,非常实用。
这篇教程将会详细讲解安装配置VNC服务器开启远程桌面服务的全部过程。

首先 假设我们已经知道了树莓派的ip地址,并且通过ssh远程连接到了树莓派。
用默认账户pi登录,在ssh命令终端下输入命令 

  1. sudo apt-get install vnc-server
复制代码



apt-get会给出一个提示,这个命令将会安装tightvnc在内的一系列包

输入Y继续安装

接下来配置tightvncserver的启动服务

输入命令 

  1. sudo nano /etc/init.d/tightvncserver
复制代码



然后复制粘贴这个脚本到ssh窗口


  1. ### BEGIN INIT INFO
  2. # Provides: tightvnc
  3. # Required-Start: $remote_fs $syslog
  4. # Required-Stop: $remote_fs $syslog
  5. # Default-Start: 2 3 4 5
  6. # Default-Stop: 0 1 6
  7. # Short-Description: Start VNC Server as a service
  8. # Description: Start VNC Server as a service.
  9. ### END INIT INFO
  10. #!/bin/sh
  11. # /etc/init.d/tightvncserver
  12. # Customised by raspicndotcom
  13. #http://www.penguintutor.com/linux/tightvnc
  14. # Set the VNCUSER variable to the name of the user to start tightvncserver under
  15. VNCUSER='pi'
  16. eval cd ~$VNCUSER
  17. case "$1" in
  18. start)
  19.    su $VNCUSER -c '/usr/bin/tightvncserver :1  -geometry 1024x640 -depth 16 -pixelformat rgb565'
  20.    echo "Starting TightVNC server for $VNCUSER "
  21.    ;;
  22. stop)
  23.    pkill Xtightvnc
  24.    echo "Tightvncserver stopped"
  25.    ;;
  26. *)
  27.    echo "Usage: /etc/init.d/tightvncserver {start|stop}"
  28.    exit 1
  29.    ;;
  30. esac
  31. exit 0
  32. #
复制代码

需要特别说明的一点是  这个脚本的默认用户是"pi"



Ctrl+ O 回车 保存  Ctrl +X 退出
输入命令

  1. sudo chmod 755 /etc/init.d/tightvncserver
  2. sudo update-rc.d tightvncserver defaults
复制代码



在默认账户pi下输入命令

  1. vncserver
复制代码

会提示你设定vnc 服务的访问密码
需要连续输入两次密码
密码长度最好为8位
之后还会提示你要不要输入一个只读密码
只读密码可以选Y输入也可以选n跳过

配置完毕
输入命令

  1. reboot
复制代码

重新启动pi
等待树莓派重新启动后就可以用刚才设定的密码登录VNC 服务器了