About Martin

古之学者必有师。师者,所以传道受业解惑也。人非生而知之者,孰能无惑?惑而不从师,其为惑也,终不解矣。

Install SALOME 8.3 on CentOS 7

After downloading the file from http://files.salome-platform.org/Salome/Salome8.3.0/SALOME-8.3.0-CO7.tgz. The script is as following sudo yum install freeglut atlas mesa-libGLU -y cd /opt/ tar zxf ~/Downloads/SALOME-8.3.0-CO7.tgz ./ echo “alias salome830=’/opt/SALOME-8.3.0-CO7/salome'” >> ~/.bashrc . ~/.bashrc salome830    Send article as PDF   

OpenFOAM 并行计算

现在,大多数研究生使用的工作电脑或笔记本都是多核多线程的CPU,在 OpenFOAM 中使用并行计算也非常方便。 Step 1: Copy a decomposeParDict file to your case/system folder. cp $FOAMRUN/tutorials/multiphase/interFoam/laminar/damBreak/system/decomposeParDict ./system/ Step 2: edit the decomposeParDict file FoamFile { version 2.0; format ascii; root “”; case “”; instance “”; local “”; class dictionary; object decomposeParDict; Continue reading OpenFOAM 并行计算

ssh 不能远程连接 CentOS 7 主机的处理方法

整个暑假,我都不能使用 ssh 远程连接上我的 CentOS 7 主机,只能通过 TeamViewer 连接。尽管 TeamViewer 连接使用已经很好了,TeamViewer 需要直接使用图形化的传输,势必影响到连接的快慢。因此,还是需要解决使用 ssh 的问题。 几经周折,终于找到了问题所在。因此 CentOS 7 使用 firewalld 来管理网络安全问题,而原来是使用 iptables。因此,当从原来的 CentOS 6 迁移到 7 的时候,iptables 继续使用,而未开启 firewalld。最近一次升级,不知道怎么弄的,firewalld 自动开启,而造成 ssh 不能远程利用。Firewalld 默认情况下是开启 ssh 的,但是当我检查 22 端口时,这个端口却没有开启。因此,需要开启 22 端口,不再使用 iptables. [1@CentOS7 ~]$ Continue reading ssh 不能远程连接 CentOS 7 主机的处理方法