linux mint 是基于ubuntu的,所以对ubuntu也应该是有效的。(推荐 desktop 使用 mint cinnamon 版)

安装简要步骤

setp1. 安装 rpm2cpio

step2. 使用 bash csh

step3. sudo ./install /opt/ms80

step4. cd /opt/ms80/LicensePack/etc

step5. sudo ./lp_config

step6. sudo ./lp_echovars

step7. sudo ./install /opt/ms80 y

# OK! It work’s!

# 最好安装到自己的家目录

install-materials-studio-on-ubuntu-1.jpg

install-materials-studio-on-ubuntu-2.jpg

install-materials-studio-on-ubuntu-3.jpg

install-materials-studio-on-ubuntu-4.jpg


更新 2018.01.12

安装到自己的家目录(/home/user)重启后才有用,无需 sudo。

使用 bash 很重要,不能使用 ubuntu默认的 dash,否则软件无法安装,无法运行!

1
2
# 查看使用的默认 shell 是啥。
ls -l /bin/sh

picture

ubuntu 采用的是 dash (theDebian Almquist Shell),而非 bash (GNU Bourne-Again Shell,大多数 linux 默认使用这个作为默认shell)。

修改默认的sh。

1
sudo dpkg-reconfigure dash

然后选择**【否】**

picture

完成修改。

参考1bash与dash 区别

自己看 install.log , 并设置开机自动启动  gateway 。

1
2
# 设置开机启动
/home/rachpt/Accelrys/MaterialsStudio8.0/etc/Gateway/gwstart

picture

浏览器   http://127.0.0.1:18888   查看是否成功。

使用方法

1
2
3
4
5
6
7
~/Accelrys/MaterialsStudio8.0/etc/CASTEP/bin/RunCASTEP.sh -np 8 "you ms_job path/name" 
# 不要 param 后缀的 param 文件名。
# 例子
nohup /home/rachpt/Accelrys/MaterialsStudio8.0/etc/CASTEP/bin/RunCASTEP.sh -np 7 PMA2PbI4 &
# nohup ... & 由于后台运行,
# 7 表示CPU 核心数,
# 由于是在 PMA2PbI4 任务的文件夹中打开的终端,所以任务直接使用 相对路径。

picture