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.

Install IC5141 on suse 10.2 help ?

Status
Not open for further replies.

RF_TU

Newbie level 3
Joined
Aug 14, 2007
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,302
Hello,
can somebody guide me to install IC5141 on Suse 10.2? I am initial!
I launched ./SETUP.SH it makes me this error:


Creating directory /Cadence
\c

Setting up softload for lnx86 in /Cadence
\c

The following tar errors were detected:
\c
/bin/tar: -b1: ne peut être retrouvé dans l'archive.
/bin/tar: Statut d'erreur reporté d'erreurs précédentes.
/bin/tar: -b1: ne peut être retrouvé dans l'archive.
/bin/tar: Statut d'erreur reporté d'erreurs précédentes.

Could not set up SoftLoad in /Cadence\c


You must have write permissions to install directory \c
and all its subdirectories
and atleast 10 MB available disk \c
space in install directory.
\c

Thank you
 

yep try to install an older version like 1.13
 

I've met the same problem and solved it described below.

1. Rename original tar (/bin/tar) to tar2 for example (/bin/tar2)
2. make a script with name /bin/tar with the following source:

============== script starts here =====================
#!/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

================ script ends here ===================

This script analyzes all parameters passed to tar and excludes "-b1" parameter (this parameter is not supported in newer versions of tar and this parameter is the reason of error)
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top