Skip to main content

HD CLONE ... hand made| fatto a manooooo

It's possible, but like the others have said, it involves more work. You need to set up a master boot record (MBR) to boot the disk, and set up the Windows boot loader to boot from that disk, using BCDEdit. It's by no means difficult, but you need to know what you're doing.


If you want to try it, follow these steps:

  1. Set up the partition scheme you want. (Edit: Don't forget to mark the boot partition as active!)
  2. Run BootSect.exe on the new hard disk. I think the program can be found in C:\Boot\BootSect.exe. Let's say your new drive (as an external drive at the moment) shows up as E: on your computer; type this into the command prompt:

3.  C:\Boot\BootSect.exe /nt60 /mbr E:

Be especially careful to not accidentally do this to other drives!

  1. Now copy all the files over to the new drive (E:), ensuring that you also copy hidden and system files.
  2. Now use BCDEdit to fix the device and osdevice members of the E:\Boot\BCD file. You need to type in something like:

6.  BCDEdit /store E:\Boot\BCD

7.  Echo  Your boot entries are now printed. Copy the correct GUID.

8.  BCDEdit /store E:\Boot\BCD /set {YOUR-GUID}   device partition=E:

9.  BCDEdit /store E:\Boot\BCD /set {YOUR-GUID} osdevice partition=E:

Your volume should now be bootable.

Comments

Popular posts from this blog

Word2vec - Sentiment Analysis

Word2vec è un modello (evoluzione Doc2vec) https://sourcedexter.com/tensorflow-text-classification/ https://github.com/tflearn/tflearn Vector space models   (VSMs) represent (embed) words in a continuous vector space where semantically similar words are mapped to nearby points ('are embedded nearby each other') Word2vec is a particularly computationally-efficient predictive model for learning word embeddings from raw text. It comes in two flavors, the Continuous Bag-of-Words model (CBOW) and the Skip-Gram model (Section 3.1 and 3.2 in   Mikolov et al. ) Skip Gram Model http://mccormickml.com/2016/04/19/word2vec-tutorial-the-skip-gram-model/ Bag-Of-Words Model https://ongspxm.github.io/blog/2014/12/bag-of-words-natural-language-processing/ Il modello è semplice perchè usa un trucco del auto-encoder l'output layer fa deve ritornare la stessa cosa dell'input (apprendimento supervisionato anche se non si hanno le label) poi si rimuove il livello di output e si ottengono i p...
Pastorella di Natale fatta con rotolo di carta igienica pallina da ping pony per il presepe dell'asilo.

Monitor in tempo reale - Prometheus ed altri oggetti.

Prometheus - Monitoring Tool - Centos7 Installazione di Prometheus Alertmonitor Grafana Node-exporter con docker come servizio e cartelle montate localmente per mantenere le configurazioni ed i dati dei servizi. La configurazione comprende anche l'uso di Telegram per le notifiche Azioni Prerequisiti (Docker Docker-Composer) Installazione immagini (Docker Pull) Configurazione avvio immagini Configurazione servizi Configurazione avvio servizi Test (configurazione ed architettura) Prerequisiti docker docker-compose Riferimenti installazione e configurazione di sistema https://www.digitalocean.com/community/tutorials/how-to-install-prometheus-using-docker-on-centos-7 http://www.tutorialspoint.com/articles/how-to-install-and-configure-prometheus-using-docker-on-centos-7 https://www.shellhacks.com/prometheus-monitoring-install-docker-ubuntu-centos/ regole di alert e queryper Prometheus https://awesome-prometheus-alerts.grep.to/rules.html https://www.fabernov...