|
Home > Archive > Unix administration > July 2004 > tar archive problem
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
tar archive problem
|
|
| Ravi Katti 2004-07-16, 5:53 pm |
| Hello,
I have 2 systems one motorola m68020 based proprietory unix and the
other pentium based linux. Both have qic 150 drive. I took backup on
tapes on motorola based system using tar. Now when I try to restore
the same on pentium based linux I get "this doesnt look tar archive",
"skipping to next header" etc errors. Could please someone guide me if
I am missinhg somehting here?
Any help will be greatly appreciated.
TIA
Ravi
| |
| Dave Hinz 2004-07-16, 5:53 pm |
| On 16 Jul 2004 08:58:48 -0700, Ravi Katti <ravi@greyvector.com> wrote:
> Hello,
>
> I have 2 systems one motorola m68020 based proprietory unix and the
> other pentium based linux. Both have qic 150 drive. I took backup on
> tapes on motorola based system using tar. Now when I try to restore
> the same on pentium based linux I get "this doesnt look tar archive",
> "skipping to next header" etc errors. Could please someone guide me if
> I am missinhg somehting here?
From the dim recesses of my memory, something about byte order comes to
mind. Does the tar on the new system have an option listed in
the man page for reversing byte order? Can anyone else suggest what
I'm thinking of here? I remember needing to do this going from
SunOS 4.x to, say, SGI with a tarfile tape.
Dave Hinz
| |
| Juha Laiho 2004-07-16, 5:53 pm |
| Dave Hinz <DaveHinz@spamcop.net> said:
>On 16 Jul 2004 08:58:48 -0700, Ravi Katti <ravi@greyvector.com> wrote:
>
>From the dim recesses of my memory, something about byte order comes to
>mind. Does the tar on the new system have an option listed in
>the man page for reversing byte order? Can anyone else suggest what
>I'm thinking of here? I remember needing to do this going from
>SunOS 4.x to, say, SGI with a tarfile tape.
There might also be issues with tape block sizes.
--
Wolf a.k.a. Juha Laiho Espoo, Finland
(GC 3.0) GIT d- s+: a C++ ULSH++++$ P++@ L+++ E- W+$@ N++ !K w !O !M V
PS(+) PE Y+ PGP(+) t- 5 !X R !tv b+ !DI D G e+ h---- r+++ y++++
"...cancel my subscription to the resurrection!" (Jim Morrison)
| |
| Ravi Katti 2004-07-18, 5:55 pm |
| Juha Laiho <Juha.Laiho@iki.fi> wrote in message news:<cd95s4$6a2$3@ichaos.ichaos-int>...
> Dave Hinz <DaveHinz@spamcop.net> said:
>
> There might also be issues with tape block sizes.
Well the tape block size is okay. Looks like it has got something to
do with byte order as said earlier. I also used "star" utility which
is supposed to automatically detect archive type, byte order etc but
it doesnt do anything. the default tar utility does read the tape and
extract files but with errors. I am really stuck cos the motorola
system doesnt have nic so the only option is to somehow read those
tapes in order to transfer data.
The other option I can think of is to setup the qic drive on sun
system. Extract the archive from the tape. Then dump these files over
the network onto linux system.
TIA
| |
| phn@icke-reklam.ipsec.nu 2004-07-18, 5:55 pm |
| Ravi Katti <ravi@greyvector.com> wrote:
> Juha Laiho <Juha.Laiho@iki.fi> wrote in message news:<cd95s4$6a2$3@ichaos.ichaos-int>...
[vbcol=seagreen]
> Well the tape block size is okay. Looks like it has got something to
> do with byte order as said earlier. I also used "star" utility which
> is supposed to automatically detect archive type, byte order etc but
> it doesnt do anything. the default tar utility does read the tape and
> extract files but with errors. I am really stuck cos the motorola
> system doesnt have nic so the only option is to somehow read those
> tapes in order to transfer data.
> The other option I can think of is to setup the qic drive on sun
> system. Extract the archive from the tape. Then dump these files over
> the network onto linux system.
> TIA
Do you have a compiler ( and this possibility to build pax or
maybe gnu tar ) Both of these has a good portability record.
Mounting the disc on a sun might be hazardous, not all filesystems
are alike.
Last resourt could be kermit or an uucp link, with some
scripting it would be possible to transfer all files.
--
Peter Håkanson
IPSec Sverige ( At Gothenburg Riverside )
Sorry about my e-mail address, but i'm trying to keep spam out,
remove "icke-reklam" if you feel for mailing me. Thanx.
| |
| Joe Chung 2004-07-18, 5:55 pm |
| ravi@greyvector.com (Ravi Katti) writes:
[SNIP]
> Well the tape block size is okay. Looks like it has got something to
> do with byte order as said earlier. I also used "star" utility which
> is supposed to automatically detect archive type, byte order etc but
> it doesnt do anything. the default tar utility does read the tape and
> extract files but with errors. I am really stuck cos the motorola
> system doesnt have nic so the only option is to somehow read those
> tapes in order to transfer data.
> The other option I can think of is to setup the qic drive on sun
> system. Extract the archive from the tape. Then dump these files over
> the network onto linux system.
>
> TIA
If it's byte order, then try this on your linux side (assuming
/dev/st0 is the device of your tape drive) :
dd if=/dev/st0 conv=swab | tar tvf -
or
cpio -i -t -b -H tar < /dev/st0
If that lists your tar file correctly, then you can extract it.
-jc
--
(apply 'concat (reverse (list "com"
(char-to-string 46) "yahoo"
(char-to-string 64) "joechung")))
|
|
|
|
|