1. 추가할 디스크 확인
# ioscan -funCdisk
# ioscan -funCdisk
Class I H/W Path Driver S/W State H/W Type Description
=================================================================================
disk 0 0/0/2/1.0.16.0.0 sdisk CLAIMED DEVICE TEAC DV-28E-N
/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0
disk 1 0/3/0/0/0/0.0.0 sdisk CLAIMED DEVICE HP LOGICAL VOLUME
/dev/dsk/c1t0d0 /dev/dsk/c1t0d0s2 /dev/rdsk/c1t0d0 /dev/rdsk/c1t0d0s2
/dev/dsk/c1t0d0s1 /dev/dsk/c1t0d0s3 /dev/rdsk/c1t0d0s1 /dev/rdsk/c1t0d0s3
disk 2 0/3/0/0/0/0.0.1 sdisk CLAIMED DEVICE HP LOGICAL VOLUME
/dev/dsk/c1t0d1 /dev/rdsk/c1t0d1
disk 3 0/3/0/0/0/0.0.2 sdisk CLAIMED DEVICE HP LOGICAL VOLUME
/dev/dsk/c1t0d2 /dev/rdsk/c1t0d2
-- 3번의 디스크를 추가해야 되는 상황이라면
-- Physical volume 생성
-- 주의사항 사용했던 디스크라면 # pvcreate -f /dev/rdsk/c1t0d2 새디크이면
# pvcreate /dev/rdsk/c1t0d2
Physical volume "/dev/rdsk/c1t0d2" has been successfully created.
2. 현재 디스크의 볼륨 구성 정보 확인
-- 주의사항 시스템 마다 다름
# strings /etc/lvmtab
/dev/vg00
/dev/dsk/c1t0d0s2
/dev/vg01
/dev/dsk/c1t0d1
3. 3번의 디스크를 vg02에 할당 할것이기 때문에 vg02생성
c : chracter device 파일
64 : lvm driver number # lsdev |grep -i lvm 으로 확인할수있음.
0x010000 : 여기서 01 이 볼륨그룹 number 로 생각하시면 됩니다.
16진수 hex code 로써 01~09, 0A, 0B~ 0F ~
사용할수있습니다. 물론 중복해서 사용할수가 없습니다. 볼륨 그룹을 구별하는 고유번호이기 때문입니다.
PE size 는 65535 개만 만들수있습니다. 4M 가일 경우 260G 정도 밖에 못만들기때문에 8M*65535로 하면 너큰 볼륨그룹을 만들수가 있는겁니다.
vgcreate 할때 -s 옵션을 사용함
( man vgcreate)
-s pe_size Sets the number of megabytes in each physical
extent, where pe_size is expressed in units
of megabytes (MB) in the range 1 to 256.
pe_size must be equal to a power of 2 (1, 2,
4, 8, etc.). The default value for pe_size
is 4 (four megabytes).
#mkdir /dev/vg02
#mknod /dev/vg02/group c 64 0x020000
#vgcreate -s 32 /dev/vg02 /dev/dsk/c1t0d2
Increased the number of physical extents per physical volume to 4374.
Volume group "/dev/vg02" has been successfully created.
Volume Group configuration for /dev/vg02 has been saved in /etc/lvmconf/vg02.conf
4. lvol을 만들기위해 구성정보확인
# vgdisplay -v vg02
--- Volume groups ---
VG Name /dev/vg02
VG Write Access read/write
VG Status available
Max LV 255
Cur LV 0
Open LV 0
Max PV 16
Cur PV 1
Act PV 1
Max PE per PV 4374
VGDA 2
PE Size (Mbytes) 32
Total PE 4373
Alloc PE 0
Free PE 4373
Total PVG 0
Total Spare PVs 0
Total Spare PVs in use 0
--- Physical volumes ---
PV Name /dev/dsk/c1t0d2
PV Status available
Total PE 4373
Free PE 4373
Autoswitch On
Proactive Polling On
5. lvol 생성( 아래의 옵션 -l 4373은 Free PE 사이즈인 4373, 즉. 3번 디스크 전체의 용량을 vg02에 할당하겠다는 뜻임)
( 아래의 옵션 -n lvol5는 lvol5의 이름으로 생성하겠다는 뜻임. 이옵션을 주지 않으면 lvol1로 생성)
#lvcreate -l 4373 -n lvol5 /dev/vg02
6. 파일시스템 생성
#newfs -F vxfs -o largefiles /dev/vg02/rlvol5
7. fstab 등록 및 마운트
# vi /etc/fstab
# System /etc/fstab file. Static information about the file systems
# See fstab(4) and sam(1M) for further details on configuring devices.
/dev/vg00/lvol3 / vxfs delaylog 0 1
/dev/vg00/lvol1 /stand vxfs tranflush 0 1
/dev/vg01/lvol4 /data1 vxfs delaylog 0 1
/dev/vg02/lvol5 /data2 vxfs delaylog 0 1
fstab 등록후
#mkdir /data2
#mount /data2
'hp-ux' 카테고리의 다른 글
vg export / vg import (0) | 2012.04.14 |
---|---|
hpux sshd EXIT CODE255 (0) | 2010.06.12 |
hpux sshd (0) | 2009.11.20 |
hp-ux 네트워크 설정 (1) | 2008.03.26 |
hp-ux 하드 디스크 추가하기 (0) | 2008.01.09 |