整理的资料来自网络
解决闪屏问题
HDMI线转VGA接显示屏闪屏(一般是分辨率不合适),在SD卡中的config.txt中加入
hdmi_mode
部分根据需要进行更高
hdmi_force_hotplug=1
config_hdmi_boost=4
hdmi_group=2
hdmi_mode=39
hdmi_ignore_edid=0xa5000080
disable_overscan=1
注意:如果你使用的是4B版本,以上无效,需要进入系统设置。
主菜单-》首选项-》Main Menu Edit-》首选项-》显示器设置
主菜单-》首选项-》显示器设置
然后设置成自己合适的分辨率
更换国内源
我的树莓派操作系统是buster版
deb http://mirrors.ustc.edu.cn/raspbian/raspbian/ (后面的部分复制默认的就行)
安装中文输入法
1.scim(用了一段时间后不推荐)
sudo apt install scim-pinyin
reboot
如果出现了Ctrl+空格不能切换的问题,需要杀掉进程重新启动
ps -ef | grep scim
杀掉显示的几个进程,并重新启动
sudo scim
2.谷歌拼音
sudo apt install fcitx fcitx-googlepinyin fcitx-module-cloudpinyin fcitx-sunpinyin
重启,之后右上角输入法那里右键,添加谷歌拼音
安装截图软件,并设置快捷键
sudo apt install flameshot
sudo nano /etc/xdg/openbox/lxde-pi-rc.xml
在合适的地方加入以下代码:
<keybind key="C-A-a">
<action name="Execute">
<command>flameshot gui</command>
</action>
</keybind>
之后重启。
github下载慢的问题
添加hosts项,最后一行:
pi@raspberrypi:~/Documents/frp $ cat /etc/hosts
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
219.76.4.4 github-cloud.s3.amazonaws.com
pip下载慢的问题
更换pip源,
sudo nano /etc/pip.conf
没有文件或文件夹自行创建。
pi@raspberrypi:~/.pip $ cat pip.conf
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
这种方法是针对sudo pip
。