我下的是1.9.2的vmd版本,Linux系统为:Red Hat Enterprise Linux Server release 6.3,官网下载vmd解压后,vi README,内容如下:

For quick installation of the binary distribution for Unix do the following:

1) Uncompress and untar the distribution into a working directory.

In this working directory, there are several subdirectories such

as bin, src, doc, data, as well as this README and a configure script.

Change to this working directory after the unpacking is complete.

2) Edit the file 'configure'; change the values for

the $install_library_dir and $install_bin_dir to a directory in

which vmd data files and executables should be installed, be sure

that you installing into a clean target directory and not overwriting

an existing version of VMD (which would otherwise give problems):

$install_bin_dir is the location of the startup script 'vmd'.

It should be located in the path of users interested in running VMD.

$install_library_dir is the location of all other VMD files.

This included the binary and helper scripts.  It should not be

in the path.

3) A Makefile must be generated based on these configuration variables

by running "./configure".

4) After configuration is complete, cd to the src directory,

and type "make install".  This will install VMD in the two

directories listed above.  Note that running "make install"

twice will print error messages because you are attempting to

overwrite some read-only files.  Similarly, if you have incorrectly

specified the target installation directories or attempt to overwrite

an existing VMD installation, you will get error messages.

5) When installed, type 'vmd' to start (make sure the

$install_bin_dir directory is in your path).

而在按照提示,vi configure文件后,我将路径改为如下两个:1. $install_bin_dir="/home/shaox/VMD" 替换原内容:$install_bin_dir="/usr/local/bin";2. $install_library_dir="/home/shaox/VMDFILE"替换原内容:$install_library_dir="/usr/local/lib/$install_name"

其他configure文件内容如下:

#!/usr/bin/env perl

# (C) Copyright 1995-2011 The Board of Trustees of the University of Illinois

#     All Rights Reserved

#

# Usage: configure [ optionlist ]   (See full option description down below)

# Perl 5.x must be in your path, and /usr/bin/env must exist in order

# for this to work correctly.

##############################################################################

# User modifiable installation parameters, can be overridden by env variables

##############################################################################

# Name of shell script used to start program; this is the name used by users

$install_name = "vmd";

# Directory where VMD startup script is installed, should be in users' paths.

$install_bin_dir="/home/shaox/VMD";

# Directory where VMD files and executables are installed

$install_library_dir="/home/shaox/VMDFILE";

# optionally override hard-coded defaults above with environment variables

if ($ENV{VMDINSTALLNAME}) {

$install_name = $ENV{VMDINSTALLNAME}

}

if ($ENV{VMDINSTALLBINDIR}) {

$install_bin_dir = $ENV{VMDINSTALLBINDIR}

}

if ($ENV{VMDINSTALLLIBRARYDIR}) {

$install_library_dir = $ENV{VMDINSTALLLIBRARYDIR}

}

然后,输入bash ./configure 命令就会出现如下错误:

./configure: line 13: =: command not found

./configure: line 16: =/home/shaox/VMD: No such file or directory

./configure: line 19: =/home/shaox/VMDFILE: No such file or directory

