não pode inicializar no windows 8 depois de instalar o kali

1

tem o windows 8 no meu disco rígido e eu instalei o Kali em um disco com pen drive (não ao vivo). depois de instalar eu não podia inicializar no windows i-instalado Kali mas grub ainda é o meu carregador de boot e ele não detecta o windows 8 .. eu já tentei reparo de inicialização, mas ainda não consegui resolver o problema, eles me deram este link < um href="http://paste.ubuntu.com/9582142/"> link que tem informações de inicialização do meu PC ... por favor me ajude eu sou um novato e lutando desde muitos dias

    
por Siddarth G 20.12.2014 / 20:32

2 respostas

1

sda aparentemente é seu HD? Parece que tudo está todo formatado como ext4 (linux) com o Kali GNU / Linux 1.0.9, mais uma pequena partição de swap do Linux. E sdb é uma unidade de 8GB (provavelmente usb) com o Ubuntu (syslinux)?

Você tem outro HD com janelas? Ou se sda for seu único HD, o Windows nunca instalaria em um sistema de arquivos ext4, parece que se o Windows já estava em sda, ele foi embora .

Há uma chance de você ser capaz de recuperar alguns dos arquivos que costumavam estar no HD com uma ferramenta como testdisk ou photorec , talvez até recuperar algumas partições, mas eu Acho que Kali substituiu uma parte significativa do Windows. - A menos que houvesse uma partição de recuperação do Windows no início da unidade e apenas fosse sobrescrita por Kali, a partição "real" do Windows poderia estar lá ainda.

Informações coladas relevantes:

sda1:

por 20.12.2014 / 21:23
0

Para a inicialização do Windows, vá pela BIOS de sequência - > MBR (Master Boot Record no HDD) - > Registro de inicialização de partição - > BCD - > OS

O GRUB geralmente é instalado no MBR ou na inicialização da partição, portanto, você pode restaurar o MBR e o registro de inicialização da partição para eliminar o GRUB e restaurar a inicialização do Windows.

Tente este procedimento para restaurar ( link )

Se você já tentou "bootrec / FixBoot" certifique-se de fazer "bootrec / FixMbr"

Boot from the original installation DVD (or the recovery USB)
At the Welcome screen, click Repair your computer

Windows 8 Repair Your Computer Menu
Choose Troubleshoot
Choose Command Prompt
When the Command Prompt loads, type the following commands:

bootrec /FixMbr
bootrec /FixBoot
bootrec /ScanOs
bootrec /RebuildBcd

Press Enter after each command and wait for each operation to finish
Remove the DVD from the disk tray
Type exit
Hit Enter
Restart your computer and check if Windows 8/8.1 can now boot

If bootrec utility doesn’t fix your Windows 8/8.1, try following the next commands to fix the EFI bootloader of the Windows 8/8.1:

Boot from the installation DVD or the Windows 8 or Windows 8.1 recovery USB
Click Repair your computer
Choose Troubleshoot
Choose Command Prompt
Type these commands in order and hit Enter after each:

diskpart
sel disk 0
list vol

These commands will select the first disk of your computer and the list all the partitions available on that disk.
Check for the volume item that has the Fs column FAT32. The EFI partition must be formatted under FAT32.
If the volume number of EFI partition is “2”, type the following command:

sel vol 2

If the volume number is different than 2, replace “2” with the number available on your computer.
Assign a letter to this partition, a letter that is different that those already available on your computer, for example x:\. Type this command to assign the letter:

assign letter=x:

Wait for the success message to appear:

DiskPart successfully assigned the drive letter or mount point.

Type exit to quit the DiskPart utility:

exit

Type this command and replace x:\ with the letter you assigned earlier to the EFI partition:

cd /d x:\EFI\Microsoft\Boot\

Then type the bootrec command to repair the volume:

bootrec /fixboot

Now you need to backup the old BCD and recreate a new one. Type:

ren BCD BCD.backup

Type this command to recreate the BCD and replace the x:\ with the assigned letter earlier:

bcdboot c:\Windows /l en-us /s x: /f ALL

In above command, Windows is installed on c:\. If the drive letter where your Windows 8/8.1 is installed is different, replace c:\ with your drive letter.
Remove the DVD from the disk tray
Type exit
Restart your computer

"bootrec / FixMbr" e "bootrec / FixBoot" definitivamente substituem os registros de inicialização do GRUB pelo Windows e o suficiente para ganhar 7 ou mais, mas eu não tenho muita experiência com o EFI.

Upd.

Eu olho para o seu botinfo. Parece que não há partição do windows, ntfs ou FAT32 no HDD (sda). Você instalou o Kali no disco rígido e o formatou.

    
por 20.12.2014 / 20:45

Tags