AIX 5.3 64bit
I am having issues with backing up my Oracle Binaries on my Oracle Home prior to
upcoming upgrade.
Of course the overall directory structure is over 2GB.
I have tried using tar with a gzip pipe, but still cannot open it.
I ran the following
mknod mypipe p
gzip < mypipe > 10201.gz &
tar cvpf mypipe 10201
rm mypipe
Then I copied the file over with SCP.
When I undo all this.
mknod mypipe p
gunzip < filename.gz > mypipe &
tar xvpf mypipe
rm mypipe
I get
$ mknod mypipe p
$ gunzip <10201.gz> mypipe &
[1] 958544
$ tar xvpf mypipe
x 10.2.0
x 10.2.0/db_1
x 10.2.0/db_1/inventory
x 10.2.0/db_1/inventory/Quer
ies21
x 10.2.0/db_1/inventory/Quer
ies21/gene
ralQueries
x 10.2.0/db_1/inventory/Quer
ies21/gene
ralQueries
/10.1.0.3.
0
x
10.2.0/db_1/inventory/Quer
ies21/gene
ralQueries
/10.1.0.3.
0/generalQ
ueries.jar
,
89742 bytes, 176 media blocks.
tar: 0511-169 A directory checksum error on media; 804401144 not equal to
71003.
$
Smaller sized files work fine. Any thoughts?
Start Free Trial