Pentoo: Difference between revisions
From charlesreid1
(Created page with "Distribution for penetration testing, based on Gentoo (which compiles absolutely everything from scratch). Everything SDR-related (gnuradio, etc) "just works" =Flags= {{Ha...") |
No edit summary |
||
| Line 2: | Line 2: | ||
Everything SDR-related (gnuradio, etc) "just works" | Everything SDR-related (gnuradio, etc) "just works" | ||
=Installing= | |||
==Live USB== | |||
First, plug in your usb drive (I used a 16 gb usb drive). | |||
Look for it using fdisk: | |||
<pre> | |||
$ fdisk -l | |||
$ fdisk -l /dev/sdb | |||
$ sudo umount /dev/sdb1 | |||
</pre> | |||
Now that the disk is unmounted, let's create a new FAT partition on it: | |||
<pre> | |||
$ mkdosfs -F 32 /dev/sdb1 | |||
</pre> | |||
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 <code>/usr/share/syslinux/mbr.bin</code>): | |||
<pre> | |||
$ apt-get install syslinux | |||
$ ls /usr/lib/SYSLINUX/mbr.bin | |||
</pre> | |||
Use dd to write the image onto the jump drive: | |||
<pre> | |||
$ dd if=/usr/lib/SYSLINUX/mbr.bin of=/dev/sdb | |||
</pre> | |||
=Flags= | =Flags= | ||
{{HackRFFlag}} | {{HackRFFlag}} | ||
Revision as of 04:29, 11 August 2016
Distribution for penetration testing, based on Gentoo (which compiles absolutely everything from scratch).
Everything SDR-related (gnuradio, etc) "just works"
Installing
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