abaqus 6.13安装(ubuntu 16.04LTS)

准备:
1。sudo apt install csh ksh gcc g++ gfortran libstdc++5 build-essential make libjpeg62

安装:
1。从iso将文件拷贝出来
2。chmod 777 -R ./* 给文件权限
3。sudo /home/xx/A/setup
4。安装licenseserver
5。拷贝lic,log文件
6。打开license
sudo ./lmgrd -c path
7. 27011@xx or 27011@localhost
8. 安装完成后透明图形显示的修复:
sudo touch abaqus
sudo gedit abaqus
sudo XLIB_SKIP_ARGB_VISUALS=1 /home/xx/abaqus/Commands/abaqus cae
9. 其他显示修复:view>>toolbar>…
10. 执行 ./abaqus cae

document安装:
参考链接https://lyk6756.github.io/2016/11/18/install_abaqus2016_on_linux.html
Install 32-bit system termcap library
$ sudo updatedb
$ locate libncurses
you will see a set of libncurse.so.X files. For example:
/lib/libncurses.so.5
/lib/i386-linux-gnu/libncurses.so.5.9

If you do not see such files then you will have to install libncurses:
$ sudo apt-get install libncurses5:i386 # 32-bit version
Once you find the libnucrses.so.5.X file, run the following command:
$ sudo ln -s /lib/i386-linux-gnu/libncurses.so.5.9 /lib/libtermcap.so.2
then sudo ./setup

abaqus快捷方式
新建文件,写入
sudo /home/xx/Abaqus/DOC/Documentation/installation_info/v6.13/startServer
sudo /home/xx/Abaqus/Server/License/lmgrd -c /home/xx/Abaqus/Server/License/ABAQUS.lic
sudo XLIB_SKIP_ARGB_VISUALS=1 /home/xx/Abaqus/Commands/abaqus cae

在/etc/profile中添加:
export PATH=/home/xx/short_cut:$PATH

doc安装完成的一些记录
Congratulations! Abaqus 6.13 Documentation has been successfully installed to:
/home/xx/Abaqus/DOC
The Abaqus web server has been started on port 2080.
The Abaqus 6.13 Documentation can be viewed by opening http://xx:2080/v6.13 in a web browser.
Please have your system administrator add the command ‘/home/xx/Abaqus/DOC/Documentation/installation_info/v6.13/startServer’ to this machine’s startup file so that the Abaqus web server is automatically started after a system reboot.
The PDF documentation can be viewed by opening the following file in a PDF reader:
/home/xx/Abaqus/DOC/Documentation/docs/v6.13/pdf_books/index.pdf
Press “Done” to quit the installer.

猜你喜欢

转载自blog.csdn.net/a1099313374/article/details/86083493