apt-get update & apt-get upgrade# wget https://archive.raspberrypi.org/debian/pool/main/r/raspi-config/raspi-config_20180406+1_all.deb# dpkg -i raspi-config_20180406+1_all.deb# apt-get -f install# raspi-configdf -h. If the image has not expanded to fill the entire SD card, resize it using raspi-config.# echo 1 > /sys/class/backlight/rpi_backlight/bl_power # echo 0 > /sys/class/backlight/rpi_backlight/bl_powerLinux will frequently change the ordering of network interfaces depending on the order in which the modules are loaded on boot. This can be made more predictable.
brcmfmacbrcmutilrt2008usb# cat /etc/modules # /etc/modules: kernel modules to load at boot time. # # This file contains the names of kernel modules that should be loaded # at boot time, one per line. Lines beginning with "#" are ignored. brcmfmac brcmutil rt2008usbIf these changes do not suffice, more in-depth configuration options can be explored here.
Kali doesn't come with the GPIO setup/installed, so if it's needed, you'll need to set it up.
NOTE: This error will typically occur if the Kali installation hasn't been updated in a long time (several years?)
For the error:
The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <devel@kali.org>Add the gpg key:
gpg --keyserver hkp://keys.gnupg.net --recv-key 7D8D0BF6Check the fingerprint:
gpg --fingerprint 7D8D0BF6Sample output:
pub rsa4096 2012-03-05 [SC] [expires: 2021-02-03] 44C6 513A 8E4F B3D3 0875 F758 ED44 4FF0 7D8D 0BF6uid [ unknown] Kali Linux Repository <devel@kali.org>sub rsa4096 2012-03-05 [E] [expires: 2021-02-03]then :
gpg -a --export 7D8D0BF6 | sudo apt-key add -apt updateAnswer from the official documentation:
Note that if you haven’t updated your Kali installation in some time (tsk2), you will like receive a GPG error about the repository key being expired (ED444FF07D8D0BF6). Fortunately, this issue is quickly resolved by running the following as root:
wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add