| 查看: 1523 | 回复: 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人回复
2026第二届先进功能材料与器件学术研讨会——探功能材料精髓·研先进器件新章!
已经有4人回复
物理化学论文润色/翻译怎么收费?
已经有109人回复
中科院西安光机所——聚焦功能材料创新|诚邀参与 2026 年度学术研讨会。
已经有1人回复
中科院西安光机所——促进学术交流,推动产学研融合,分享领域成果,加强校企合作。
已经有1人回复
中科院西安光机所——促进学术交流,推动产学研融合,分享领域成果,加强校企合作。
已经有0人回复
分子动力学 Plumed教程求助
已经有0人回复
微纳hub,微纳加工的宝库
已经有0人回复
» 本主题相关价值贴推荐,对您同样有帮助:
linux系统安装过程中出问题,急求高手指教!
已经有4人回复
【求助】求 linux系统下fiuent的安装说明
已经有3人回复
【求助】linux系统怎么安装拨号上网,怎么在linux安装autodock
已经有7人回复
【求助】linux下怎么安装VESTA软件以及建模?
已经有3人回复

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

3楼2012-07-29 21:06:12
【答案】应助回帖
★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★
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











回复此楼