Problem installing 32 bit cadence ic610 in 64 bit OS
I am trying to install 32 bit cadence ic610 in 64 bit ubuntu. Installscape GUI is not popping up and it says java is not found.
Initializing InstallScape using JVM at /Cadence/InstallScape/iscape/runtime/LNX86 /bin/java. This might take some time...
/Cadence/InstallScape/iscape/bin/iscape.sh: 209: exec: /Cadence/InstallScape/iscape/runtime/LNX86/bin/java: not found
It looks like the problem is due to installation of 32 bit cadence in 64 bit OS. I am getting the same error as shown in this link
problem on java: not found.
Please help me in solving it.
installation 64-bit
add a comment |
I am trying to install 32 bit cadence ic610 in 64 bit ubuntu. Installscape GUI is not popping up and it says java is not found.
Initializing InstallScape using JVM at /Cadence/InstallScape/iscape/runtime/LNX86 /bin/java. This might take some time...
/Cadence/InstallScape/iscape/bin/iscape.sh: 209: exec: /Cadence/InstallScape/iscape/runtime/LNX86/bin/java: not found
It looks like the problem is due to installation of 32 bit cadence in 64 bit OS. I am getting the same error as shown in this link
problem on java: not found.
Please help me in solving it.
installation 64-bit
add a comment |
I am trying to install 32 bit cadence ic610 in 64 bit ubuntu. Installscape GUI is not popping up and it says java is not found.
Initializing InstallScape using JVM at /Cadence/InstallScape/iscape/runtime/LNX86 /bin/java. This might take some time...
/Cadence/InstallScape/iscape/bin/iscape.sh: 209: exec: /Cadence/InstallScape/iscape/runtime/LNX86/bin/java: not found
It looks like the problem is due to installation of 32 bit cadence in 64 bit OS. I am getting the same error as shown in this link
problem on java: not found.
Please help me in solving it.
installation 64-bit
I am trying to install 32 bit cadence ic610 in 64 bit ubuntu. Installscape GUI is not popping up and it says java is not found.
Initializing InstallScape using JVM at /Cadence/InstallScape/iscape/runtime/LNX86 /bin/java. This might take some time...
/Cadence/InstallScape/iscape/bin/iscape.sh: 209: exec: /Cadence/InstallScape/iscape/runtime/LNX86/bin/java: not found
It looks like the problem is due to installation of 32 bit cadence in 64 bit OS. I am getting the same error as shown in this link
problem on java: not found.
Please help me in solving it.
installation 64-bit
installation 64-bit
edited Apr 13 '17 at 12:24
Community♦
1
1
asked Dec 2 '13 at 5:57
user221124user221124
612
612
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
If installscape does not work showing a java error message, you need to link the java, java_vm y javaws binaries in /etc/alternatives maintaining the same names. You can also update the java references by executing:
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config javws
Additionally, it is possible that iscape.sh is outdated for your system,
iscape.sh: 219: exec: /home/administrador/cadence_install_files/iscape.04.21-s003/runtime/LNX86/bin/java: not found
If you get the above error, you need to edit iscape.sh and change
.... if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi;
with
if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi; java_vm=Path_to_your_java_bin_folder // in this case,
/usr/lib/jvm/java-7-openjdk-amd64/bin/java
Additionally, you need:
sudo apt-get install ksh build-essential openjdk-7-jre vim aptitude csh ssh lsb-core libstdc++6 xfonts-100dpi xfonts-75dpi xfonts-100dpi-transcoded xfonts-75dpi-transcoded ttf-freefont
cds_root
Backup $CDS_IC/tools/bin/cds_root
sudo cp $CDS_IC/tools/bin/cds_root $CDS_IC/tools/bin/cds_root.32b.back
Now, link cds_root to the 64bits edition
sudo rm /opt/cadence/IC616/tools/bin/cds_root sudo ln -s
/opt/cadence/IC616/tools/bin/64bit/cds_root
/opt/cadence/IC616/tools/bin/cds_root
[editar] awk
sudo ln -s /usr/bin/awk /bin/awk
add a comment |
I have developed the following guide in order to install Cadence SW in ubuntu/debian 64bits distributions:
http://vlsi.die.upm.es/cadence_ubuntu
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f384845%2fproblem-installing-32-bit-cadence-ic610-in-64-bit-os%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If installscape does not work showing a java error message, you need to link the java, java_vm y javaws binaries in /etc/alternatives maintaining the same names. You can also update the java references by executing:
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config javws
Additionally, it is possible that iscape.sh is outdated for your system,
iscape.sh: 219: exec: /home/administrador/cadence_install_files/iscape.04.21-s003/runtime/LNX86/bin/java: not found
If you get the above error, you need to edit iscape.sh and change
.... if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi;
with
if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi; java_vm=Path_to_your_java_bin_folder // in this case,
/usr/lib/jvm/java-7-openjdk-amd64/bin/java
Additionally, you need:
sudo apt-get install ksh build-essential openjdk-7-jre vim aptitude csh ssh lsb-core libstdc++6 xfonts-100dpi xfonts-75dpi xfonts-100dpi-transcoded xfonts-75dpi-transcoded ttf-freefont
cds_root
Backup $CDS_IC/tools/bin/cds_root
sudo cp $CDS_IC/tools/bin/cds_root $CDS_IC/tools/bin/cds_root.32b.back
Now, link cds_root to the 64bits edition
sudo rm /opt/cadence/IC616/tools/bin/cds_root sudo ln -s
/opt/cadence/IC616/tools/bin/64bit/cds_root
/opt/cadence/IC616/tools/bin/cds_root
[editar] awk
sudo ln -s /usr/bin/awk /bin/awk
add a comment |
If installscape does not work showing a java error message, you need to link the java, java_vm y javaws binaries in /etc/alternatives maintaining the same names. You can also update the java references by executing:
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config javws
Additionally, it is possible that iscape.sh is outdated for your system,
iscape.sh: 219: exec: /home/administrador/cadence_install_files/iscape.04.21-s003/runtime/LNX86/bin/java: not found
If you get the above error, you need to edit iscape.sh and change
.... if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi;
with
if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi; java_vm=Path_to_your_java_bin_folder // in this case,
/usr/lib/jvm/java-7-openjdk-amd64/bin/java
Additionally, you need:
sudo apt-get install ksh build-essential openjdk-7-jre vim aptitude csh ssh lsb-core libstdc++6 xfonts-100dpi xfonts-75dpi xfonts-100dpi-transcoded xfonts-75dpi-transcoded ttf-freefont
cds_root
Backup $CDS_IC/tools/bin/cds_root
sudo cp $CDS_IC/tools/bin/cds_root $CDS_IC/tools/bin/cds_root.32b.back
Now, link cds_root to the 64bits edition
sudo rm /opt/cadence/IC616/tools/bin/cds_root sudo ln -s
/opt/cadence/IC616/tools/bin/64bit/cds_root
/opt/cadence/IC616/tools/bin/cds_root
[editar] awk
sudo ln -s /usr/bin/awk /bin/awk
add a comment |
If installscape does not work showing a java error message, you need to link the java, java_vm y javaws binaries in /etc/alternatives maintaining the same names. You can also update the java references by executing:
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config javws
Additionally, it is possible that iscape.sh is outdated for your system,
iscape.sh: 219: exec: /home/administrador/cadence_install_files/iscape.04.21-s003/runtime/LNX86/bin/java: not found
If you get the above error, you need to edit iscape.sh and change
.... if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi;
with
if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi; java_vm=Path_to_your_java_bin_folder // in this case,
/usr/lib/jvm/java-7-openjdk-amd64/bin/java
Additionally, you need:
sudo apt-get install ksh build-essential openjdk-7-jre vim aptitude csh ssh lsb-core libstdc++6 xfonts-100dpi xfonts-75dpi xfonts-100dpi-transcoded xfonts-75dpi-transcoded ttf-freefont
cds_root
Backup $CDS_IC/tools/bin/cds_root
sudo cp $CDS_IC/tools/bin/cds_root $CDS_IC/tools/bin/cds_root.32b.back
Now, link cds_root to the 64bits edition
sudo rm /opt/cadence/IC616/tools/bin/cds_root sudo ln -s
/opt/cadence/IC616/tools/bin/64bit/cds_root
/opt/cadence/IC616/tools/bin/cds_root
[editar] awk
sudo ln -s /usr/bin/awk /bin/awk
If installscape does not work showing a java error message, you need to link the java, java_vm y javaws binaries in /etc/alternatives maintaining the same names. You can also update the java references by executing:
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config javws
Additionally, it is possible that iscape.sh is outdated for your system,
iscape.sh: 219: exec: /home/administrador/cadence_install_files/iscape.04.21-s003/runtime/LNX86/bin/java: not found
If you get the above error, you need to edit iscape.sh and change
.... if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi;
with
if [ "X$java_vm" = "X" ]; then
java_vm=FindJavaInPath; fi; java_vm=Path_to_your_java_bin_folder // in this case,
/usr/lib/jvm/java-7-openjdk-amd64/bin/java
Additionally, you need:
sudo apt-get install ksh build-essential openjdk-7-jre vim aptitude csh ssh lsb-core libstdc++6 xfonts-100dpi xfonts-75dpi xfonts-100dpi-transcoded xfonts-75dpi-transcoded ttf-freefont
cds_root
Backup $CDS_IC/tools/bin/cds_root
sudo cp $CDS_IC/tools/bin/cds_root $CDS_IC/tools/bin/cds_root.32b.back
Now, link cds_root to the 64bits edition
sudo rm /opt/cadence/IC616/tools/bin/cds_root sudo ln -s
/opt/cadence/IC616/tools/bin/64bit/cds_root
/opt/cadence/IC616/tools/bin/cds_root
[editar] awk
sudo ln -s /usr/bin/awk /bin/awk
answered Feb 6 '14 at 8:23
fernando garcíafernando garcía
1132514
1132514
add a comment |
add a comment |
I have developed the following guide in order to install Cadence SW in ubuntu/debian 64bits distributions:
http://vlsi.die.upm.es/cadence_ubuntu
add a comment |
I have developed the following guide in order to install Cadence SW in ubuntu/debian 64bits distributions:
http://vlsi.die.upm.es/cadence_ubuntu
add a comment |
I have developed the following guide in order to install Cadence SW in ubuntu/debian 64bits distributions:
http://vlsi.die.upm.es/cadence_ubuntu
I have developed the following guide in order to install Cadence SW in ubuntu/debian 64bits distributions:
http://vlsi.die.upm.es/cadence_ubuntu
edited Mar 11 '14 at 11:49
answered Feb 13 '14 at 14:15
fernando garcíafernando garcía
1132514
1132514
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f384845%2fproblem-installing-32-bit-cadence-ic610-in-64-bit-os%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown