Don't know how to install Xilinx ISE - clean CentOS 5 install

Issues related to software problems.
Post Reply
alien-w
Posts: 2
Joined: 2009/11/12 10:01:19

Don't know how to install Xilinx ISE - clean CentOS 5 install

Post by alien-w » 2009/11/12 10:08:55

Hi,

I cannot seem to install Xilinx ISE on my fresh CentOS installation.
I have downloaded the webinstall package from Xilinx and tried to run xsetup (double clicking on it and choosing "Run"), but nothing happens. Then I have tried double clicking again and choosing "Run in terminal", but only for a second the terminal window opens and then closes. I have then tried to go to terminal and with su got cd to the folder and trying to do ./xsetup but again nothing happens.
The first method (double click and "run") worked in my other Linux distributions but I don't know what to do here.
Can you please help?

This is the code of xsetup:

[code]
#! /bin/sh
export PATH || exec /bin/sh "$0" $argv
# Get the path to this exec
setuploc=`dirname "$0"`

unset LANG
platform=`uname -s`

# run setup executable depending on different platform
if [ "$platform" = "Linux" ]
then
machineType=`uname -m`; # Get the machine type
if [ "$machineType" = "x86_64" ]
then
# 64 bit
if [ -f "$setuploc/bin/lin64/xsetup" ]
then
"$setuploc/bin/lin64/xsetup"
else
echo "Product is not supported on \"$platform $machineType\" platform."
fi
else
if [ -f "$setuploc/bin/lin/xsetup" ]
then
"$setuploc/bin/lin/xsetup"
else
echo "Product is not supported on \"$platform $machineType\" platform."
fi
fi
else
echo "Un-supported platform: $platform"
fi
[/code]


Thank you for your help!
Regards,
Janez

[Moderator edited to add [i]code[/i] tags to preserve the formatting.]

yyagol
Posts: 1015
Joined: 2006/06/10 18:27:44
Location: 32 4′N 34 47′E
Contact:

Don't know how to install Xilinx ISE - clean CentOS 5 instal

Post by yyagol » 2009/11/13 06:42:17

cd to the directory where the file is , and run as root
sh

alien-w
Posts: 2
Joined: 2009/11/12 10:01:19

Re: Don't know how to install Xilinx ISE - clean CentOS 5 install

Post by alien-w » 2009/11/15 13:38:37

i went:

[janez@localhost ~]# su
Password:
[root@localhost janez]# cd Desktop/webinstall
[root@localhost webinstall]# sh xsetup
[root@localhost webinstall]#

so again, nothing happened.

When I tried sh xinfo (another file in the same folder, dunno why it is really for) it said:

********** xinfo done! ***********

and that was it

Any other ideas?

istarc
Posts: 1
Joined: 2010/04/06 06:38:52

Re: Don't know how to install Xilinx ISE - clean CentOS 5 install

Post by istarc » 2010/04/06 06:51:59

[quote]
alien-w wrote:
Hi,

I cannot seem to install Xilinx ISE on my fresh CentOS installation.
I have downloaded the webinstall package from Xilinx and tried to run xsetup (double clicking on it and choosing "Run"), but nothing happens. Then I have tried double clicking again and choosing "Run in terminal", but only for a second the terminal window opens and then closes. I have then tried to go to terminal and with su got cd to the folder and trying to do ./xsetup but again nothing happens.
The first method (double click and "run") worked in my other Linux distributions but I don't know what to do here.
Can you please help?
[/quote]

Try to disable SELinux first and then install Xilinx ISE (At least it has worked for me using Xilinx ISE 10.1 on CentOS 5.3).

Regards,

Iztok

mariof
Posts: 1
Joined: 2010/04/20 06:17:24

Re: Don't know how to install Xilinx ISE - clean CentOS 5 install

Post by mariof » 2010/04/20 06:20:57

did you use scp -r to copy the installation folder from some other machine? scp will follow symbolic links and copy over the files that are linked which then breaks the installation (presumably it breaks the relative paths in some of the script files)

Post Reply