- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: TAR with 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
07-30-2001 12:30 AM
07-30-2001 12:30 AM
TAR with large files
I can't backup some Oracle Datafiles greater than 2 GB (6-7 GB) with tar. Man of tar command says that is not possible to backup these files due to compatibility problems with POSIX standards.
There is some patch that allows tar to backup these kind of files?
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 12:34 AM
07-30-2001 12:34 AM
Re: TAR with large files
I encountered this problem few monthes ago :
and I have asked this question in this forum before and here is th answer:
1.Your file system maynot support largefile
#fsadm /dev/vg00/rvol5
to check it.
2. tar command itself can't support file larger than 2GB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 12:36 AM
07-30-2001 12:36 AM
Re: TAR with large files
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 01:04 AM
07-30-2001 01:04 AM
Re: TAR with large files
tar, cpio and gzip do not process files larger than 2 GB. Using fbackup or OmniBack or some other real backup software is the only way to go. If you want to use fbackup, do it command line mode and read the manpage before.
Doing fbackup from sam will give you trouble for these files.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 01:07 AM
07-30-2001 01:07 AM
Re: TAR with large files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 01:14 AM
07-30-2001 01:14 AM
Re: TAR with large files
If there isn't such a tool you can try dd. However, this will (like tar) mean you must stop your database.
I'm sure Oracle must have an online backup utility, even if it costs something other wise all those large OLTP databases out there will need to be shut down to back them up!
Good luck
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 01:58 AM
07-30-2001 01:58 AM
Re: TAR with large files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 06:04 AM
07-30-2001 06:04 AM
Re: TAR with large files
mknod mypipe p
gzip < mypipe > filename.gz &
tar cvpf mypipe file1 file2 file3 file....
rm mypipe
To retrieve the files
mknod mypipe p
gunzip < filename.gz > mypipe &
tar xvpf mypipe
rm mypipe
It would be worth a try. I have used this when my tar file was getting over 2g.
Hope this helps
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 06:52 AM
07-30-2001 06:52 AM
Re: TAR with large files
try to use tne gtar, the gnu tar which is compatible with tar but is work fine.
bye Eberardo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 08:20 AM
07-30-2001 08:20 AM
Re: TAR with large files
2. They want to make $$ from omniback.
3. They would prefer that if you are cheap, you use fbackup where they have tested backups of large files and will support it!
However, as another user mentioned, you can download GNU-Tar, which supports files of unlimited size!
You may want to look also at a nice backup tool like Omniback, which does a whole lot more than just backup of your dump files!
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 11:55 AM
07-30-2001 11:55 AM
Re: TAR with large files
We use vxdump vxrestore
/usr/sbin/vxdump -0 -f /dev/rmt/0mn -u /data
/usr/sbin/vxrestore -if /dev/rmt/0mn
the vxrextore works interactively and is very fast compared to frecover which seems to take for ever when you really need it.
It is able to handle over 2GB and will work across the network if needed. Or to a file.
Filesystems must be large file enabled, of course.