| 查看: 1362 | 回复: 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 [ 来自科研家族 木虫量化 ] |
» 猜你喜欢
大湾区大学刘天辉课题组招收2026级博士生(与中山大学物理学院联合培养)
已经有22人回复
PbS量子点紫外吸收
已经有0人回复
物理化学论文润色/翻译怎么收费?
已经有55人回复
比利时鲁汶大学与国家留学基金委共同资助博士研究生CSC-KU Leuven PhD Scholarship
已经有0人回复
请问四氢呋喃溶解的聚合物用甲醇沉淀时,如何使沉淀过程加速?
已经有2人回复
伦敦大学学院Benjamin Moss博士招收人工智能、原位光谱、催化相关26年博士生
已经有11人回复
Chemical Bonding at Surfaces and Interfaces,最经典的一本表面上化学相互作用教材
已经有0人回复
中国科学院成都山地灾害与环境研究所2026年特别研究助理(博士后)招聘启事
已经有0人回复
诚邀有志之士加入江苏大学环境学院合成生物学课题组!(长期接收学硕专硕、硕博连读)
已经有16人回复
一志愿南大理论与计算化学方向(070300)342分,求调剂
已经有1人回复
欢迎化学、化工、物理、材料、或计算机背景的考研咨询
已经有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













回复此楼
50