Skip to main content

How I cloned the 64Gb eMMC to a 256Gb M.2 SSD

Yesterday I installed an ADATA SP600 M.2 SSD in my LapBook. Fitted ok. and worked fine.
The ADATA SSD, when registered on their site, gets you a license for Acronis HD to clone the existing eMMC drive to the new SSD. But for some reason it wouldn’t work. It needs to restart the LapBook but then instead of loading Acronis it simply loads Windows again and nothing happens. (Later I noticed that Acronis creates some sort of UEFI partition called Acronis Loader. It appears it doesn’t set the boot priority in the LapBook EFI partition to it, so it won’t start. If you manually tell the BIOS to boot from that partition, it might work.)
Also (this version of) Acronis cannot move or resize partitions. The eMMC has a recovery partition as the last partition, this partition needs to be moved to the end of the new 256Gb. disk and the free extra space on that disk needs to be allocated to the C: partion. So I looked further for free tools to do this.
I used Macrium Free (version 6, do not download the > 800 Mb. Windows PE, you don’t need it) to clone the disk which makes a one-to-one clone of the 3 partitions on the eMMC (UEFI, Windows, Recovery) to the new SSD. Thereafter I could format the remaining space as drive D: to see whether this worked.
In the LapBook BIOS (hold Esc when booting to enter the BIOS) I disabled booting from the eMMC (and disabled booting from the Acronis Loader, see above) and it worked; the LapBook boots fine from the new SSD.
I then used “Aomei partition assistant” (also free) to move the recovery partition to the end of the SSD and resized C: to add all extra space (first delete partion D: to be able to add it to C:). That software rebooted the LapBook fine to do its business outside of Windows. Rebooted twice and then booted Windows from the SSD. Worked great.
As long as you don’t confuse source and destination there is no risk; you can always enable boot from the eMMC and try again.
I now have a 238 Gb. C: drive which is really fast (around 300 Mb./s write, 450 Mb./s read).
And a bonus is that the LapBook now has a second working Windows installation on the eMMC. Whenever for some reason the machine won’t boot from the SSD (when Microsoft screws up Windows after an update for instance), I can enable to boot from eMMC to get to my data or copy the working partition from eMMC to the SSD to be able to boot again.
The good news is also that Windows on the SSD stays activated since the license is in the BIOS I guess.
On a sidenote; I ordered two LapBook 14.1’s from Gearbest. The first one had the OOBE experience but the second one came with Windows preloaded with an ADMIJN account pre-configured. Weird. But at least it came with a legal version of Windows.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...