- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftping large files
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
06-20-2003 12:12 AM
06-20-2003 12:12 AM
ftping large files
2. tried mount -o largefiles option ,but not supporting
3.Tried fsadm -F vxfs -o largefiles ...giving error "set features LARGEFILES failed error no 25:"
4. Pls mention any other way to do it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 12:18 AM
06-20-2003 12:18 AM
Re: ftping large files
fsadm should work; what version of VXFS and OS are you running? What Gold Pack Version?
Easiest was to do this; recreate the file system from scratch, using
newfs -F vxfs -o largefiles /dev/vgXX/rlvolY
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 12:24 AM
06-20-2003 12:24 AM
Re: ftping large files
If you don't have Online-JFS you cannot do it when the FS is mounted. So you need to unmount the FS and issue #fsadm -F vxfs -o largefiles /dev/
Then remount it . Modify the fstab by reflecting largefile option.
If your FS is on vg00 (root VG) , you need to start the m/c in LVM maintenance mode and do the same.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 12:48 AM
06-20-2003 12:48 AM
Re: ftping large files
The typical way to enable large-file support for a file system are as follows:
#umount /somedir
#fsadm -F vxfs -o largefiles /dev/vg01/lvol2
#mount /dev/vg01/lvol2 /somedir
Then modify the entry in /etc/fstab and add a "-o largefiles" option.
Good luck!
-ux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 12:57 AM
06-20-2003 12:57 AM
Re: ftping large files
Umount the file system.
Enable largefiles
Re-mount the file system.
Also make sure you update the /etc/fstab
Thanks