![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Hard Error:DAT Tape Drive | saurabh84g | SUN Solaris | 5 | 09-23-2008 07:06 AM |
| back-up drive : tape error | yackim | SCO | 3 | 03-03-2006 09:19 AM |
| Error After Installing Tape Drive | rajendra.rait | SUN Solaris | 2 | 10-07-2005 04:03 AM |
| Tape Drive error | giriplug | UNIX for Advanced & Expert Users | 3 | 03-29-2005 11:35 PM |
| 8mm tape drive I/O error | geoquest | UNIX for Dummies Questions & Answers | 5 | 10-02-2002 03:28 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hi All
I am trying to copy files present in a partition (server 2) which is mounted to a different server (server 1) as tape drive is connected to it. I ran the below command to copy files within a partition: svr01:root:/sunfileserver> tar -cvf * a <foldername>/<filename>/<filename> a <foldername>/<filename>/<filename> . . . svr01:root:/sunfileserver> When I tried the below command : svr01:root:/sunfileserver> tar -tvf /dev/rmt3 drwxr-xr-x 2 root system 4096 Sep 29 10:59 tcs.ori svr01:root:/sunfileserver> Though the backup ran for a whole day, which is ~40GB but it just shows a single file containing 4MB. Please let me know if there is something wrong with Tape or Command executed or Tape device that controls the tape. Also, let me know the ways to fix this issue. At times, when I try ' tar -tvf /dev/rmt3 ' : It says "A directory checksum error on media" - Let me know why and what steps neesd to be taken. I use IBM 3580 Ultrium Tape Drive. Please do let me know for any specific information in regards to this issue. - Vathsan. |
|
|||||
|
Sorry the reason for the error could also be one of the following things
========================================== Tar limits ( check your o/s level ) ======= The tar command id not enabled for file size larger than 2G in size due to limitations imposed by XPG/4 and POSIX.2 standards New versions of tar supports up to about 8Gig file size limits /etc/security/limits ============== You have to check the limits on your user for filesize ulimit -a File error or corruption ================== some problems with the files or media or tape errors |
|
||||
|
Quote:
tar -cvf /dev/rmt0 /some/start/directory Alternatively, make this directory your current directory and run tar using a shell glob: cd /some/start/directory tar -cvf /dev/rmt0 * The difference is that in the first case the paths are stored absolutely, n the second case they are stored relatively. If you would list the contents of the archive you would get /some/start/directory/fileA /some/start/directory/fileB /some/start/directory/dirA /some/start/directory/dirA/fileC ... etc. In the second case you would get ./fileA ./fileB ./dirA ./dirA/fileC ... etc. If you intend to restore the archive always into the same directory use the first version with the absolute paths. If you intend to restore the archives into different hierarchies (maybe on another machine where /some/start/directory is named /another/dir) use the second variation. I hope this helps. bakunin |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|