How to download Kali Linux and install
Kali Linux is a Debian-derived Linux
distribution. It was developed by offensive security.
This was OS family like
unix. Kali linux is version 32 bits and 64 bits.
How to download kali linux and install
Click to download your choose 32 /64 bits download and
torrent.
Download.
How to install
Kali Linux Live USB Install
1. Plug your USB stick into your Windows USB port and launch
the Win32 Disk Imager software
2. Choose the Kali Linux ISO file to be imaged and verify
that the USB drive to be overwritten is the correct one.
3. Once the imaging is complete, safely eject the USB drive
from the Windows machine. You can now use the USB device to boot into Kali
Linux.
Kali Linux Live USB Persistence
1.
Image the Kali Linux ISO to your USB stick. We
used the “Linux Method” and dd.
dd if=kali-linux-1.0.7-amd64.iso of=/dev/sdb bs=1M
2. Create and format an additional partition on the USB
stick. In our example, we create a 5 GB persistent partition and create a persistence.conf file
on it.
size=5gb
read bytes _ < <(du -bcm kali-linux-1.0.7-amd64.iso |tail -1); echo $bytes
parted /dev/sdb mkpart primary $bytes $size
mkfs.ext3 -L persistence /dev/sdb2
e2label /dev/sdb2 persistence
mkdir -p /mnt/my_usb
mount /dev/sdb2 /mnt/my_usb
read bytes _ < <(du -bcm kali-linux-1.0.7-amd64.iso |tail -1); echo $bytes
parted /dev/sdb mkpart primary $bytes $size
mkfs.ext3 -L persistence /dev/sdb2
e2label /dev/sdb2 persistence
mkdir -p /mnt/my_usb
mount /dev/sdb2 /mnt/my_usb
0 comments:
Post a Comment