- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Enlarge File System - error
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
03-08-2007 07:53 AM
03-08-2007 07:53 AM
I need enlarge my File System.
I am using this commands:
fsadm -d -e -D -E /var - OK
fsadm -V -b 32457280 /var - NOK
When execute the command "fsadm -b 32457280 /var", appers this message:
"fsadm: /etc/default/fs is used for determining the file system type
vxfs fsadm: /dev/vg00/rlvol8 is currently 31457280 sectors - size will be increased
vxfs fsadm: write failure at block 4581446 : No such device or address"
Any tip.
Thanks.
Daniel
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2007 08:00 AM
03-08-2007 08:00 AM
Re: Enlarge File System - error
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2007 08:50 AM
03-08-2007 08:50 AM
Re: Enlarge File System - error
lvextend -L 32768 /dev/vg00/lvol8 (or whatever your /var is)
fsadm -b 32768M /var
That said - looks like you may have a disk issue? write failure at block
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2007 08:57 AM
03-08-2007 08:57 AM
Re: Enlarge File System - error
Again, stick with MB.....
Do a vgdisplay -v /dev/vg00 - what is size of the lvol for /var?
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2007 01:18 PM
03-08-2007 01:18 PM
SolutionI suggest following steps to increase file system: Example
1>Log in as root
2>Find out if any space is available:
# /sbin/vgdisplay
3> Check to see where E.g /usr is mounted (/dev/vg00/lvol7 by default):
# /sbin/mount
4> Extend the logical volume:
# /sbin/lvextend -L new_size /dev/vg00/lvol7
For example,
#/sbin/lvextend -L 332 /dev/vg00/lvol7
increases the size of this volume to 332 MB.
5>Unmount /usr:
# /sbin/umount /usr
This is required for the next step, since extendfs/fsadm can only work on unmounted volumes.
6>Extend the file system size to the logical volume size; for example:
/usr/sbin/fsadm [-F vxfs] [-V] [-b newsize] [-r rawdev] mount_point
Check following link for more information:
http://docs.hp.com/en/B9106-90008/fsadm_vxfs.1M.html
7>Remount /usr:
# /sbin/mount /usr
thanks & Regards
Reshma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2007 06:08 PM
03-08-2007 06:08 PM
Re: Enlarge File System - error
fsadm -F vxfs -b
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2007 06:09 PM
03-08-2007 06:09 PM
Re: Enlarge File System - error
lvextend -L
fsadm -F vxfs -b
Regards,
Asif Sharif
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 02:20 AM
03-09-2007 02:20 AM
Re: Enlarge File System - error
Sorry, I am failing...
I have this situation:
[svnnm11 - /] bdf
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 245760 182936 62824 74% /
/dev/vg00/lvol1 298928 42336 226696 16% /stand
/dev/vg00/lvol8 31457280 27459472 3967576 87% /var
/dev/vg00/lvol7 3145728 2210832 927624 70% /usr
/dev/vg00/lvol4 212992 4408 207008 2% /tmp
/dev/vg00/lvol6 5242880 3725776 1505272 71% /opt
/dev/vg00/lvol5 32768 2384 30152 7% /home
/dev/vg00/devlv 4194304 772054 3208411 19% /devel
/dev/vg01/lvol1 286687232 27642104 257075024 10% /OV
I need to increase my /var. I could use bytes of /OV?
How?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 05:15 AM
03-09-2007 05:15 AM
Re: Enlarge File System - error
Thanks for all tips.
I was forgot resize lvol.
Regards.
Daniel