3

Ive been running a brute force program on kali linux virtual machine which was using multi threading by sending Hundreds of requests per 10 seconds 24/7 my laptop overheated and shut down and now my kali linux vm wont boot up something got broken heres a screenshot help please

Comments
  • 7
    So, have you done a manual fsck?
  • 1
    @bahua dont evsn know what that is an how to do it
  • 2
    "fsck"
  • 6
    @SukMikeHok

    It should give you a chance to get an interactive prompt, usually by hitting ctrl-d, and once you're at that prompt, you can type:

    fsck /dev/sda1

    It will probably give you a series-- possibly hundreds --of y/n prompts to fix something. Just hit y on them, and unless your hard drive is completely ruined, you should come out fine.
  • 1
    Your hdd or USB is corrupted. Fix it with fsck
  • 0
    If it's a VM delete the virtual hard disk and make another one
  • 0
    the journal got fucked
  • 6
    How about you READ the fucking error message and just do what it says?
  • 3
    The "RUN fsck MANUALLY" part is probably what threw you off...

    Dude, it's linux. It usually does its best to tell/explain you what got fucked up and how to fix it.

    Either hit ctrl+d and follow instructions to get root shell, or reboot into live environment [from usb] and fsck [FileSystemChecK] your /dev/sd* devices as root [´fsck /dev/sd*´]
  • 1
    `fsck /dev/sda1` and you're good to go.
  • 0
    Just fsck it
  • 1
    >RUN fsck MANUALLY
    >what do help plz

    do

    do people not read crash screens?
  • 0
    Also, clean your cooling fans and make sure the vents are clear. Heat kills electronics; it will melt the solder from the components.
  • 1
    @bahua damn ty that worked

    Why did that happen tho?
  • 1
    @SukMikeHok

    Some... less capable filesystems are more prone to issues like this, and require primitive measures like this to be recovered. It boggles my mind that ext4 is still the default FS on most major distros. It's super shitty.
  • 0
    @bahua what's your favorite fs then?
  • 1
    @erandria

    I recommend xfs for simplicity, stability, performance, and not having to have any knowledge to benefit from it.

    I recommend btrfs to people who want to tinker.
Add Comment