Skip to content

Instantly share code, notes, and snippets.

@marcelrv
Created January 27, 2025 10:42
Show Gist options
  • Save marcelrv/61a366e2ea594a5a6a1efacfec22a5c3 to your computer and use it in GitHub Desktop.
Save marcelrv/61a366e2ea594a5a6a1efacfec22a5c3 to your computer and use it in GitHub Desktop.
Raspberry PI Kali Linux

Kali Linux Raspberry Pi Image fixes

Wifi not available

wlan device is marked as unmanaged in the network

To enable this one time: sudo nmcli save dev set wlan0 managed yes

To let the fix survice reboot

sudo nano /etc/NetworkManager/NetworkManager.conf

add section:

[device]
match-device=interface-name:wlan0
managed=1

Gui too slow for raspberry

To disable the gui: sudo systemctl set-default multi-user

To enable it again: sudo systemctl set-default graphical

reboot after the command

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment