I am new to Kali Linux

Mayank tommy

New Member
Joined
Sep 21, 2021
Messages
1
Reaction score
0
Credits
11
Just downloaded usb
Bootable Kali Linux from official site
Flashed it in a usb drive
Booted it
Now stuck on this
 

Attachments

  • E839309E-9D93-4835-BBCF-7BFF993982AA.jpeg
    E839309E-9D93-4835-BBCF-7BFF993982AA.jpeg
    3.6 MB · Views: 264


Moved to the Kali sub-forum. Be aware that Kali isn't for new users. Learn to use Linux with a good distro and then learn to pen test with Kali.
 
Your grub is borked you need to reinstall the grub
To fix GRUB 2, you need an Kali Live USB from which you need to boot. Once you boot to the LIVE CD, open a terminal an and type these commands:
Firstly, you need to find out on which partition your Linux system is installed:
Code:
sudo fdisk -l
most of the time it is "sda1"
Now, we must mount that partition
Code:
sudo mount /dev/sda1 /mnt
Where "sda1" is the partition where you installed Kali (or any other Linux distro). It could be "sda5", "sda6", or whatever.
Install grub to the partition you've mounted:
Code:
sudo grub-install --root-directory=/mnt/ /dev/sda
Important: Please notice that it's "/dev/sda", not "/dev/sda1". "sda" is the hard disk on which your Linux distribution is installed!
Restart your computer. As previous Grub 2 entries are removed, run the following command to restore them:
Code:
sudo update-grub
 

Members online


Latest posts

Top