centos 에서 사용하던 하드를 다른 centos 서버로 옮기는 작업을 하였다.
# mount -t ext3 /dev/sdb1 /mnd/hdd
mount: you must specify the filesystem type
안된다. 뭔소린가 이것저것 찾아보니
기존 centos 에 장착되었던 하드가 LVM 볼륨으로 잡혀 있어 직접 마운트 하면 안되었었다.
LVM 볼륨은 좀 그지 같아서 다른 방식으로 마운트를 잡아야 된다.
우선 가상 볼륨의 이름을 확인한다.
# pvdisplay /dev/sdb1
--- Physical volume ---
PV Name /dev/sdb1
VG Name VolGroup01
...
해당 이름의 그룹을 활설화 시킨다.
# vgchange -a y VolGroup01
2 logical volume(s) in volume group "VolGroup01" now active
잘 등록되어있는지 확인한다.
# lvdisplay -v /dev/VolGroup01
--- Logical volume ---
LV Name /dev/VolGroup01/LogVol00
VG Name VolGroup01
LV UUID [숨김]
LV Write Access read/write
LV Status available
# open 0
LV Size 147.19 GB
Current LE 4710
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 253:2
--- Logical volume ---
LV Name /dev/VolGroup01/LogVol01
VG Name VolGroup01
LV UUID [숨김]
LV Write Access read/write
LV Status available
# open 0
LV Size 1.75 GB
Current LE 56
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 253:3
가상 볼륨을 마운트 한다.
# mount -t ext3 /dev/VolGroup01/LogVol00 /mnt/hdd
이럼 끝~~~
# mount -t ext3 /dev/sdb1 /mnd/hdd
mount: you must specify the filesystem type
안된다. 뭔소린가 이것저것 찾아보니
기존 centos 에 장착되었던 하드가 LVM 볼륨으로 잡혀 있어 직접 마운트 하면 안되었었다.
LVM 볼륨은 좀 그지 같아서 다른 방식으로 마운트를 잡아야 된다.
우선 가상 볼륨의 이름을 확인한다.
# pvdisplay /dev/sdb1
--- Physical volume ---
PV Name /dev/sdb1
VG Name VolGroup01
...
해당 이름의 그룹을 활설화 시킨다.
# vgchange -a y VolGroup01
2 logical volume(s) in volume group "VolGroup01" now active
잘 등록되어있는지 확인한다.
# lvdisplay -v /dev/VolGroup01
--- Logical volume ---
LV Name /dev/VolGroup01/LogVol00
VG Name VolGroup01
LV UUID [숨김]
LV Write Access read/write
LV Status available
# open 0
LV Size 147.19 GB
Current LE 4710
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 253:2
--- Logical volume ---
LV Name /dev/VolGroup01/LogVol01
VG Name VolGroup01
LV UUID [숨김]
LV Write Access read/write
LV Status available
# open 0
LV Size 1.75 GB
Current LE 56
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 253:3
가상 볼륨을 마운트 한다.
# mount -t ext3 /dev/VolGroup01/LogVol00 /mnt/hdd
이럼 끝~~~
반응형