![]() |
Linux Lite Laptop with RAID (part 2) - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Tutorials (https://www.linuxliteos.com/forums/forumdisplay.php?fid=21) +--- Thread: Linux Lite Laptop with RAID (part 2) (/showthread.php?tid=5579) |
Linux Lite Laptop with RAID (part 2) - kpanic - 09-09-2018 ... from part 1: Always start console (if it's not yet open) and command Code: sudo su Next we need a new partition to the other hard drive too, so you may use the instructions from part 1 to create a similar (mirror) partition to the primary hard drive (the order in which you make these does not matter, you may partition in vice versa order too). So, if you used 'sdb' like in part 1, then use 'sda' with same instructions. Once more, if you don't have enough space to add a new partition of the same size to both hard drives ('sda' in this case), let it be. Once you have two partitions of the same size on both hard drives, then you may proceed to create a RAID1 set out of them: Use gdisk to check the numbers of the raid partitions on both drives: Code: gdisk /dev/sda Check the 'Number' field which has code 'fd00' and press 'q' and ENTER Same with the other drive: Code: gdisk /dev/sdb Once you have both numbers, write them down. Next, install 'mdadm' package: apt-get update && apt-get install mdadm of use: Start -> System -> Install / Remove Software (The package name is 'mdadm') Now you can create the RAID1 volume: Code: mdadm --create /dev/md0 --verbose --bitmap=internal --level=1 \ where X is the partition number you wrote down with your primary hard drive (sda) and Y is the number of the other partition on the other drive (sdb). So, /dev/sdaX and /dev/sdaY are actually the partition devices which has been marked as 'Linux RAID' or 'fd00' code. After the command, it usually takes 10 min+ to the RAID device /dev/md0 to be ready. You may check the progress by commanding: Code: cat /proc/mdstat To be continued in part 3.... Re: Linux Lite Laptop with RAID (part 2) - Valtam - 09-10-2018 Nice series ![]() Re: Linux Lite Laptop with RAID (part 2) - kpanic - 09-13-2018 (09-10-2018, 06:46 AM)Jerry link Wrote: Nice series Thx! I try to write the final chapter soon. How many people actually run RAID on their laptops? My guess is 0.01%, and that must be overestimated ![]() |