- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Command to increase the size of the filesystem
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-05-2005 05:47 PM
06-05-2005 05:47 PM
What's the command to increase the size of the filesystem in HP. In AIX we use chfs command on the command line, what is it in HP-UX to increase it on the command line.
Cheers...
Raf
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2005 05:56 PM
06-05-2005 05:56 PM
Solutionhttp://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=868637
You have to use lvextend to exntend the size of logical volume.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2005 05:58 PM
06-05-2005 05:58 PM
Re: Command to increase the size of the filesystem
/* extend logical volume */
# lvextend -L
# umount /dev/vgxx/lvolxx
/* extend filesystem */
# extendfs /dev/vgxx/rlvolxx
# mount /dev/vgxx/lvolxx
With OnlineJFS the steps are following
# lvextend -L
# fsadm -b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2005 06:41 PM
06-05-2005 06:41 PM
Re: Command to increase the size of the filesystem
You need to check it first on your system whether you have an OnlineJFS or not. If you have this software, your life will be easier.
Check the document-ID : KBRC00003170 or at this url below :
http://www6.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000063201067
This document will give you the information about 'How to extend a filesystem using Online JFS, Base JFS or HFS'.
If you dont have OnlineJFS file system; to extend / and /stand file system, you need to use Ignite/UX for this purpose. Since these file system in continous file system.
Hope this information can help you.
Cheers,
AW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2005 06:45 PM
06-05-2005 06:45 PM
Re: Command to increase the size of the filesystem
i think u should first look at the points u have assigned. 2 out of 51 (and counting) is not good.
show your appreciation to those who have assisted u in finding your answers.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2005 11:56 AM
06-06-2005 11:56 AM
Re: Command to increase the size of the filesystem
Thanks a lot to all of you to assist me, I had to leave early from work other day, had an appointment at the dentist.
I will follow your instructions and will get back to you. I'm pretty sure that the info you all have provided would be enough to sort it out.
Thanks a million.
Regards,
Raf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2005 01:45 PM
06-06-2005 01:45 PM
Re: Command to increase the size of the filesystem
1,check current size
#bdf /tmp
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol8 159744 139194 19624 88% /tmp
2, Extend the logical volume to 256MB:
#lvextend -L 256 /dev/vg00/lvol8
3. Extend the filesystem:
#fsadm -b 256M /tmp
that's ALL
HTH
tienna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2005 02:08 PM
06-06-2005 02:08 PM
Re: Command to increase the size of the filesystem
Thanks to and everyone else for providing such a good support and help...