Pentoo
From charlesreid1
Distribution for penetration testing, based on Gentoo (which compiles absolutely everything from scratch).
Everything SDR-related (gnuradio, etc) "just works"
Installing
links
pentoo isos
http://mirror.switch.ch/ftp/mirror/pentoo/Pentoo_amd64_hardened/
gentoo wiki live usb guide
https://wiki.gentoo.org/wiki/LiveUSB/Guide
Live USB
First, plug in your usb drive (I used a 16 gb usb drive).
Look for it using fdisk:
$ fdisk -l $ fdisk -l /dev/sdb $ sudo umount /dev/sdb1
Now that the disk is unmounted, let's create a new FAT partition on it:
$ mkdosfs -F 32 /dev/sdb1
Next step is to install the precompiled Linux system master boot record onto the jump drive. Install it, then make sure you have it (it may also be located at /usr/share/syslinux/mbr.bin):
$ apt-get install syslinux $ ls /usr/lib/SYSLINUX/mbr.bin
Use dd to write the image onto the jump drive:
$ dd if=/usr/lib/SYSLINUX/mbr.bin of=/dev/sdb