| 查看: 1365 | 回复: 3 | ||
| 当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖 | ||
gongyiweimu木虫 (著名写手)
|
[求助]
Linux系统下GMIN软件安装及使用
|
|
|
我下载GMIN的svn.tar.bz2文件,但是解压后没有发现是soft文件夹,不知道如何安装,求高手指点,要是用过GMIN的高手能指点一下就更好了! GMIN软件的主页:http://www-wales.ch.cam.ac.uk/GMIN/ 本人对linux系统使用很弱,以下是我所知道的tar.bz2源代码包安装方式: 1、找到相应的软件包,比如soft.tar.bz2,下载到本机某个目录; 2、打开一个终端,su -成root用户; 3、cd soft.tar.bz2所在的目录; 4、tar -xjvf soft.tar.bz2 //一般会生成一个soft目录 5、cd soft 6、./configure 7、make 8、make install [ 来自科研家族 木虫量化 ] |
» 猜你喜欢
高效微纳米储能材料与产业化推进实验室 苏州 招收硕士研究生(含调剂)
已经有0人回复
高效微纳米储能材料与产业化推进实验室 苏州 招收硕士研究生(含调剂)
已经有2人回复
物理化学论文润色/翻译怎么收费?
已经有133人回复
化学化工学院 招收化工、化学、材料等相关方向研究生(学硕、专硕都有调剂名额)
已经有1人回复
河海大学 (211.双一流高校)钙钛矿光电实验室丁勇团队欢迎有志青年!
已经有3人回复
黑龙江省原子能研究院化学课题组招收2026级化学专业或化学相关专业硕士生
已经有0人回复
高效微纳米储能材料与产业化推进实验室 苏州 招收硕士研究生(含调剂)
已经有0人回复
温州大学新能源材料微观溯源课题组招收2026级博士研究生(材料、化学方向)
已经有6人回复
材料与化工 323 英一+数二+物化,一志愿:哈工大 本人本科双一流
已经有5人回复
26申博
已经有2人回复
» 本主题相关价值贴推荐,对您同样有帮助:
linux系统安装过程中出问题,急求高手指教!
已经有4人回复
【求助】求 linux系统下fiuent的安装说明
已经有3人回复
【求助】linux系统怎么安装拨号上网,怎么在linux安装autodock
已经有7人回复
【求助】linux下怎么安装VESTA软件以及建模?
已经有3人回复

gongyiweimu
木虫 (著名写手)
- 应助: 4 (幼儿园)
- 金币: 2887.8
- 散金: 95
- 红花: 11
- 帖子: 1771
- 在线: 506.7小时
- 虫号: 879920
- 注册: 2009-10-21
- 性别: GG
- 专业: 环境污染化学

3楼2012-07-29 21:06:12
2楼2012-07-29 18:21:14
【答案】应助回帖
★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★
gkf高: 金币+4 2013-08-26 09:38:34
gongyiweimu: 金币+10, ★★★★★最佳答案, 谢谢啦,要是早一年就好 2013-08-27 18:05:52
gkf高: 金币+4 2013-08-26 09:38:34
gongyiweimu: 金币+10, ★★★★★最佳答案, 谢谢啦,要是早一年就好 2013-08-27 18:05:52
|
你可以按照下面这个说明来进行安装,但是要根据你自己的机器环境做些改动,步骤其实就两步,cmake产生makefile文件,然后再make即可。 Compilation with cmake ====================== With cmake, the build is done in a separate directory from the source. 1. Make a build directory (typically GMIN/bin/build). 2. From within that directory, tell cmake what to compile $ cmake /path/to/source 3. Build GMIN using the automatically generated Makefile $ make -j The -j flag does the compilation in parallel Changing options ---------------- You can use the in-terminal gui ccmake to adjust all compilation options. This includes which target executables to make (e.g. amber, charmm) From whithin the build directory $ ccmake . You may need to redo the cmake setup $ cmake . choosing the fortran compiler ----------------------------- To select the portland group fortran compiler the cmake build command is modified like $ FC=pgf90 cmake /path/to/source/ Compiling with MPI ------------------ The MPI compilation with cmake currently only works with pgi (I think). The command to build with MPI is a bit daft, but this is what works. You need to specify the mpi compiler, you need to turn on the MPI precompiler flag (this really aught to be done automatically), and you need to tell cmake which mpi compiler to use (becuase they are all called mpif90). $ FC=mpif90 cmake /path/to/source/ -DWITH_MPI=true -DCOMPILER_SWITCH=pgi |
4楼2013-08-26 08:52:02













回复此楼