tidak dapat boot ke windows 8 setelah menginstal kali


1

memiliki windows 8 di hard disk saya dan saya menginstal Kali pada disk drive pen (tidak hidup). setelah menginstal saya tidak bisa boot ke windows saya un-instal Kali tetapi grub masih boot loader saya dan tidak mendeteksi windows 8 .. saya sudah mencoba boot-perbaikan tetapi masih tidak bisa menyelesaikan masalah, mereka memberi saya tautan ini http : //paste.ubuntu.com/9582142/ yang memiliki info boot PC saya .. Tolong bantu saya seorang pemula dan berjuang dari banyak hari


Apakah Anda mencoba Sytem Restore menggunakan disk perbaikan?
Scorpion99

Jawaban:


1

sda apakah HD Anda? Sepertinya hampir semuanya diformat sebagai ext4 (linux) dengan Kali GNU / Linux 1.0.9, plus partisi swap linux kecil. Dan sdb adalah drive 8GB (mungkin usb) dengan Ubuntu (syslinux) di atasnya?

Apakah Anda memiliki HD dengan windows di atasnya? Atau jika sda adalah satu-satunya HD Anda, Windows tidak akan pernah menginstal ke sistem file ext4, tampaknya jika windows pernah menggunakan sda, sekarang sudah hilang .

Ada kemungkinan Anda dapat memulihkan beberapa file yang dulu ada di HD dengan alat seperti testdiskatau photorec, bahkan mungkin memulihkan beberapa partisi, tapi saya kira Kali menimpa sebagian besar Windows. - Kecuali ada partisi pemulihan windows di awal drive dan hanya itu yang ditimpa oleh Kali, maka partisi windows "nyata" mungkin sebagian besar masih ada.

Info yang disisipkan relevan:

sda1: __________________________________________________________________________

File system:       ext4
Boot sector type:  -
Boot sector info: 
Operating System:  Kali GNU/Linux 1.0.9 
Boot files:        /boot/grub/grub.cfg /etc/fstab 
                   /boot/extlinux/extlinux.conf /boot/grub/core.img

sdb1: __________________________________________________________________________

File system:       vfat
Boot sector type:  SYSLINUX 6.03 20140721... :..(:,:0:4:8:....D:H:L:C.T:C.\:`:d:C.l:p:t:x:|:.:.:.:.:.:.:.:.............
Boot sector info:  Syslinux looks at sector 1325354 of /dev/sdb1 for its 
                   second stage. SYSLINUX is installed in the  directory. 
                   No errors found in the Boot Parameter Block.
Operating System:  
Boot files:        /boot/grub/grub.cfg /syslinux.cfg /casper/vmlinuz.efi 
                   /EFI/BOOT/grubx64.efi /ldlinux.sys

Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1    *          2,048   609,277,951   609,275,904  83 Linux
/dev/sda2         609,279,998   625,141,759    15,861,762   5 Extended
/dev/sda5         609,280,000   625,141,759    15,861,760  82 Linux swap / Solaris

Model: ATA WDC WD3200BPVT-2 (scsi)
Disk /dev/sda: 320GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos

Number  Start   End    Size    Type      File system     Flags
1      1049kB  312GB  312GB   primary   ext4            boot
2      312GB   320GB  8121MB  extended
5      312GB   320GB  8121MB  logical   linux-swap(v1)

Model: Sony Storage Media (scsi)
Disk /dev/sdb: 7774MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
1      32.8kB  2988MB  2988MB  primary  fat32        boot
2      2988MB  3053MB  64.9MB  primary  fat16
3      3053MB  7773MB  4720MB  primary  fat32

0

Untuk boot windows, lakukan melalui urutan BIOS -> MBR (Master Boot Record on HDD) -> Partition Boot record -> BCD -> OS

GRUB biasanya dipasang di MBR, atau di Partition boot, jadi Anda harus mengembalikan MBR dan catatan boot partisi untuk menghilangkan GRUB dan mengembalikan boot Windows.

Coba prosedur ini untuk memulihkan ( https://neosmart.net/wiki/fix-mbr/#Fix_the_MBR_in_Windows_8_or_81 )

Jika Anda juga mencoba "bootrec / FixBoot", pastikan Anda melakukan "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" dan "bootrec / FixBoot" pasti menggantikan GRUB dengan catatan boot Windows dan cukup untuk win 7 dan yang lebih lama, tapi saya tidak punya banyak expirience dengan EFI.

Pembaruan.

Saya melihat botinfo Anda. Sepertinya tidak ada partisi windows, ntfs atau FAT32 pada HDD (sda). Anda menginstal Kali di hdd dan memformatnya.

Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.