- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vxfs and files larger than 2 Gb...
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
04-06-2001 07:58 AM
04-06-2001 07:58 AM
vxfs and files larger than 2 Gb...
I am also having a problem similar to Gerhard Klein's problem, only that when I try to use fsadm to make the system allow large files, it fails...
# fstyp /dev/vg01/lvol7
vxfs
(trying it first using the mount point directory name)
# fsadm -F vxfs -o largefiles /ora6
fsadm: set feature (LARGEFILES) failed, errno 25
(now trying it correctly using the actual name)
# fsadm -F vxfs -o largefiles /dev/vg01/lvol7
vxfs fsadm: /dev/vg01/lvol7 is not the root inode of a vxfs file sytem
(tried it without specifying the -F vxfs, but getting same errors)
from the mnttab and fstab files...
mnttab: /dev/vg01/lvol7 /ora6 vxfs delaylog,nodatainlog 0 0 986555795
fstab: /dev/vg01/lvol7 /ora6 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
Also tried to edit the fstab and change nolargefiles to largefiles, unmount the mount, try using fsadm as above, but still got the same errors and it would not work, (nor would it allow me to mount it back until I put it back the fstab entry the way it was)...
Any help would be greatly appreciated.
jim wolff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 08:08 AM
04-06-2001 08:08 AM
Re: vxfs and files larger than 2 Gb...
Did you try to use SAM for this modification?
Perharps SAM will give you a more "usefull error" ???
Regards,
Patrice.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 08:16 AM
04-06-2001 08:16 AM
Re: vxfs and files larger than 2 Gb...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:09 AM
04-06-2001 09:09 AM
Re: vxfs and files larger than 2 Gb...
You may need to unmount the filesystem and fsck
to be sure that it is marked clean before fsadm will proceed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:56 AM
04-06-2001 09:56 AM
Re: vxfs and files larger than 2 Gb...
When I issue fsadm to enable largefiles on my JFS filesystem, I get the following error:
command: fsadm -F vxfs -o largefiles /home
error: fsadm: set feature (LARGEFILES) failed, errno 25.
Error 25 means ENOTTY.
Why am I getting this error?
Solution
The error occurs because you are trying to perform the fsadm command on a mounted filesystem, but you do not have the On-line JFS product. If you do not have OnlineJFS, you can enable the largefiles feature by first unmounting the filesystem and then running fsadm on the device name rather than the mount point:
umount /vxfs
fsadm -F vxfs -o largefiles /dev/vg01/rlvol1
Regards,
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2001 01:28 PM
04-07-2001 01:28 PM
Re: vxfs and files larger than 2 Gb...
In addition to having Online JFS installed, you need to specify the *raw* device as the special file argument. Note the "rlvol":
# umount /
# fsadm -F vxfs -o largefiles /dev/vgXY/rlvolX
Then, as you corrected indicated, change the "nolargefiles" to "largefiles" in the appropriate entry in /etc/fstab and reount the filesystem.
...JRF...