Eu tenho um laptop Dell Inspiron 15 - i7559 com windows 10. Acabei de fazer um clone de disco (incluindo todos os sistemas operacionais e arquivos) seguindo este vídeo do youtube . A clonagem foi feita com Macrium Reflect. Após a clonagem do disco, tenho que inicializar meu laptop usando o disco de recuperação (uma chave USB) criado com o Macrium Reflect. No vídeo, ele diz para pressionar a tecla F12 na reinicialização para que este menu apareça e selecione a segunda opção (ele mostra um CD, mas também pode ser um USB):
Mas quando eu pressiono a tecla F12, nada acontece. Basicamente, eu estava procurando a opção de inicialização UEFI no meu BIOS e não consegui encontrar a opção para boot with my USB key
. A opção de inicialização não mostra que posso usar minha chave USB. Eu fiz algumas pesquisas e talvez eu possa desativar secure boot
a opção para poder inicializar a partir da mídia de recuperação na minha chave USB e, quando tento desativar essa configuração, ela me dá uma mensagem de aviso "talvez seja necessário reinstalar seu sistema operacional ...`. Como uso a inicialização única com minha chave USB e concluo a última etapa da clonagem do meu disco?
Aqui estão minhas páginas de BIOS:
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
Boa sorte! É um pouco confuso, mas geralmente chega lá no final.