- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fsadm question
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
08-16-2007 08:41 PM
08-16-2007 08:41 PM
Can i use fsadm to increase hfs filesystems? or it is only for vxfs type???
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 08:46 PM
08-16-2007 08:46 PM
Re: fsadm question
check 'man fsadm_hfs'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 09:02 PM
08-16-2007 09:02 PM
Re: fsadm question
For changing the largefiles bit in HFS The file system MUST be unmounted.
To convert the HFS file system to largefiles capable:
#fsadm -F hfs -o largefiles /dev/vg#/lvol#
To mount the new largefiles capable file system :
#mount -F hfs -o defaults,largefiles /dev/vg#/lvol# /(mountpoint)
To set the correct /etc/fstab syntax:
/dev/vg#/lvol# /stand hfs defaults,largefiles 0 2
To verify the largefiles being set you can use mount() or fsadm().
Verify with mount() command:
mount -v :
/dev/vg00/lvol1 on /stand type hfs largefiles on Wed Apr 29
19:23:35 1998
Hope this help
WK
pls assign points
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 09:08 PM
08-16-2007 09:08 PM
Re: fsadm question
>WK: For changing the largefiles bit in HFS
I assumed the question was on how to increase the size of the filesystem, not set the largefiles bit?
So for the former the answer is it can't increase the size.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 09:17 PM
08-16-2007 09:17 PM
Re: fsadm question
Extending an hfs FS is done with
extendfs -F hfs
man extendfs_hfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 09:25 PM
08-16-2007 09:25 PM
SolutionDennis is right, it is only applicable for vxfs if you want to increase size,
#fsadm -F vxfs -b
-F represents what filetype
-b represents the size
M represents 'Megabytes'
Example:
#fsadm -F vxfs -b 100M /dev/vg03/lvol2
This will extend lvol2 100 megabytes with a vxfs filetype
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 09:26 PM
08-16-2007 09:26 PM
Re: fsadm question
so, i can not do this after lvextend:
fsadm -F hfs -b newsize /dir
¿?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 09:32 PM
08-16-2007 09:32 PM
Re: fsadm question
No.
You need to
# umount /filesystem
# lvextend -L new_size /dev/vgxx/lvoly
# extendfs -F hfs /dev/vgxx/rlovy
# mount /filesystem
You can not use fsadm.
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 09:34 PM
08-16-2007 09:34 PM
Re: fsadm question
command syntex for fsadm is
fsadm -F hfs /dev/vg02/rlvol1
man fsadm_hfs