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
12-04-2003 06:08 AM
12-04-2003 06:08 AM
/opt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:11 AM
12-04-2003 06:11 AM
Re: /opt
It sounds like you may have done an lvextend to increase the size of the "container" without doing an extendfs to increase the size of the actual contents.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:11 AM
12-04-2003 06:11 AM
Re: /opt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:13 AM
12-04-2003 06:13 AM
Re: /opt
Did you only increased the logical volume using lvextend ?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:13 AM
12-04-2003 06:13 AM
Re: /opt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:15 AM
12-04-2003 06:15 AM
Re: /opt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:16 AM
12-04-2003 06:16 AM
Re: /opt
Did you do a extendfs or fsadm -b after you did the lvextend.
If you have online jfs use "fsadm -b" to extend the size after lvextend. If not then you have unmount the filesystem, do a extendfs and then remount it.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:19 AM
12-04-2003 06:19 AM
Re: /opt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:20 AM
12-04-2003 06:20 AM
Re: /opt
Did you extend your filesystem like this example ?
# lvextend -L XXX /dev/vg00/lvolX
# extendfs /dev/vg00/rlvolx
# bdf
HTH,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:21 AM
12-04-2003 06:21 AM
Re: /opt
man man
also :-
man extendfs
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:21 AM
12-04-2003 06:21 AM
Re: /opt
It would be like
fsadm -F vxfs -b 1100M /opt
NOTE the M after the 1100 - designates 1100 MB to the command. Must have OnLine JFS to do this.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:22 AM
12-04-2003 06:22 AM
Re: /opt
fsadm -F vxfs -b
If you don't have online JFS, then you need to increase the filesystem in single user mode. Use "extendfs -F vxfs /dev/vg00/rlvol6"
Note: I assumed the filesystem is vxfs and /dev/vg00/lvol6 is mounted to /opt
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:22 AM
12-04-2003 06:22 AM
Re: /opt
# extendfs -F fs_type /dev/vgXX/rlvol?
If you had extended /dev/vg00/lvol7 and if that uses a vxfs file system, then try this command:
# extendfs -F vxfs /dev/vg00/rlvol7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:22 AM
12-04-2003 06:22 AM
Re: /opt
From "man extendfs":
umount /dev/vg00/lvol1
lvextend -L larger_size /dev/vg00/lvol1
extendfs -F hfs /dev/vg00/rlvol1
mount /dev/vg00/lvol1 mount_directory
Note that, in order to run this, you'll need to unmount the file system and, in order to do that, you'll need to go to single user mode (reboot, interrupt, interact with ISL, enter "hp-ux -is"), unless, of course you have OnlineJFS installed and can run fsadm against the mounted file system.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:22 AM
12-04-2003 06:22 AM
Re: /opt
The command line for using fsadm if you have onlineJFS is,
fsadm -b size_in_1k_blocks /mount_point
Size in 1k blocks is : size_in_mb * 1024
Get the size in mb using lvdisplay command.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:23 AM
12-04-2003 06:23 AM
Re: /opt
http://docs.hp.com/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:32 AM
12-04-2003 06:32 AM
Re: /opt
If you have online JFS use this command to extend the filesystem:
fsadm -F vxfs -b
If you don't have online JFS, then you need to increase the filesystem in single user mode. Use "extendfs -F vxfs /dev/vg00/rlvol6"
Note: I assumed the filesystem is vxfs and /dev/vg00/lvol6 is mounted to /opt
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 06:51 AM
12-04-2003 06:51 AM
Re: /opt
lvextend -L 1100 /dev/vg00/lvol6
fsadm -F vxfs -b 1100M /opt
or, if no online jfs:
umount /opt
lvextend -L 1100 /dev/vg00/lvol6
extendfs -F vxfs /dev/vg00/rlvol6
mount /opt
Rgds...Geoff