- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: file too large
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-07-2008 09:42 AM
10-07-2008 09:42 AM
file too large
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 09:49 AM
10-07-2008 09:49 AM
Re: file too large
You need to enable 'largefiles' for the filesystem into which you want to put it.
# mkfs -F vxfs -m /dev/vgNN/lvolX
...will show the current state --- largefiles or nolargefiles.
To enable 'largefiles' if necessary:
# fsadm -F vxfs -o largefiles /dev/vgNN/rlvolX
...note the use of the raw device.
OR:
# fsadm -F vxfs -o largefiles /mountpoint
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 09:51 AM
10-07-2008 09:51 AM
Re: file too large
# fsadm -F vxfs -o largefiles mount_point
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 09:51 AM
10-07-2008 09:51 AM
Re: file too large
In HP-UX 11.11 many programs are still PA-RISC1.1 (32bit) binaries and can not handle file greater 2GB. gzip and ftpd are belonging to this files.
You can try to unzip your compressed file as stream:
cat oracle.dmp.gz | gzip -dc > oracle.dmp
In this case it does not matter how big the files are.
HeL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 09:57 AM
10-07-2008 09:57 AM
Re: file too large
Please let me know if this is the action to take:
1. Unmount the file system (do not need data so I will delete all)
create a file system for large files
2. newfs -S hfs -o largefiles /dev/vg01/rdbexports
3. mount filesystem
4. make changes in fstab --what should I add here?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 10:05 AM
10-07-2008 10:05 AM
Re: file too large
/usr/sbin/fsadm -F hfs -o largefiles /dev/vgXX/rlvolXXX
See the whitepaper about largefiles - http://docs.hp.com/en/940/lgfiles4.pdf
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 10:30 AM
10-07-2008 10:30 AM
Re: file too large
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 11:43 AM
10-07-2008 11:43 AM
Re: file too large
> PA-RISC1.1 (32bit) binaries and can not
> handle file greater 2GB. gzip and ftpd are
> belonging to this files.
Programs don't need 64-bit pointers to deal
with large files. They do need to be built
with large-file support enabled. (They do
need to use 64-bit integers to hold file
sizes and offsets, but "32-bit" programs can
normally be written to do that.)