Computer Aided Engineering Journal & Forums

  • Home
  • Forums
  • Help
  • Search
  • Contact
  • Members
Current time: 09-09-2010, 05:10 PM



Computer Aided Engineering Journal & Forums / Documentation & Book Keeping / Tips-n-Tricks, Howtos, & Docs / How to install Abaqus 6.8 in linux
Pages (3): 1 2 3 Next »
Post New Reply 
Threaded Mode | Linear Mode
How to install Abaqus 6.8 in linux
10-29-2008, 07:54 PM (This post was last modified: 02-24-2009 06:21 PM by continuum.)
Post: 1
continuum Offline
Moderator
Super Moderators
Posts: 200
Joined: Oct 2008
Hello all,

This is one way to install abaqus 6.8-1 in linux distros like centOS-5 and fedora-9. Might also work in debian/ubuntu.

Note: You need valid license and license file from abaqus

1. Prerequisites

Follow distro's documentation to perform these steps.

Install required packages:

a. Java JDK. Sun java preferred.
b. libXp
c. libstdc++5 (compat-libstdc++-33 for centOS)
d. csh

All steps require administrative (root) access, unless specified.

2. Preliminary steps

a. Copy the contents of the CD/DVD to, say, /sourcedir. Make sure that you have rw access.
b. Create installation directory.

Code:
mkdir /opt/abaqus681

3. Install Documentation

It's recommended to stay in the $HOME directory for the entire procedure with root access

First make the 'setup' in the /source executable.
(Making these files executable is most likely not necessary.)

Code:
chmod a+x /sourcedir/setup
and execute by

Code:
/bin/csh /sourcedir/setup -nosystemchecks

Follow instructions and give /tmp as the scratch dir. Instruct to install the doc in

Code:
/opt/abaqus681/

Once the documentation is complete move to the next step.

Note: We use the 'setup' file in the appropriate architecture (linux32/linux64) to perform the license and product installation.
One can also use the install.bin (after making it executable like in step-3) file in the doc or product/..pathto../install.bin directory to install the same. Sometimes it might throw some error because it looks for JVM in the wrong places.

4. Install License

Make 'setup' given in the appropriate architecture folder executable. Using this setup one can install both license and product.

Code:
/bin/csh /sourcedir/linux32or64/setup -nosystemchecks

and follow instructions and select 'install license only'.
Give the server details as 27003@YourComputerName.
Instruct to install the doc in /opt/abaqus681

Network installation (most common). Contact you System admin to obtain location of the license server.

If this is a local install
Do not try to start the license server now. Quit the installer.
Copy the license file you bought from abaqus to the /opt/abaqus681/License directory.

5. Install product

First, need to start the license server.Open up a new terminal and as a normal user (NOT as root!)

Code:
/opt/abaqus681/License/lmgrd -c /opt/abaqus681/LicenselicenseFileWithProper.Extension

and make sure that the server is up and running. That is, no errors.. Hopefully.

Run the installer by

Code:
/bin/csh /sourcedir/linux32or64/setup -nosystemchecks

Location to be installed: /opt/abaqus681/

if everything works fine then well and good. Logout off root and proceed to next step.

6. Launch the product

Remember that the license server is still running. If you stopped it or a reboot occurred then start the server by the command given in Step-5


Code:
/opt/abaqus681/Command/abaqus cae

and you should get the CAE up and running.

Note: Error such as the one shown below can come up.

Quote: /..../Python/Obj/Python.exe: error while loading shared libraries: /...../exec/lbr/libABQUTI_Zlib.so: cannot restore segment prot after reloc: Permission denied

SElinux may be preventing the launcher from executing properly. You can turn that off as being root

Code:
/usr/sbin/setenforce 0
or use the gui to turn it off. (Gnome) System>Administration>SElinux management. Or it may be listed as security.
If anyone has a better way of addressing this, please post it in this thread.


To stop, just quit the CAE and shutdown the license server by

Code:
/opt/abaqus681/License/lmgdown -c /opt/abaqus681/License/licenseFileWithProper.Extension

Of course, you can write shell scripts to automate these process. Good luck.
Hope that helped.

Please leave your comments and corrections.
If you have a different and simpler way to install, please let us know.
Thank you.
Visit this user's website Find 
Reply 
11-16-2008, 11:33 AM
Post: 2
kinematic Offline
Senior
Posts: 102
Joined: Nov 2008
Thank you.

