Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2044701
  • 博文数量: 519
  • 博客积分: 10070
  • 博客等级: 上将
  • 技术积分: 3985
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-29 14:05
个人简介

只问耕耘

文章分类

全部博文(519)

文章存档

2016年(1)

2013年(5)

2011年(46)

2010年(220)

2009年(51)

2008年(39)

2007年(141)

2006年(16)

我的朋友

分类:

2009-02-04 15:50:59

Question:
we have HP-UX 11.0(64-bit) installed on HP900(N4000) server. I want to increase the size of logical volume /dev/vg00/lvol9 (filesystem: /m01) to 3260M. This volume has mirrored copy on other disk. Here are the steps I am going to follow:
lvextend -L 3260 /dev/vg00/lvol9
unmount /m01
extendfs vxfs /dev/vg00/lvol9
mount /m01
please coreect me if I am missing anything.
 
Answer:
There are a couple of things that you may want to add to your procedure:
# fuser -k /m01
# umount /m01
# lvextend -L 3260 /dev/vg00/lvol9
# extendfs -F vxfs /dev/vg00/rlvol9
# mount /m01
The steps you were missing or incomplete were:
You need to kill all processes accessing any file mounted on /m01
You should unmount the filesystem before you extend it.
You need to make sure you use the RAW (character) device for the volume group in question.
I hope this helps.
阅读(735) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~