विभाजन और फाइल कॉपी - दौड़ते समय
मैंने इसे रनिंग सिस्टम से शुरू किया था। मैंने नए एसएसडी को एक यूएसबी एसएटीए एडाप्टर में प्लग किया और इसे विभाजित किया, एलवीएम स्थापित किया और फाइलों को कॉपी किया।
# confirm disk size is as expected for sdc
sudo fdisk -l /dev/sdc
# now partition - 500 MB partition as boot, the rest as a single (logical) partition
sudo cfdisk /dev/sdc
आपकी डिस्क अब दिखनी चाहिए:
sudo fdisk -l /dev/sdc
Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sda1 * 63 979964 489951 83 Linux
/dev/sda2 979965 234441647 116730841+ 5 Extended
/dev/sda5 980028 234441647 116730810 82 Linux swap / Solaris
अगला कदम एन्क्रिप्शन के ऊपर विभाजन और LVM पर एन्क्रिप्शन रखना है।
sudo cryptsetup -y luksFormat /dev/sdc5
sudo cryptsetup luksOpen /dev/sdc5 crypt
sudo vgcreate crypt-lvm /dev/mapper/crypt
sudo lvcreate -L4G -nswap crypt-lvm
sudo lvcreate -l100%FREE -nroot crypt-lvm
अब फाइलसिस्टम बनाएं और उन्हें माउंट करें और अपने सिस्टम को कॉपी करें।
sudo mkfs.ext2 /dev/sdc1
# you do ls /dev/mapper to check the name if different
sudo mkfs.ext4 /dev/mapper/crypt-root
sudo mkdir /mnt/boot
sudo mkdir /mnt/root
sudo mount -t ext2 /dev/sdc1 /mnt/boot
sudo mount -t ext4 /dev/mapper/crypt-root /mnt/root
# rsync files
sudo rsync -a /boot/* /mnt/boot/
sudo rsync -aHAX --devices --specials --delete --one-file-system --exclude proc --exclude run --exclude boot --exclude sys --exclude tmp /* /mnt/root/
इस बिंदु तक आप सिस्टम को चालू रख सकते हैं और इसका उपयोग कर सकते हैं। अब आपको एक लाइव सीडी / यूएसबी में शटडाउन और बूट करने की आवश्यकता है ताकि आप सिस्टम को शटडाउन स्थिति में प्राप्त कर सकें।
विभाजन और फाइल कॉपी - लाइव सीडी / यूएसबी
एक बार बूट करने के बाद, एक टर्मिनल खोलें और:
sudo apt-get install lvm2
# mount old hard drive
sudo cryptsetup luksOpen /dev/sda5 sda5_crypt
sudo mkdir /mnt/sdaroot
# you can do ls /dev/mapper to check the name if it is different
sudo mount -t ext4 /dev/mapper/sda5_crypt--root /mnt/sdaroot
# mount new hard drive (over USB)
sudo cryptsetup luksOpen /dev/sdc5 sdc5_crypt
sudo mkdir /mnt/sdcroot
sudo mount -t ext4 /dev/mapper/sdc5_crypt--root /mnt/sdcroot
# final rsync
sudo rsync -aHAX --devices --specials --delete --one-file-system --exclude proc --exclude run --exclude boot --exclude sys --exclude tmp /mnt/sdaroot/* /mnt/sdcroot/
chroot
# prepare chroot
cd /mnt/sdcroot
sudo mkdir boot
# these directories are set up by the system and we need them inside the chroot
sudo mount -t proc proc /mnt/sdcroot/proc
sudo mount -t sysfs sys /mnt/sdcroot/sys
sudo mount -o bind /dev /mnt/sdcroot/dev
# now enter the chroot
sudo chroot /mnt/root/
यूयूआईडी को बदलना
अब हम चेरोट के अंदर जड़ हैं और निम्नलिखित कमांड चलाते हैं:
# inside chroot, as root
mount -t ext2 /dev/sdc1 /boot
blkid
अब आप सिस्टम में विभिन्न डिस्क के लिए सभी यूयूआईडी देखेंगे । आपको UUIDs को संपादित करना होगा /etc/fstab
और इसके /etc/crypttab
लिए मूल्यों का मिलान करना होगा/dev/sdc?
में /etc/fstab
आप बूट डिस्क के लिए UUID उपयोग करने की आवश्यकता - /dev/sdc1
अगर आपके डिस्क मुझे के रूप में ही पत्र है।
में /etc/crypttab
- यदि आप अन्य (बड़ा) विभाजन के लिए UUID उपयोग करने की आवश्यकता /dev/sdc5
है, तो आपके डिस्क मुझे के रूप में ही पत्र है।
initramfs और ग्रब
# now update initramfs for all installed kernels
update-initramfs -u -k all
# install grub and ensure it is up to date
grub-install /dev/sdc # NOTE sdc NOT sdc1
update-grub
# hit Ctrl-D to exit chroot
sudo umount /mnt/root
अब शटडाउन करें, अपने लैपटॉप के अंदर एसएसडी रखें, अपनी उंगलियों को पार करें और बूट करें।
उपयोगी कड़ियाँ
Http://www.debian-administration.org/articles/577 पर cryptsetup सामान के लिए अच्छा मार्गदर्शक
बाहरी विभाजन पर ग्रब स्थापित करने के लिए: /programming/247030/how-to-set-up-grub-in-a-cloned-hard-disk
https://help.ubuntu.com/community/UsingUUID