- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fsadm options..
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-24-2004 01:44 AM
03-24-2004 01:44 AM
I am trying to implement some advise I received in another thread.
I am trying to use fsadm to defrag and change the number of blocks in the filesystem:
fsadm -e /dev/vg02/lv11
fsadm -b 18432M /dev/vg02/lv11
I am getting an error that these are not recognised options.
They are not in man fstab, but there is an option -o for a comma separated list of 'special options'. I am running 10.20.
How to I do the -e and -b?
Thanks,
James.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 01:48 AM
03-24-2004 01:48 AM
Re: fsadm options..
fsadm -b
ie:
fsadm -b 102400 /home
Hope that helps!
-Hazem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 01:51 AM
03-24-2004 01:51 AM
Re: fsadm options..
The option -e re-organizes the extents. -b options is to reduce the filesystem online. You need to have online JFS installed for this.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 01:53 AM
03-24-2004 01:53 AM
Re: fsadm options..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 02:23 AM
03-24-2004 02:23 AM
Re: fsadm options..
Two words why you should not try it while the fs is live.
Bleeding Edge.
Explanation available upon request. :-)
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
03-24-2004 02:26 AM
03-24-2004 02:26 AM
Re: fsadm options..
Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 02:35 AM
03-24-2004 02:35 AM
Re: fsadm options..
"E" reports extent fragmentation
#fsadm -F vxfs -D /mountpoint
"D" reports directory fragmentation
#fsadm -F vxfs -DE /mountpoint
"ED"reports extent & directory fragmentation
#fsadm -F vxfs -DEde /mountpoint
Will show as well as do extend & directory defragmentation.
You can compare both output and see teh difference.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 02:36 AM
03-24-2004 02:36 AM
Re: fsadm options..
-Hazem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 02:49 AM
03-24-2004 02:49 AM
Re: fsadm options..
Having OnlineJFS I never had an issue reorganizing directories and extents although I am not sure how much performance will you gain:
fsadm -D -d /mount_point
fsadm -E -e /mount_pont
Also, from my experience it is safe to expand the FS:
lvextend -L N(Mb) /dev/vgxx/lvolx
fsadm -F fstype -b Nm (Mb) /mount_point
To reduce a FS, you use the same fsadm -b command, and then you have to reduce a logical volume. I never did this, but I've heard that you could end up with the corrupt FS.
Elena.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 02:49 AM
03-24-2004 02:49 AM
Re: fsadm options..
We hope you have onlineJFS installed on the system before you do this.
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062921855
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 03:12 AM
03-24-2004 03:12 AM
SolutionBill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 03:40 AM
03-24-2004 03:40 AM
Re: fsadm options..
thanks for your input.
James.