创建符号链接并设置环境变量

创建符号链接并设置环境变量

我从源代码编译了Gamit/Globk软件。安装目录的路径为“/home/sorbilene/GAMIT”。

我需要创建链接并设置环境变量才能顺利运行软件。我是 ubuntu 的新用户,所以我不太了解它们。以下是必要的链接和设置变量。

1-) 将所需的 ~/gg 链接到新安装的软件:

ln -s -f /home/sorbilene/GAMIT ~/gg

2-)不要忘记设置你的:路径以包含

 /home/sorbilene/GAMIT/gamit/bin and /home/sorbilene/GAMIT/kf/bin 

                     : HELP_DIR environment variable in you shell profile
                       (in .cshrc/.tcshrc add: setenv HELP_DIR /home/sorbilene/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 

有人能解释一下它们代表什么以及我如何设置这些路径吗?

答案1

将所需的 ~/gg 链接到新安装的软件:

你必须跑

ln -s /home/sorbilene/GAMIT/bin/the-executable(binary-command) ~/gg

例如:如果我的主页上有一个名为 a.txt 的文件,并且想在桌面上创建一个链接,那么运行命令ln -s ~/a.txt ~/Desktop

如果我想将链接重命名为新名称,假设为 b.txtln -s ~/a.txt ~/Desktop/b.txt

如何设置 PATH

设置 PATH 环境。将二进制文件的路径添加到 PATH。

PATH=$PATH:/home/sorbilene/GAMIT/bin

现在要使此内容对该用户持久有效,您必须添加到.bashrc

gedit .bashrc

然后添加这一行

PATH=$PATH:/home/sorbilene/GAMIT/bin

保存并关闭然后运行命令

source .bashrc

答案2

打开终端并输入:

cd ~

gksu gedit .bashrc

并在文件中输出以下几行:

export PATH=$PATH:/usr/local/gamit/gamit/bin

export PATH=$PATH:/usr/local/gamit/kf/bin

export PATH=$PATH:/usr/local/gamit/com

export HELP_DIR=/usr/local/gamit/help/

export INSTITUTE=UGM

您需要根据您的安装提供路径。

参考这里

相关内容