Install Kali Linux - Right from creating bootable USB drive to resolve wifi not connected issue post Kali installation
Table of Contents
Create a bootable USB pen drive
- Download the following files
- Open Rufus exe as Administrator
- Select the USB drive location
- Select the Kali ISO image
- Set Volume name - any name
- Click Start and set write mode as "DD" not "ISO" mode to avoid any installation error
Set up partition for Kali OS using Kali Live
You can use kali linux as live mode when you don't want to have a persistent install in your system. I would like to install it my PC in dual boot mode, So i can use GRUB bootloader to load kali or windows during system start
To install kali linux in your system, you need to partition your disk space, lets do that
- Insert USB drive and boot kali linux during system start up using boot using option
- Your default Kali linux username and password are 'root' and 'toor' respectively
- You can refer to the below link to proceed further
This will install Grub bootloader in your system, your next step is to set your PC use this option whenever system boots up
Configure bootloader in BIOS
To go to bootloader option - Press Shift key while click on 'restart' button
- Change the OS bootloader to use "Kali linux Grub Boot loader"
- Restart and check now
Resolve Locate packages not found issue
If you get error "E: Unable to locate package" try following the steps below
- Open sources.list file using this command - "leafpad /etc/apt/sources.list"
- Remove the existing content and replace it the following entries
- Copy the content from the Regular repositories & Sources repositories - Refer the link below
- Kali Repositories
- Save and exit the file
Now you should be able to install any packages if you want
Resolve Wifi adapter not detected issue
Check out the solution below only if your Wifi is not working
To resolve the wifi issue, execute the following commands
- Update the list of available packages. Install the relevant/latest linux-image, linux-headers and broadcom-sta-dkms packages:
- # apt-get update # apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms
- Unload conflicting modules:
- # modprobe -r b44 b43 b43legacy ssb brcmsmac bcma
- Load the wl module
- # modprobe wl
Restart your PC to see wifi option available in the menu.
Resolve Bluetooth working issue
Check out the solution below only if your bluetooth is not working
To resolve the bluetooth issue, go through this blog
Restart your PC to see Bluetooth is ON in the menu. Happy Pentesting!
Comments
Post a Comment