- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Online JFS Question on HPUX v2 and V3
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
01-26-2012 06:34 AM
01-26-2012 06:34 AM
Online JFS Question on HPUX v2 and V3
Hello Forum,
After installing Online JFS on HPUX-V2, I tried to extend the /tmp up to 3 GB.(original size was 2GB)
There is a lot of free space on the disk.
However I am getting the below error:
# fsadm -F vxfs -b 3000000 /tmp
UX:vxfs fsadm: ERROR: V-3-25811: cannot expand /dev/vg00/rlvol4 more than size of the underlying device - 2048000 sectors
Is this normal? did I miss anything?
Thank you.
- Tags:
- fsadm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2012 06:51 AM
01-26-2012 06:51 AM
Re: Online JFS Question on HPUX v2 and V3
Here's what I'd do:
Find out the exact size of the lvol in MB:
# lvdisplay /dev/vg00/lvol4 | grep "LV Size" LV Size (Mbytes) 3000
Then find out how many KB that is.
# echo 3000*1024 | bc -l 3072000
Now use that number for your fsadm command.
# fsadm -F vxfs -b 3072000 /tmp
Kris Knigga
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2012 06:55 AM - edited 01-26-2012 06:56 AM
01-26-2012 06:55 AM - edited 01-26-2012 06:56 AM
Re: Online JFS Question on HPUX v2 and V3
Oh, I just noticed that your /dev/vg00/lvol4 is only 2000 MB big (the fsadm error says 2048000 sectors).
You need to grow the LV before you can grow the filesystem.
# lvextend -L 3000 /dev/vg00/lvol4
Kris Knigga
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2012 01:10 AM
01-28-2012 01:10 AM
Re: Online JFS Question on HPUX v2 and V3
OK thank you for your reply.