- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How do you get around uncompressing 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
01-08-2004 04:01 AM
01-08-2004 04:01 AM
How do you get around uncompressing large files?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:03 AM
01-08-2004 04:03 AM
Re: How do you get around uncompressing large files?
I don't understand your question. Do you need to uncompress the file on a different filesystem ?
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:07 AM
01-08-2004 04:07 AM
Re: How do you get around uncompressing large files?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:09 AM
01-08-2004 04:09 AM
Re: How do you get around uncompressing large files?
Your filesystem does not support largefiles.
Check if lragefiles is enabled.
vxfs
# fsadm -F vxfs /your_mount_point
hfs
# fsadm -f hfs /your_mount_point
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:11 AM
01-08-2004 04:11 AM
Re: How do you get around uncompressing large files?
If so, you'll have to set largefiles option with
"fsadm -o largefiles /dev/vg00/rlvol1" or whatever the filesystem is. It should also be mounted with the "-o largefiles" option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:15 AM
01-08-2004 04:15 AM
Re: How do you get around uncompressing large files?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:18 AM
01-08-2004 04:18 AM
Re: How do you get around uncompressing large files?
Umount the filesystem and reenter the fsadm command
# umount /your_mount_point
# fsadm -F vxfs -o largefiles /your_mount_point
# mount /your_mount_point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:23 AM
01-08-2004 04:23 AM
Re: How do you get around uncompressing large files?
Hopefully that makes sense.
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:28 AM
01-08-2004 04:28 AM
Re: How do you get around uncompressing large files?
# umount /app/oracle/dbappl
# fsadm -F vxfs -o largefiles /dev/vg01/rlvol4
# grep /app/oracle/dbappl /etc/fstab
/dev/vg01/lvol4 /app/oracle/dbappl vxfs log,nodatainlog,largefiles,rw,suid 0 2
# mount /app/oracle/dbappl
# fsadm -F vxfs /app/oracle/dbappl
nomultifsets
largefiles
Going home (:-)
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:41 AM
01-08-2004 04:41 AM
Re: How do you get around uncompressing large files?
what do want to do with that file, once it is uncompressed, import? If so, you can bypass that by uncompressing and importing via pipe.
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 07:25 AM
01-08-2004 07:25 AM
Re: How do you get around uncompressing large files?
fsadm can be done WITHOUT umounting the FS. No need for single user mode either.
fsadm -F vxfs -o largefiles /mount/point/here
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 07:35 AM
01-08-2004 07:35 AM
Re: How do you get around uncompressing large files?
#1 What version of UX are you running ..its been a while but 10.20 and lower with out JFS changing to largefiles will purge all data from the filesystem .. i could be wrong, there might have been patches to fix that since then
#2 also without JFS you must use the /dev/vgxxx/lvxx with the fsadm command
mount points only work with Online JFS installed
#3 lastly if you are just viewing this file, get some spare diskspace and make a temp filesystem largefile enabled and do not do anything to risk your exisiting oracle data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 08:15 PM
01-08-2004 08:15 PM
Re: How do you get around uncompressing large files?
You will need online jvs for that action.
# uname -a
HP-UX 001 B.11.00 U 9000/800 160901517 unlimited-user license
# fsadm -F vxfs /app/oracle/admin
nomultifsets
nolargefiles
# fsadm -F vxfs -o largefiles /app/oracle/admin
fsadm: set feature (LARGEFILES) failed, errno 25
Kind regards,
Robert-Jan