ABAQUS Installation on LINUX Platform D. Hanumanthappa, A. Jérusalem May 5th, 2010
1.Introduction 2.Installation of Intel Compiler Suite Professional 3.Command on Linux Terminal 4.Installation of ABAQUS Software 5.Appendix CONTENTS
To run ABAQUS files, first step is to install compilers Second step is to install ABAQUS documentation Finally, to install ABAQUS software 1- Introduction
2- Installation of Intel Compiler Suite Professional In order to install ABAQUS on a LINUX platform, we should have following system requirements (we tested it on this): Processor Operating SystemUbuntu 9.10 CompilersC++, FORTRAN CD-ROMMounted Automatically To install compiler, go through the following steps; Step 1: go to Step 2: type “ Intel compiler suite professional edition for Linux ” Step 3: Fill out the registration form ( a serial number for this registration is sent to your mail-ID ) for free non-commercial version
2- Installation of Intel Compiler Suite Professional Step 4: Download the following files on “Intel compiler suite professional edition for Linux” Intel® C++ Compiler Professional Edition for Linux*Download files › Intel® Fortran Compiler Professional Edition for Linux*Download files › Step 5: When you click on “ Download files › ” following list will appear, Product for IA-32/Intel® 64 Product for IA-32 Product for Intel® 64 Select (if you have a 64 bit machine of x86_64 type) Product for IA-64 Step 6: Select Product for Intel® 64 for both C++ and Fortran compilers
2- Installation of Intel Compiler Suite Professional Step 7: The downloaded files will look similar as below, l_cproc_p_ _intel64.tgz(file for C++ compiler) l_cprof_p_ _intel64.tgz(file for Fortran compiler) NCOM_L_CMP__NDM4-ZN42BLPS.lic(this is a License File, sent to your at the time of registration) Step 8: The downloaded files is of.tgz format ( it is a double compressed folder), it can be unzipped in the following way on your Linux terminal For Ex.: tar xvzf l_cproc_p_ _intel64.tgz tar xvzf l_cprof_p_ _intel64.tgz Note: By using tar command we can unzip.tgz folder
2- Installation of Intel Compiler Suite Professional Step 9: Finally to install C++ and Fortran compiler use the following Command on Linux terminal For Ex.: l_cproc_p_ _intel64/install l_cprof_p_ _intel64/install Note: By using sudo apt-get install command, we can install packages that are on the Ubuntu repository, but these packages are installed manually by us and have their own installation script
3- Command on Linux Terminal Step 1: mkdir programs PART 1 Step 2: cd programs Step 3: ls Step 4: mkdir intelcompilers Step 5: ls Step 6: cp -r /home/jeru/Downloads/l_cproc_p_ _intel64.tgz./ Step 7: cp -r /home/jeru/Downloads/l_cprof_p_ _intel64.tgz./ Step 8: cp /home/jeru/Downloads/NCOM_L_CMP__NDM4- ZN42BLPS.lic./ Step 9: tar xvzf l_cproc_p_ _intel64.tgz Step 10: tar xvzf l_cprof_p_ _intel64.tgz Step 11: Step 12: More information on the installation:
4- Installation of ABAQUS Software PART 2 (you need to be root, or use “sudo” in front of all commands) Step 1: mkdir abaqus Step 2: /media/cdrom/setup -nosystemchecks Step 3: Scratch directory: choose /tmp Step 4: Keep pressing NEXT ( All the Abaqus files will get installed ) Step 5: abq69ef1.exe cae& Step 6: ABAQUS work bench will be launched
5- Appendix mkdirmake directories cdchange directory lslist directory contents cp copy files cp -rcopy recursively (and directory) tar cvzf compressed_file.tgz file1 file2 folder1/ create a new archive tar xvzf compressed_file.tgz extract the contents of an archive