- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How increase a FS
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
05-20-2005 12:46 AM
05-20-2005 12:46 AM
Do i have to umount the FS before increasing the FS ?
Thanks for help.
Emmanuel
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 12:50 AM
05-20-2005 12:50 AM
SolutionIf you do not have Online JFS then:
1. Umount Filesystem
2. lvextend
3. extendfs
4. mount Filesystems
If it is Online JFS:
1. No need to unmount
2. Use lvextend
3. fsadm -b
Hope that helps.
Regards,
See man lvextend,extendfs and fsadm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 12:51 AM
05-20-2005 12:51 AM
Re: How increase a FS
# example lvextend -L 1028 /dev/vg02/lvol1 /dev/dsk/c1t1d0
then you have a choice.
If you have online JFS you can use fsadm to extend the FS without umounting the FS.
Otherwise you must umount the FS and use extendfs to extend the fs.
# example extendfs /dev/vg02/rlvol1
swlist -l product | grep -i online
That will show you if Online JFS is installed. Its a pay for add on product, so you probably already know.
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
05-20-2005 01:04 AM
05-20-2005 01:04 AM
Re: How increase a FS
>>>swlist -l product | grep -i online
OnlineJFS B.11.11 Online features of the VxFS File System
PHCO_25831 1.0 SCSI Ultra160 driver Online Addition script
I have the Online JSF installed. So i know what i have to do.
Thanks again.
Emmanuel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 09:12 PM
07-21-2005 09:12 PM
Re: How increase a FS
Thanks.