./configure: line 23: syntax error near unexpected token `{'

./configure: line 23: `if ($ENV{VMDINSTALLNAME}) {'

请问这是怎么回事呢?

有没有VMD的详细安装步骤可以让我参考一下呢?

linux环境vmd安装,如何在linux系统下安装VMD?相关推荐

  1. 联想打印机 linux驱动怎么安装步骤,如何在MAC系统下安装打印机驱动

    故障现象: 如何在MAC系统下安装打印机驱动?解决方案: 一.LJ2208安装苹果驱动步骤: 1.运行lenovo Lj2208 install: 2.点击"继续": 3.软件许可 ...

  2. linux关闭wps画布进程,在Deepin系统下安装WPS后一直出现一个无响应的wpsoffice进程...

    很多人在Deepin 20 Linux系统下安装WPS新版本后都出现一个无响应的wpsoffice进程,不过似乎不是共有的问题,有些人表示没有这个. 进一步说明 如果把WPS给卸载掉然后再重新安装,还 ...

  3. 终端linux输入法安装程序,在Ubuntu系统下安装百度输入法Linux版的方法

    本文介绍在Ubuntu系统下安装百度输入法Linux版(也称为百度Linux输入法)的方法,以Ubuntu 18.04版本为例说明.说明:该输入法支持在Ubuntu 18.04.1810.1904.1 ...

  4. linux卸载欧朋浏览器,如何在Ubuntu系统中安装和卸载Opera浏览器

    以下内容教您如何在Ubuntu操作系统中安装Opera浏览器. 通常,可以通过以下方法安装不同的Opera版本. 下面将向您展示如何在Ubuntu中安装Opera 55版本的浏览器. 如果不需要,则可 ...

  5. linux安装 mysql-5.7.25_Linux 系统下安装 mysql5.7.25(glibc版)

    前言:经过一天半的折腾,终于把 mysql 5.7.25 版本安装上了 Amazon Linux AMI release 2017.09系统上,把能参考的博客几乎都看了一遍,终于发现这些细节问题,然而 ...

  6. 如何在windows系统下安装swoole(cgywin环境)

    *本文已参与「掘力星计划」,赢取创作大礼包,挑战创作激励金. * swoole框架是一个很神奇很厉害的框架,它弥补了PHP的本身的一些不足之处.其实swoole确切的说是一个使用C语言编写的PHP扩展 ...

  7. linux中安装多个mysql_liunx系统下安装多个MySql数据库并做主从配置

    在网上搜索了很多资料,都没有看到像样的文档,思路不是很清晰,对第一次安装的朋友来说较为困难,经过长时间的安装尝试和查询网上零碎的知识点,终于成功的完成Linux系统下多MySql数据库安装和主从配置, ...

  8. 白鹭安装node_Mac OS X 系统下安装和部署Egret引擎开发环境

    概述 Egret基于TypeScript开发的,而TypeScript编译工具tsc是基于Node.js开发的.所以在安装过程中,我们先需要对于基础支持工具进行安装.需要安装的软件如下: Node.j ...

  9. 如何在lion系统下安装Xcode 3.2.x版本

    1.把xcode3.x转换为可读写的dmg.打开磁盘工具转换dmg. 应用程序->实用工具->磁盘工具. "转换"按钮在上边的一排按钮. 如图: www.2cto.co ...

  10. ubuntu怎么安装python3操作系统32_ubuntu系统下安装python3

    本人这里使用的是ubuntu12.04LTS系统.所以对应不同ubuntu的版本,应该也差不多. 系统默认带python2.7.3,现在因为python已经更新到python3.所以下载了个pytho ...

最新文章

  1. (转载)(官网)UE4--Character
  2. 2017-2018-1 20155234《信息安全系统设计基础》第五周学习总结
  3. wireshark 抓包调试 RTSP
  4. 公文转成电子文档需要注意的事项
  5. How to change in the Cocos2d-x project from landscape to portrait both in iOS and Android
  6. I Hate It (HDU 1754)
  7. 算法 - 贪心算法(集合覆盖问题求解)
  8. python求商和余数 考虑可能出现的异常情况_python面试题
  9. 计算机发展趋势 五笔型码,计算机五笔识别码字有哪些
  10. 搭建网站服务器必须开443端口,HTTPS端口必须一定要443吗?
  11. iOS开发之静态库.a的制作教程
  12. linux鼠标箭头消失了,Ubuntu 16.04 鼠标光标消失的解决方法(右键可弹窗,可以点击)...
  13. 网页中标签对搜索引擎的影响
  14. 一级建造师课件下载建筑工程行业会计分录汇总非常全建议收藏!
  15. Polkit (简体中文)
  16. highCharts 设置标示线
  17. iPhone开发--实时获取UIWebView中的html内容
  18. python 股票自动下单_【邢不行|量化小讲堂系列24-Python量化入门】股票自动程序化下单交易|视频教程...
  19. 微波射频领域传奇工程师的故事
  20. Xtrabackup8.0安装(rpm安装)以及commvault配置xtrabackup

热门文章

  1. 孔雀东南飞用mysql存储_孔雀东南飞的故事简介800字(孔雀东南飞主要内容介绍)...
  2. 【Python爬虫】IOS苹果商店指定APP评论爬取
  3. Problem G: 切煎饼
  4. 第三(关于set、file、args)
  5. Java毕设项目-学生档案管理系统
  6. 南京大学计算机2021年考研,2021年南京大学计算机科学与技术(081200)考研专业目录_硕士研究生考试范围 - 学途吧...
  7. 190502 Expressing Belief
  8. Win10 企业版 2016 长期服务版激活
  9. 加速进化,浪潮存储正在梦想成真
  10. 金融计算机在线使用,金融计算器使用实例.ppt