The following document describes our own method of creating a custom Kali Linux Beaglebone Black ARM image and is targeted at developers. If you would like to install a pre-made Kali image, check out our Install Kali on Beaglebone Black article.
You’ll need to have root privileges to do this procedure, or the ability to escalate your privileges with the command “sudo su”.
01. Create a Kali rootfs
Build a Kali rootfs as described in our Kali documentation, using an armhf architecture. By the end of this process, you should have a populated rootfs directory in ~/arm-stuff/rootfs/kali-armhf.
02. Create the Image File
Next, we create the physical image file, which will hold our Beaglebone Black rootfs and boot images:
:~$ parted --script kali-custom-bbb.img mklabel msdos
:~$ fdisk kali-custom-bbb.img <<EOF
n
p
1
+64M
t
e
p
w
EOF
:~$ parted --script kali-custom-bbb.img set 1 boot on
:~$ fdisk kali-custom-bbb.img <<EOF
n
p
2
w
EOF
Once the dd operation is complete, unmount and eject the SD card and boot your Beaglebone Black into Kali Linux. When booting you will need to press and hold the “BOOT” button, it’s the one closest to the microSD card.
If you’re not using ARM hardware as the development environment, you will need to set up an to build an ARM kernel and modules. Once that’s done, proceed with the following instructions: