User Tools

Site Tools


harddrive_setup

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
harddrive_setup [2011/04/09 19:24] 192.168.2.30harddrive_setup [2021/02/01 05:55] (current) – external edit 127.0.0.1
Line 29: Line 29:
  
   mdadm --readwrite /dev/md/md0    mdadm --readwrite /dev/md/md0 
 +  
 +  * Update /etc/mdadm/mdadm.conf
 +
 +  mdadm --examine --scan >> /etc/mdadm/mdadm.conf
  
   * Create an LVM2 logical block device on top of this RAID:   * Create an LVM2 logical block device on top of this RAID:
  
-  pgcreate /dev/md/md0 +  pvcreate /dev/md/md0 
-  vgcreate soulrebel /dev/md/md0 +  vgcreate test /dev/md/md0 
-  lvcreate -l 100%VG -n root soulrebel+  lvcreate -l 100%VG -n root test
  
   * Create a dm-crypt on top of the LVM:   * Create a dm-crypt on top of the LVM:
 +
 +  modprobe sha512_generic
 +  modprobe aes_generic
 +  modprobe aes-x86_64
 +  cryptsetup -y luksFormat /dev/test/root -c aes-xts-plain64 -s 512
 +
 +  * Activate dm-crypt:
 +
 +  cryptsetup luksOpen /dev/mapper/test-root test-root_crypt
 +
 +  * Create ext4 partition:
 +
 +  mkfs.ext4 /dev/mapper/test-root_crypt
 +
 +
 +In this moment the disk is ready for installing software on it. What I'm trying to do is to copy my old harddrive installation into this new system. I will probably copy this using rsync, but first I want to check if the ext4 filesystem can be seen by grub2. I plan to test this from the grub console on my currently running system.
 +
 +===== Important commands =====
 +
 +blkid - lists uuids of block devices, could be useful for configuring grub.
 +grub-mkdevicemap - could be necessary if you add more harddrives and want to install grub in the new harddrives.
  
  
  
      
harddrive_setup.1302377084.txt.gz · Last modified: 2021/02/01 05:55 (external edit)