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:



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

Cookies are required to use this site. You must accept them to continue using the site. Learn more…