- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- File System in a VG
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2003 07:48 PM
04-24-2003 07:48 PM
File System in a VG
I have a file system in my vg03 that is about to get full.
I have a free disc available.
How can I use this free disc for the same file system?
regards...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2003 07:53 PM
04-24-2003 07:53 PM
Re: File System in a VG
1. pvcreate /dev/rdsk/xxxxxx
2. vgextend /dev/vg03 /dev/dsk/xxxx
3. lvextend /dev/vg03/lvol_to_be_extended.
4. umount the lvol
5. extendfs /dev/vg03/lvol.....
hth
-balaji
(hope vg03 is not mirrored)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2003 08:01 PM
04-24-2003 08:01 PM
Re: File System in a VG
before adding the disk check whether the parametere Max PE per PV and PE size.
this will determine what is the maximum size of the hard disk
that VG will support.
suppose Max PE per PV is 2500
and PE size is 4 ( default is 4 this can be also changed using vgcreate command).
then multiply both , Max size of the PV can be only 10GB.
if ur VG supports u can follow the above steps.
radhakrishnan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2003 08:03 PM
04-24-2003 08:03 PM
Re: File System in a VG
-Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2003 09:02 PM
04-24-2003 09:02 PM
Re: File System in a VG
Of the fs was set up continguous strict, you can't extend it unless its ajacent to the free space.
You can check it with
vgdisplay -v /dev/vg03 | more
If it was set up strict contiguous, you'll need to back it up remove it and put it back in according to the above instructions bigger and then restore the data.
Good Luck.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2003 09:17 PM
04-24-2003 09:17 PM
Re: File System in a VG
normally lvol1 and lvol2 under vg00 are contiguous and other lvol's under vg00 and other vg's are all vxfs or jfs
(fstyp /dev/vgxx/lvolx)
In your case insert the free disk to the system and after conforming that system is recognizing the disk drive (ioscan -fnC disk)
#pvcreate -f /dev/rdsk/cxtxdx
(cxtxdx is the free disk)
#vgextend /dev/vg03 /dev/dsk/cxtxdx
Now you can create any new lvol's or can extend the existing lvol's under vg03
(lvcreate, lvextend)