Created
October 1, 2023 21:58
-
-
Save practicalli-johnny/c1aaaf8a48034eb7162c8e6c4c864971 to your computer and use it in GitHub Desktop.
Access Linux LVM2 Encrypted disk from Ubuntu Live ISO
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Access encrypted LVM2 partition from Ubuntu Live ISO image | |
# Reference: https://askubuntu.com/questions/63594/mount-encrypted-volumes-from-command-line | |
# Use gparted to unencrypt the partition if required (right click on the partition name) | |
# Install the Lvm package (usually included inthe live USB image) | |
sudo apt-get install lvm2 | |
# verify the LVM partitions are detected | |
sudo pvscan | |
# Scan for LVM Volume Group(s) | |
sudo vgscan | |
# Activate LVM Volume Groups | |
sudo vgchange -ay | |
# Scans for available Logical Volumes | |
sudo lvscan | |
# Mount a partition to be able to read its contents | |
$ sudo mount /dev/VolGroup00-name/LogVol00-name /mnt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment