| Author |
Message |
kjskh
Joined: 16 Apr 2008 Posts: 2
|
16 Apr 2008 15:08 a problem when install candece 5141 in suse 10 |
|
|
|
recently i install candece 5141 in suse 10,and it's the first time for me to use linux ,i come across many problem,at first ,the problem isjust as following:
The following tar errors were detected:
\c
/bin/tar: -b1: Not found in archive
/bin/tar: Error exit delayed from previous errors
/bin/tar: -b1: Not found in archive
/bin/tar: Error exit delayed from previous errors
I know it"s due to "tar"too new ,so i download tar-1.13.25-12.i386.rpm and install it,after do this ,i run softload ,but a new problem have appeared :
Checking data files...
Executing control programs (pre-load) ...
Checking IC5141 lnx86 P/N 356-70352-0502 CDROM # 2 ...
loading prfrefDoc05.10-p003 ..............................insize:1024 posbits:0 inbuf:00 FF FF FF FF (0)
uncompress: corrupt input
tar: Unexpected EOF in archive
tar: Unexpected EOF in archive
tar: Error is not recoverable: exiting now
dd: I/O error
SL-11: Error loading software ...
Refer to /tmp/load.msg13 for load log
so how can i deal with this problem? please help me
|
|
| Back to top |
|
 |
meitolake
Joined: 07 Oct 2007 Posts: 145 Helped: 24 Location: China
|
22 Apr 2008 2:02 a problem when install candece 5141 in suse 10 |
|
|
|
| Could you show the /tmp/load.msg13 file?
|
|
| Back to top |
|
 |
_TopGun_
Joined: 20 Aug 2005 Posts: 57 Helped: 6 Location: Zelenograd, Russian Federation
|
24 Apr 2008 15:37 Re: a problem when install candece 5141 in suse 10 |
|
|
|
kjskh, I've met this problem.
I've solved it with these fiew steps:
1. Log in under root
2. Rename /bin/tar to /bin/tar2
3. Create script /bin/tar with code as listed below:
=============== begin of the file =====================
#!/bin/bash
i=""
while [ $# -gt 1 ]; do
if [ "$1" != "-b1" ]; then
i="$i $1"
fi
shift
done
if [ "$1" != "-b1" ]; then
i="$i $1"
fi
/bin/tar2 $i
=============== end of the file =====================
4. Run "chmod +x /bin/tar"
Restart installation script
Hope this will help.
|
|
| Back to top |
|
 |
kjskh
Joined: 16 Apr 2008 Posts: 2
|
25 Apr 2008 7:47 Re: a problem when install candece 5141 in suse 10 |
|
|
|
| topgun ,thank you very much
|
|
| Back to top |
|
 |