如何设置树莓派的VNC开机时启动

转载:http://www.linuxidc.com/Linux/2016-12/138793.htm

下面正式开始配置

首先

sudo nano /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

然后  Ctrl+O 回车 保存

然后  Ctrl+X退出文本编辑器

然后 修改权限

sudo chmod 755 /etc/init.d/vncserver

然后 添加开机启动项

sudo update-rc.d vncserver defaults

最后 重启树莓派

sudo reboot

---------------------------------------------------------------

如果不出意外  树莓派开机后 就可以连接VNC了

点开这货

连接ip  也就是 树莓派ip:1

点击OK

然后就可以愉快的玩耍了,刷新率很低,像看ppt一样。已知Minecraft不能玩。

这样就好了。

原文地址:https://www.cnblogs.com/panlangen/p/7588406.html