But, is it necessary to make the install files executable? It should work as the way it is. There is nothing wrong in doing so though.
Find 
Reply 
11-19-2008, 09:48 AM
Post: 3
Van Fanel Offline
Junior
Posts: 32
Joined: Nov 2008
Thanks for the how to. But I have a small question: can you run jobs in more than one processor? (i.e. can you use HP-MPI)
Find 
Reply 
11-19-2008, 11:34 AM
Post: 4
continuum Offline
Moderator
Super Moderators
Posts: 200
Joined: Oct 2008
Yes you could. I use 2 or 4 processors depending on my job. specify either in job module or in .env file. let me know if that helps.
Visit this user's website Find 
Reply 
11-19-2008, 09:15 PM
Post: 5
kinematic Offline
Senior
Posts: 102
Joined: Nov 2008
i have had no problem running it in multiple processors...
Find 
Reply 
11-20-2008, 11:26 AM
Post: 6
Van Fanel Offline
Junior
Posts: 32
Joined: Nov 2008
I forgot to say I'm using Ubuntu Hardy 64bit.

I've tried in two ways unsuccessfully: one by specifying the MPI folder and mpirun script's path, and another by forcing MPI=THREADS. None of them worked. Since Ubuntu is not officially supported by neither HP-MPI nor Abaqus, I'll assume there is some bug, access problem, or something I haven't figured out yet in between those programmes and the OS.
Find 
Reply 
11-20-2008, 11:29 AM
Post: 7
continuum Offline
Moderator
Super Moderators
Posts: 200
Joined: Oct 2008
I haven't tried ubuntu. Have you tried setting the number of processors in the Job manager? Just to see?
I use the higmem/PAE kernel to get the most out of RAM while using 32bit.
Visit this user's website Find 
Reply 
11-20-2008, 11:34 AM
Post: 8
Van Fanel Offline
Junior
Posts: 32
Joined: Nov 2008
You mean, by typing something like:
Code:
abq675 j=run int cpu=2
in the command line?

Yep. Didn't work. Sad
Find 
Reply 
11-20-2008, 11:39 AM
Post: 9
continuum Offline
Moderator
Super Moderators
Posts: 200
Joined: Oct 2008
(11-20-2008 11:34 AM)Van Fanel Wrote:  You mean, by typing something like:
Code:
abq675 j=run int cpu=2
in the command line?

Yep. Didn't work. Sad

I do not have abaqus running now. How about from CAE? I am not an expert on command line Big Grin.
Visit this user's website Find 
Reply 
11-20-2008, 11:52 AM
Post: 10
Van Fanel Offline
Junior
Posts: 32
Joined: Nov 2008
And I'm not an expert with the CAE... Big Grin But I would assume the result is the same.
Command line and .inp programming are way better (at least for me) than CAE. There are lots of functionalities that are coded in Abaqus' core, but do not have a GUI-way for reproducing them in CAE.
Find 
Reply 
« Next Oldest | Next Newest »
Pages (3): 1 2 3 Next »
Post New Reply 


[-]
Quick Reply
Message
Type your reply to this message here.


You have selected one or more posts to quote. Quote these posts now or deselect them.
Image Verification
Image Verification
(case insensitive)
Please enter the text within the image on the left in to the text box below. This process is used to prevent automated posts.

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  ABAQUS Web Course: Classical Fracture and Failure with Abaqus continuum 0 99 08-10-2010 12:43 PM
Last Post: continuum
  Howto:Rdesktop & VPN. Linux->Windows kinematic 0 106 07-17-2010 11:07 AM
Last Post: kinematic
  Howto: Building Flash Code for Linux x64 architecture; Ubuntu AMD64 Alexvader2 1 591 02-03-2010 12:07 AM
Last Post: kyjongl
  How to install matlab student R14 v7 in linux continuum 0 393 03-28-2009 04:45 PM
Last Post: continuum
  Abaqus PDE lumpwood 4 1,140 01-27-2009 03:24 PM
Last Post: mandarin
Lightbulb How to apply torque at the end of a shell cylinder: Abaqus CAE continuum 1 896 11-14-2008 12:57 AM
Last Post: mandarin

  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread

Contact Us | Home | Forums | Return to Top | Lite (Archive) Mode | RSS Syndication

Powered By MyBB, © 2002-2010 MyBB Group | © 2010 CAE Journal (Computer Aided Engineering Journal)
Product names and trademarks are the property of the respective trademark holders.
None of the trademark holders listed are affiliated with this website or forum.
No endorsement of any information, service or product by any company or person is made or implied.