GAMIT相關閱讀:http://www.linuxidc.com/GAMIT/
GAMIT10.4下載在Linux公社5號FTP服務器,具體下載見 http://www.linuxidc.net/thread-1186-1-1.html
========補充======================
SSH 後台運行命令
your command &
ctrl + d
then close ssh
==================================
糾結了一天,終於看到曙光。
前提:
SUSE服務器上,gcc/liX11-dev/tcsh等等都有安裝。
問題:GAMIT10.4安裝結束,並有如下提示:
Don't forget to set your : path to include /data/geodesy/gamit/gamit/bin and /data/geodesy/gamit/kf/bin
: HELP_DIR environment variable in you shell profile
(in .cshrc/.tcshrc add: setenv HELP_DIR /data/geodesy/gamit/help/)
: INSTITUTE evnironment variable in your shell profile
(in your .cshrc/.tcshrc add: setenv INSTITUTE where_i_work)
where_i_work is a 3 character identifier for your solutions
自己在GAMIT目錄下建立.cshrc。運行doy,出現錯誤提示:command not found。
最終在劉超的鼎力幫助下,完成SUSE系統下的GAMIT安裝工作。總結如下:
1)主目錄下 ls -a
顯示隱藏文件.bashrc。
2)vim .bashrc
(點擊a,進入編輯模式;:x-保存退出;:q!-不保存強制退出)
在.bashrc內加入如下內容:
#-------------------------------------#
# below is edited for GAMIT, by whh on 20111012
gamitpath=/data/geodesy/gamit
export PATH=$PATH:$gamitpath/gamit/bin
export PATH=$PATH:$gamitpath/kf/bin
export PATH=$PATH:$gamitpath/gamit/com
#export PATH=$PATH:/data/geodesy/gamit/com
#export PATH=$PATH:/data/geodesy/kf/bin
#export PATH=$PATH:/data/geodesy/gamit/bin
#--------------------------------------#