- 论坛徽章:
- 0
|
最初由 chenpager 发布
[B]1. Use ioscan -fnC disk to check your system config.
2. you may find some disks like :
/dev/dsk/c?t?d?
just keep your mind on those numbers behind letter \"d\", they are the scsi disk id, so choose your new SCSI disk id no conflict to your exist disks id.
3. shutdown server, install disk in your server.
4. Power on server, use ioscan -fnC disk to check your disk is already installed.
5. pvcreate /dev/rdsk/yourdisk(c?t?d?)
6. vgextend yourvgname younewpvname(/dev/dsk/c?t?d?)
7. if you have JFSonline, you may do
fsadm -F vxfs -b yourfilesystemsize /yourfilesystemmountpoint
8. Otherwise, you have to
umount /yourfilesystemmountpoint(shutdown your application first)
9. lvextend -L yourlvsize /dev/yourvgname/yourlvname /dev/dsk/c?t?d?
10. if your file system is HFS,
extendfs -F hfs /dev/yourvgname/ryourlvname
or if your file system is JFS
extendfs -F vxfs /dev/yourvgname/ryourlvname
11. mount your file system back.
12. bdf to check it. [/B]
谢谢你,写的真详细。有问题的话,我再向你请教。 |
|