我有一台装有 Windows 10 的戴尔 Inspiron 灵越 15-i7559 笔记本电脑。我刚刚按照这个youtube 视频做了一个磁盘克隆(包括所有操作系统和文件)。克隆是用 Macrium Reflect 完成的。磁盘克隆后,我必须使用使用 Macrium Reflect 创建的救援磁盘(USB 密钥)启动我的笔记本电脑。在视频中,它说在重新启动时按 F12 键以显示此菜单并选择第二个选项(它显示 CD,但也可能是 USB):
但是当我按 F12 键时,什么也没有发生。基本上,我在 BIOS 中寻找 UEFI 引导选项,但找不到boot with my USB key
. 启动选项没有显示我可以使用我的 USB 密钥。我做了一些研究,也许我可以禁用secure boot
能够从我的 USB 密钥中的应急媒体启动的选项,当我尝试关闭该设置时,它会给我一条警告消息“您可能需要重新安装您的操作系统系统...`. 如何使用 USB 密钥进行一次性启动并完成磁盘克隆的最后一步?
Edit: I found out the true problem with my laptop: There was a bug with Dell on their BIOS. Normally the Dell logo would show up during startup. But this bug makes it unable to show, thus unable to access the boot options. I did reset my BIOS cell clock by unplugging it and replugging it. Then I could achieve the one-time boot menu by pressing F12 during startup.
I haven't followed this youtube video, but it must be doing it wrong. Successful cloning should mean that you could physically replace the old disk with the new one, and after boot everything will work exactly as before. No boot from removable media should be necessary,
If you wish to use Macrium Reflect, you could instead study the official video found at their website in Cloning a disk using Macrium Reflect 7. An article detailing the same method, with screenshots, can be found at How to clone your PC hard drive using Macrium Reflect.
If you still have problems, you could try another product, for example the free AOMEI Backupper Freeware. The Cloning method is described in an AOMEI article, with screenshots.
This behavior is similar with that you change the EFI boot to UEFI after cloned your disk (please, give me feedback if it´s right); if this right, please, try change your setup from UEFI to EFI (or Legacy) and renew the usb steps.
One of the reasons I remember of USB not showing up it could be:
4GB is the fail safe here, and notice that not all USB models are meant for booting.
I know that once or twice deactivating Secure Boot may help install Ubuntu, or do other tricks but that's it. I still don't believe is the problem here.
Simply as it is, your UEFI isn't compatible with doing such things. For this reason I always tested my pen drive with multiple machines.
Make sure you USB installation was meant for UEFI, try to change
Boot list
toNormal Boot
and see if your USB driver appears, (make few reboot attempts). If it shows up is because it was configured forNormal Boot
.And it's strange that is says that if you deactivate Secure Boot you may need to reinstall Windows. It could be new type of computers or am I getting too old? Sometimes it would say such things but nothing will happens at the end, it depends and I wouldn't be risking if you don't have a backup plan.
First, a few things to keep track of.
Disks (harddrive, SSD or USB) can be partitioned in a few different ways. MBR (Master Boot Record) was the most common way until Windows 7, currently GPT (GUID Partition Table) is the most common.
UEFI boot requires GPT. UEFI can boot MBR disks but needs a special compatibility mode often called CSM (Compatibility Select Modules) or sometimes just "Legacy boot".
If you are not sure which partition type your drive has then you can check from a working computer or install disk using the diskpart tool. Open CMD and type "diskpart" and press Enter, then type "list disk" and press Enter. The right most column shows if the disk is GPT.
Now, about cloning. A few things are worth mentioning. Automated cloning tools are good but make sure it is a tool that can clone a system drive. Some can only clone data partitions and skip the actual boot partition.
A good tip is that many storage drive vendors have cloning tools for free on their websites. Just make sure at least one of your drives is from that vendor.
Fast startup which is a feature in Windows 10 can cause trouble when booting cloned drives so turn it off before cloning. Or at least hold Shift while restarting Windows 10 to temporarily disable it once. When your computer has booted up it will be on again.
Sometimes you need to recreate the boot partition after cloning if the cloning software messed it up. Create a FAT32 partition of at least 500MB, preferably at the very beginning of the drive. Assign a drive letter (V in my example) using the diskpart tool in CMD.
Boot a Windows install disk and press Shift+F10 to open up CMD. You may need to click Next a few times before Shift+F10 will work. Then:
the above list of commands assume that you have one drive and that the boot partition is the first one.
Now you need to run the bootsect command: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/bootsect-command-line-options
Usually something like this:
Note the V: for the drive letter you set earlier using diskpart.
To add your Windows partition to the new boot list use BCDBoot: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/bcdboot-command-line-options-techref-di
Once again the V: depends on if you followed the previous instructions. Also note that if you run this command from a Windows install media then the Windows drive may not be C:
An optional way to rebuild the BCDstore is this: https://support.microsoft.com/en-us/topic/use-bootrec-exe-in-the-windows-re-to-troubleshoot-startup-issues-902ebb04-daa3-4f90-579f-0fbf51f7dd5d
祝你好运!它有点混乱,但通常最终会到达那里。