| 查看: 1479 | 回复: 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 [ 来自科研家族 木虫量化 ] |
» 猜你喜欢
APS回稿时找不到投递链接是什么情况?
已经有10人回复
南方科技大学物理系周院院教授2026年博士后招聘
已经有1人回复
物理化学论文润色/翻译怎么收费?
已经有184人回复
上海交通大学陈向洋计算化学课题组诚聘2027级博士研究生
已经有8人回复
26年博士申请自荐-电催化
已经有14人回复
博士生急招!哈尔滨工业大学(深圳)绿色化学团队招聘26秋和27年入学的博士生
已经有8人回复
安徽大学物质科学与信息技术研究院罗其全教授组2026年化学博士招生(计算催化组)
已经有1人回复
现招2026北京航空航天大学联培博士1名(北航学位)-材料AI方向
已经有3人回复
普瓦捷环境与材料化学研究所 (IC2MP)博后招聘
已经有0人回复
香港科技大学(广州)方超课题组招聘全奖博士
已经有0人回复
宁夏大学化学工程与技术专业招收博士研究生
已经有1人回复
» 本主题相关价值贴推荐,对您同样有帮助:
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











回复此楼