以下解决方法与问题是基于我之前给树莓派写的一个开机自启动python脚本导致的问题所提出的。
如果你从来没有给树莓派写过脚本,那我的这篇博客对现在的你来说没有帮助,不用浪费时间了。
今天在用PC的Putty-ssh方式连接电脑的时候出现了一个问题,导致没办法运行我的手势识别代码
Linux raspberrypi 4.19.118-v7l+ #1311 SMP Mon Apr 27 14:26:42 BST 2020 armv7l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Sun Nov 13 16:11:09 2022
SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.
Unable to init server: 无法连接:拒绝连接
(lxterminal:793): Gtk-WARNING **: 16:11:33.193: cannot open display:
以上是我的putty显示的报错页面,可以跟自己的参考一下下。
然后VNC Viewer出现了这个问题没办法看见树莓派的正常页面了。
而MobaXterm可以正常看见树莓派里面的文件夹,也是会有跟前面第一个图片一样的报错在页面上。
至于如果有同学用Windows自带的远程桌面连接软件,也是会报跟putty一样的错误。
仔细思考,想了很久。发现网络上没有相关的解决方法。我就发现我之前的给树莓派做了一个开机自启动python的脚本。可能是这个脚本与树莓派之间出现了问题。导致了这个问题。
Unable to init server: 无法连接:拒绝连接
(lxterminal:793): Gtk-WARNING **: 16:11:33.193: cannot open display:
所以,首先我把写的脚本找到了/home/pi/vvcat_python.sh将它删除掉。
然后脚本开机运行肯定要在开机的程序里面加,紧接着找到 /etc/rc.local
sudo nano /etc/rc.local
在fi
exit 0之间删除掉我的运行命令
python3 /home/pi/test1.py
另外还有自启动的另外一种方法
sudo nano /home/pi/.bashrc
同样的进入到了在里面最下面的fi下面改掉你之前加的代码。
然后sudo reboot重新启动之后就可以正常使用了。