Tonights journy was to install the Spin, and see if I could gain access to my Laptops HDD.
It was a success.
Now to tell you how I did it. While this may seem failry basic it took arround 2hr to complet this taks (this includes 30 min to download and install the spin).
Once I became familuar with the spin I began trying to mount my HDD (sda).
A fairly simply task (for my boot partition)
mount /dev/sda1 /media
I unmount the partition here (so that I can use media as a general mount point).
- I use LUX to encrypt this partition
- I use LVM to further partition this block partition.
cryptsetup luksOpen /dev/sda2 drive
Enter passphrase for /dev/sda2:
What this command does is provides me an LVM mapping for sda2 to /dev/mapper/drive. With this complete I can then scan all of the drives on the system and provide LVM mappings for each of the LVM partitions.
vgscanFollowinig these commands you simply mount the partitions from your LVM voulum group just like you would any regular partition.
vgchange -ay VolGroup00
mount /dev/mapper/VolGroup00-root /media/As I stated at the begining while not overly complicated if your unfamiluar with working with storage devices and LVM and LUKS this process can be fairly complicated and involved.
No comments:
Post a Comment