Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

a problem when install candece 5141 in suse 10

Status
Not open for further replies.

kjskh

Newbie level 2
Joined
Apr 16, 2008
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,299
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
 

Could you show the /tmp/load.msg13 file?
 

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.
 

topgun ,thank you very much
 

I got this error while installing SOC encounter.


[root@localhost soc]# ./SETUP.SH


Specify path of install directory [OR type [RETURN] to exit]: /cad

Detecting InstallScape for lnx86...
Checking InstallScape on media...
/bin/tar: Skipping to next header
/bin/tar: Archive contains obsolescent base-64 headers
/bin/tar: ./iscape/VERSION.lnx86: Not found in archive
/bin/tar: Error exit delayed from previous errors
/bin/cat: /tmp/is3276/iscape/VERSION.lnx86: No such file or directory

Could not detect an InstallScape for lnx86 platform using the PATH environment variable

It is a good idea to have only one Installation of InstallScape
for lnx86 platform. If an InstallScape installation exists
please help us find it.

Do you want to install InstallScape for lnx86[y/n]:y

It is recommended that you install InstallScape
outside the Cadence installation hierarchy
and include the ~iscape/bin in your PATH environment variable.


Type the path to InstallScape installation directory [ (q to quit)]: /cad/is

InstallScape installation directory: /cad/is

Extracting InstallScape version
for platform lnx86 in /cad/is
Could not install InstallScape in /cad/is

You must have write permissions to /cad/is // I was installing this root
There must be atleast 80 MB of disk space available in /cad/is // I have more than 18 GB free space


/bin/tar: Skipping to next header
/bin/tar: Archive contains obsolescent base-64 headers
/bin/tar: Error exit delayed from previous errors
Exiting...
[root@localhost soc]#

I am not able to get help from any of my sources. Please help me...
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top