User Tools

Site Tools


lvm:mount_lvm_partition_from_usb

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
lvm:mount_lvm_partition_from_usb [2017/04/03 13:45] peterlvm:mount_lvm_partition_from_usb [2019/11/30 13:54] (current) – removed peter
Line 1: Line 1:
-====== LVM - Mount LVM partition from USB ====== 
- 
-Execute: 
- 
-<code bash> 
-vgscan 
-vgchange -a y 
-</code> 
- 
-as root and all the partitions should have devices created in the form /dev/volumegroup/logicalvolume, which you can then mount in the usual way: 
- 
-<code bash> 
-mount /dev/volumegroup/logicalvolume /mnt/somewhere 
-</code> 
- 
- 
-===== Extended Method ===== 
- 
-1. Boot from a live disk or USB. 
- 
- 
-2. Search for these tools: **lvm2**.  If not found then install it. 
- 
-<code bash> 
-apt-get install lvm2 
-</code> 
- 
- 
-<WRAP info> 
-**NOTE:**  Some command below may return with the following error after installing LVM2: 
- 
-<code> 
-/proc/misc: No entry for device-mapper found 
-Is device-mapper driver missing from kernel? 
-</code> 
- 
- 
-If so, then you load the **dm-mod** driver manually: 
- 
-<code bash> 
-modprobe dm-mod 
-</code> 
- 
-</WRAP> 
- 
- 
- 
-3. Make sure the harddisk is recognised. 
- 
-<code bash> 
-fdisk -lu 
-</code> 
- 
- 
-4. Run **pvscan** to scan all disks for physical volume.  This is to make sure your LVM harddisk is detected by Ubuntu. 
- 
-<code bash> 
-pvscan 
-</code> 
- 
-returns 
- 
-<code> 
-PV /dev/sda2 VG VolGroup00 lvm2 [74.41 GB / 32.00 MB free] 
-Total: 1 [74.41 GB] / in use: 1 [74.41 GB] / in no VG: 0 [0 ] 
-</code> 
- 
- 
-5. Run **vgscan** to scan disks for volume groups. 
- 
-<code bash> 
-vgscan 
-</code> 
- 
-returns 
- 
-<code> 
-Reading all physical volumes. This may take a while... 
-Found volume group "VolGroup00" using metadata type lvm2 
-</code> 
- 
- 
-6. Activate all volume groups available. 
- 
-<code bash> 
-vgchange -a y 
-</code> 
- 
-returns 
- 
-<code> 
-2 logical volume(s) in volume group "VolGroup00" now active 
-</code> 
- 
- 
-7. Run **lvscan** to scan all disks for logical volume.  You can see partitions inside the hard disk now active. 
- 
-<code bash> 
-lvscan 
-</code> 
- 
-returns 
- 
-<code> 
-ACTIVE '/dev/VolGroup00/LogVol00' [72.44 GB] inherit 
-ACTIVE '/dev/VolGroup00/LogVol01' [1.94 GB] inherit 
-</code> 
- 
- 
-8. Mount the partition to any directory you want, usually to /mnt 
- 
-<code bash> 
-mount /dev/VolGroup00/LogVol00 /mnt 
-</code> 
- 
- 
-9. Access the partition in the /mnt directory as required. 
  
lvm/mount_lvm_partition_from_usb.1491227116.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki