树莓派3(Raspberry pi 3)刷kali+3.5寸微雪屏


1.点亮微雪3.5寸屏幕

需要的工具1:https://github.com/swkim01/waveshare-dtoverlays

1
2
3
4
git clone https://github.com/swkim01/waveshare-dtoverlays.git waveshare-dtoverlays
cd waveshare-dtoverlays
mount /dev/mmcblk0p1 /boot/
cp waveshare-dtoverlays/waveshare35a-overlay.dtb /boot/overlays/

编辑/boot/config.txt添加

1
dtoverlay=waveshare35a

需要的工具2:https://github.com/adafruit/Adafruit-PITFT-Helper

1
2
3
4
5
git clone https://github.com/adafruit/Adafruit-PiTFT-Helper.git
cd Adafruit-PiTFT-Helper
mkdir /etc/kbd
touch /etc/kbd/config
./adafruit-pitft-helper -t 35r -u /root

全选y
reboot,屏幕可以用了。

2.换源

编辑/etc/apt/sources.list文件
对于Kali 2.0,使用ipv4网络添加如下内容

1
2
3
4
deb http://mirrors.ustc.edu.cn/kali sana main non-free contrib
deb-src http://mirrors.ustc.edu.cn/kali sana main non-free contrib
deb http://mirrors.ustc.edu.cn/kali-security sana/updates main contrib non-free
apt-install update

3.屏幕校准

apt-get install -y xinput-calibrator
DISPLAY=:0.0 xinput_calibrator

终端输出一组4个数字的数据,修改到/etc/X11/xorg.conf.d/99-calibration.conf
如果触摸不正常请把此文件改成如下

Section “InputClass”
Identifier “calibration”
MatchProduct “ADS7846 Touchscreen”Option “Calibration” “3946 229 164 3881”Option “SwapAxes” “1”
EndSection

4.安装raspi-config

1
2
3
wget http://archive.raspberrypi.org/debian/pool/main/r/raspi-config/raspi-config_20160527_all.deb
apt-get install triggerhappy lua5.1 alsa-utils
dpkg -i raspi-config_20160527_all.deb