- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extension of VXFS File System
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
06-21-2005 12:57 AM
06-21-2005 12:57 AM
Extension of VXFS File System
I wanna know how to extend a VXFS File system online ? I'm using HP-UX 11i v1 OS and online JFS is installed
Thnx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 01:05 AM
06-21-2005 01:05 AM
Re: Extension of VXFS File System
lvextend the logical volume
umount the filesystem
extendfs the filesystem.
Since you have OnlineJFS you can skip the umount and use fsadm to extend the filesystem while its in use.
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
06-21-2005 01:06 AM
06-21-2005 01:06 AM
Re: Extension of VXFS File System
1. extend you logical volumen
lvextend -L size_in_MB lvol_name
ex: lvextedn -L 1000 /dev/vgtest/lvol1
2. extend you fs using fsadm command
ex:
fsadm -F vxfs -b $((1024*size_in_MB)) /mount_point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 01:07 AM
06-21-2005 01:07 AM
Re: Extension of VXFS File System
lvextend -L "new_size_in_MB" /dev/vgxx/lvolx
fsadm -b "size_in_mb" /dev/vgxx/lvolx or /FS_mount
bdf /FS
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 01:19 AM
06-21-2005 01:19 AM
Re: Extension of VXFS File System
The process posted above is perfect & you should not have any problems following the same.
Awarding a few points to the replies according to there relevance will be a nice thing for this forum.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 01:49 AM
06-21-2005 01:49 AM
Re: Extension of VXFS File System
vgdisplay -v vgXX
Then,
lvextend -L
fsadm -b
Example:
lvextend -L 4096 /dev/vg01/lvol1
fsadm -b 4096M /test
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 01:49 AM
06-21-2005 01:49 AM
Re: Extension of VXFS File System
JFS;
# umount
# lvextend â L
-L
# extendfs â F vxfs /dev/vgXX/rlvolX
# mount
Online JFS;
# lvextend â L
-L
# fsadm â F vxfs â b
-b
Also have a look this pd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2005 09:17 PM
06-22-2005 09:17 PM
Re: Extension of VXFS File System
#lvextend -L
#fsadm -F vxfs -b XXXXM /dev/vgXX/lvolXX
-F represents what filetype
-b represents the size
M represents 'Megabytes'
Example:
#fsadm -F vxfs -b 100M /dev/vg03/lvol02
This will extend lvol2 100 megabytes with a vxfs filetype
regards
Vinod k
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2005 04:21 AM
06-24-2005 04:21 AM