HP-UNIX 建立檔案系統

531968912發表於2018-06-20
HP-UNIX 建立檔案系統
1.系統環境
# uname -a
HP-UX callcdb2 B.11.31 U ia64 
2.檢視VG組
# ll /dev/vg*/group
crw-r-----   1 root       sys         64 0x000000 Jun  9 12:13 /dev/vg00/group
3.建立物理卷
# pvcreate /dev/rdisk/disk162
Physical volume "/dev/rdisk/disk162" has been successfully created.
4.建立VG
4-1.建立VG組名
# mkdir /dev/vg_cdc
# ll /dev/vg*/group
crw-r-----   1 root       sys         64 0x000000 Jun  9 12:13 /dev/vg00/group
4-2.給與VG組唯一的0x010000
# mknod /dev/vg_cdc/group c 64 0x010000
#  ll /dev/vg*/group
crw-r-----   1 root       sys         64 0x000000 Jun  9 12:13 /dev/vg00/group
crw-r--r--   1 root       sys         64 0x010000 Aug 18 14:19 /dev/vg_cdc/group
4-3.建立VG組並寫入配置檔案
# vgcreate -s 32 /dev/vg_cdc /dev/disk/disk162
Increased the number of physical extents per physical volume to 1599.
Volume group "/dev/vg_cdc" has been successfully created.
Volume Group configuration for /dev/vg_cdc has been saved in /etc/lvmconf/vg_cdc.conf
5.建立LV並指定LV大小
# lvcreate -L 40000 -n lv_cdc  vg_cdc
Logical volume "/dev/vg_cdc/lv_cdc" has been successfully created with
character device "/dev/vg_cdc/rlv_cdc".
Logical volume "/dev/vg_cdc/lv_cdc" has been successfully extended.
Volume Group configuration for /dev/vg_cdc has been saved in /etc/lvmconf/vg_cdc.conf
6.格式化
# newfs -F vxfs -o largefiles /dev/vg_cdc/rlv_cdc
    version 7 layout
    40960000 sectors, 40960000 blocks of size 1024, log size 65536 blocks
    largefiles supported
7.建立掛載點
# mkdir /cdc
8.掛載
# mount /dev/vg_cdc/lv_cdc /cdc
附表
1.vgexport vg_cdc --刪除VG卷組
2.pvcreate -f  /dev/rdisk/disk162  --如果重新建立VG卷組的時候加F引數
3.vgchange -a n(y) vg_cdc    --停止或者啟用邏輯卷組。

換SAS卡、重啟後出現此問題。重新啟用邏輯卷組即可
vgdisplay: Volume group not activated.
vgdisplay: Cannot display volume group "/dev/vg_cdc".

解決方法:vgchange -a y /dev/vg_cdc

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25462274/viewspace-2156408/,如需轉載,請註明出處,否則將追究法律責任。

相關文章