Difference between revisions of "LVM: mount dari usb harddisk"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "Sumber: http://www.tuxradar.com/answers/296 Mount LVM partitions from an external hard drive Q Is it possible, and if so how, to mount LVM partitions from an external hard...") |
Onnowpurbo (talk | contribs) |
||
| Line 1: | Line 1: | ||
Sumber: http://www.tuxradar.com/answers/296 | Sumber: http://www.tuxradar.com/answers/296 | ||
| + | apt-get install lvm2 | ||
| − | + | fdisk -lu | |
| − | |||
| − | + | pvscan | |
| − | |||
| − | |||
| − | + | vgscan | |
| + | |||
| + | |||
| + | vgchange -a y | ||
| + | |||
| + | |||
| + | |||
| + | lvscan | ||
| + | |||
| + | ACTIVE ‘/dev/VolGroup00/LogVol00’ [72.44 GB] inherit | ||
| + | ACTIVE ‘/dev/VolGroup00/LogVol01’ [1.94 GB] inherit | ||
| + | |||
| + | |||
| + | mount /dev/VolGroup00/LogVol00 /mnt | ||
| + | |||
| − | |||
| Line 23: | Line 34: | ||
* http://www.tuxradar.com/answers/296 | * http://www.tuxradar.com/answers/296 | ||
| + | * https://quonn.wordpress.com/2010/12/01/how-to-mount-lvm-partition-on-ubuntu/ | ||
Latest revision as of 10:22, 23 July 2017
Sumber: http://www.tuxradar.com/answers/296
apt-get install lvm2
fdisk -lu
pvscan
vgscan
vgchange -a y
lvscan
ACTIVE ‘/dev/VolGroup00/LogVol00’ [72.44 GB] inherit ACTIVE ‘/dev/VolGroup00/LogVol01’ [1.94 GB] inherit
mount /dev/VolGroup00/LogVol00 /mnt