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-13-2004 12:33 AM
04-13-2004 12:33 AM
backup
i want to know that if there is any apecial command for backup large files , and is there is any special option for the tar command for archiving large files
Regards,
Fadia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 12:40 AM
04-13-2004 12:40 AM
Re: backup
Have you tried man tar to see what probably suits things that you are trying to accomplish?
rgds
Mobeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 02:54 AM
04-13-2004 02:54 AM
Re: backup
could you please give us some more context on your problem. What are you trying to do and what type of error do you receive? Disk to disk tar, tar to a tape...?
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 04:27 AM
04-13-2004 04:27 AM
Re: backup
If you mean that you need backup through several media devices, you can try:
http://www.microwerks.net/~hugo/index.html
http://www.microwerks.net/~hugo/download/contribute.html#rht80
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:02 AM
04-13-2004 05:02 AM
Re: backup
If you have such files, you must use another backup program. I would suggest arkeia :
http://www.arkeia.com/ which is free for a linux server backuping itself. It handles correctly 2Gb on any filesystems and has a command line interface as well as a GUI. It can do from one-shot-backup to complex backup strategies with incrementals, retentions and so on...
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 09:06 AM
04-13-2004 09:06 AM
Re: backup
the following
https://listman.redhat.com/archives/phoebe-list/2003-February/msg00832.html
seems to indicate that the 2GB file limit for tar was liftet latest with RH 8.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 03:03 PM
04-13-2004 03:03 PM
Re: backup
1.13. See here
http://freshmeat.net/projects/tar/?branch_id=17853&release_id=56187
for details.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 06:33 PM
04-13-2004 06:33 PM
Re: backup
tar: Removing leading `/' from member names
lost+found/
backup/
backup/lost+found/
boot/
boot/lost+found/
boot/grub/
boot/grub/grub.conf
boot/grub/splash.xpm.gz
boot/grub/menu.lst
boot/grub/device.map
boot/grub/stage1
boot/grub/stage2
tar: /dev/st0: Wrote only 0 of 10240 bytes
tar: Error is not recoverable: exiting now
[root@RADIUS root]#
and when i do the tar command for a small file it work please help ,manly is the error from the tape drive or from the tar command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 06:48 PM
04-13-2004 06:48 PM
Re: backup
That's standard can't-write-to-the-tape errors, not tar.
Had it this morning on a DAT40 drive. Run the cleaning tape through, try another tape, see if the problem persists.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 07:02 PM
04-13-2004 07:02 PM
Re: backup
i change the tape and i get the same error i want to know what to do for that and for more i do the backup using dump and it gives me also error
thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 07:42 PM
04-13-2004 07:42 PM
Re: backup
try to exclude /proc in the tar command:
tar cvf /dev/st0 / --exclude /proc
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 07:45 PM
04-13-2004 07:45 PM
Re: backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 07:45 PM
04-13-2004 07:45 PM
Re: backup
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 07:50 PM
04-13-2004 07:50 PM
Re: backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 08:33 PM
04-13-2004 08:33 PM
Re: backup
try this to see if is a tar problem or a tape problem:
find / -path '/proc' -prune -o -print | cpio -ocv > /dev/st0
to recover the backup:
cpio -icv < /dev/st0
to list the backup
cpio -itcv < /dev/st0
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2004 07:24 PM
04-14-2004 07:24 PM
Re: backup
Thanks for your help , when i do the command it give me the following result "[root@RADIUS dev]# find / -path /proc -prune -o -print | cpio -ocv > /dev/st0
/
/lost+found
/backup
/backup/lost+found
/boot
/boot/lost+found
/boot/grub
/boot/grub/grub.conf
/boot/grub/splash.xpm.gz
/boot/grub/menu.lst
/boot/grub/device.map
/boot/grub/stage1
Found end of tape. To continue, type device/file name when ready.
what should i do for that i think that the dlt tape drive is big enough to do my backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2004 08:12 PM
04-14-2004 08:12 PM
Re: backup
Check if the tape is not write protect, is a silly thing but sometimes is the problem.
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2004 09:34 PM
04-14-2004 09:34 PM
Re: backup
Try to new DLT tape if you use used tape by some backup utility.
Some application set partition on tape.
or:
Use mt command for erase partition.
I don't know mt command well...
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2004 09:41 PM
04-14-2004 09:41 PM
Re: backup
i have solved the problem , it was that i put a terminator in the second port of the scsi tape drive (it is dual port ),thanks all again for your help
Regards,
Fadia