树莓派鼠标延迟以及其它问题汇总

本说明基于树莓派4B,所有操作亲测可用.

1. 鼠标延迟

打开SD卡根目录的cmdline.txt文件, 在第一行最后添加一个空格,然后加入usbhid.mousepoll=0.

2. 屏幕有黑边

打开SD卡根目录的config.txt文件,第10行#disable_overscan=1的#删除既可。

3. 在树莓派上烧录树莓派系统到SD卡

之前的树莓派系统无法启动,身边又没有windows环境,只好跑网吧烧录了一遍,但是身边有多余的SD卡,就在树莓派上又烧录了一个树莓派系统的SD卡作为备用。
一行命令即可搞定,亲测可用:

sudo dd bs=4M if=2019-07-10-raspbian-buster.img of=/dev/sdb

SD卡是格式化成ext4格式的。其它格式暂没有试过。烧录时SD卡在umount状态。

4. 树莓派解压rar

没有unrar源,unrar-free解压失败,安装7zip进行解压。

sudo apt install p7zip-full #安装
7z x filename.rar #解压

5. 树莓派使用清华源

# 编辑 `/etc/apt/sources.list` 文件,删除原文件所有内容,用以下内容取代:
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main non-free contrib
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main non-free contrib

# 编辑 `/etc/apt/sources.list.d/raspi.list` 文件,删除原文件所有内容,用以下内容取代:
deb http://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ buster main ui

6. .xz格式镜像解压

xz -d xxx.img.xz
# 如果出现命令找不到,则sudo apt install xz-utils,然后再使用上面的命令.
# 解压过程并无进度显示.

7. kali linux系统初始化

# 系统更新
apt update
apt upgrade

# 设置时区和语言环境
dpkg-reconfigure tzdata
dpkg-reconfigure locales

# 安装bash自动补全
apt install bash-completion

# 安装中文字体
apt install xfonts-intl-chinese
apt install ttf-wqy-microhei

你可能感兴趣的:(硬件,树莓派)