- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fsadm 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
10-03-2007 09:40 PM
10-03-2007 09:40 PM
I want to increase the /opt partition to hold files greater than 2GB. I get this error with fsadm
# fsadm -F vxfs -o largefiles /dev/vg00/lvol6
vxfs fsadm: /dev/vg00/lvol6 is not the root inode of a vxfs file sytem
#
# fsadm -o largefiles /dev/vg00/lvol6
vxfs fsadm: /dev/vg00/lvol6 is not the root inode of a vxfs file sytem
#
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 09:46 PM
10-03-2007 09:46 PM
Re: fsadm error
Specify the mopunt point, not the lvol. Did you have extended the lvol before the fsadm?
Regards;
J. Bravo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 09:48 PM
10-03-2007 09:48 PM
Re: fsadm error
It sounds the filesystem is HFS and not vxfs
Please do
#fstyp /dev/vg00/lvol6
I belive fsadm will not work with HFS
Aneesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 09:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 09:57 PM
10-03-2007 09:57 PM
Re: fsadm error
Your command worked!
I am trying to ftp an 2.5 GB zip file to /opt/tmp on HPUX
Hope your command works and does not again give me a Netout: connection reset by peer error.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 09:57 PM
10-03-2007 09:57 PM
Re: fsadm error
Hi,
You need to make sure if you online JFS or base JFS
To convert an Advanced JFS filesystem:
fsadm -F vxfs -o largefiles /(mountpoint)
To convert a base JFS filesystem (filesystem MUST be unmounted):
fsadm -F vxfs -o largefiles /dev/vg0#/rlvol#
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 09:59 PM
10-03-2007 09:59 PM
Re: fsadm error
Don't forget to change the line into fstab to reflect the change:
/dev/vg00/lvol6 /opt vxfs largefiles,delaylog 0 2
Best regards;
J. Bravo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 10:00 PM
10-03-2007 10:00 PM
Re: fsadm error
If you want to enable the largefiles option on /opt then please do the below steps
1)Reboot the server in single user mode
2)# fsadm -F hfs -o largefiles /dev/vg00/rlvol6
3)Confirm using fstyp -v /dev/vg00/lvol6 |grep "f_flag" -- it should be 16
4) init 3
much before that please confirm whether u have already enabled largefile flag on /opt
fstyp -v /dev/vg00/lvol6 |grep "f_flag"
if the output 0 means not enabled, 16 means its enabled already
Thanks,
Aneesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 10:01 PM
10-03-2007 10:01 PM
Re: fsadm error
J. Bravo solution worked fine. Thanks to all those who replied.