通过更新 ~/.profile 添加自定义路径不起作用

通过更新 ~/.profile 添加自定义路径不起作用

我通过添加以下内容修改了我的 ~/.profile 文件:

PATH="/user/share/android-sdk-linux/tools:$PATH"

然后我注销并再次登录,但路径未添加到 $PATH 环境变量中。我在终端中检查:

echo $PATH
/usr/share/android-sdk-linux/tools:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/lib/jvm/jdk1.7.0_17/bin

请指教

编辑

我甚至尝试过:

PATH=$PATH:/usr/share/android-sdk-linux/tools
EXPORT PATH

这里也没有运气。

编辑2

〜/.profile:

 # ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

# set path to android
# PATH = $PATH:/usr/share/android-sdk-linux/tools
# EXPORT PATH

PATH="/usr/share/android-sdk-linux/tools:$PATH"

添加到 ~/.bachrc 或 /etc/environment:

PATH="/usr/share/android-sdk-linux/tools:$PATH"

可以,但是为什么 ~/.profile 不行?

答案1

=在 bash 中给变量赋值时,不要在前面或后面使用空格。正确的做法是:

PATH="/user/share/android-sdk-linux/tools:$PATH"

要使更改生效,请重新启动计算机或.profile使用以下命令获取文件:

source ~/.profile

如果要更改所有用户的路径,请在/etc/profile文件中添加该行。再次需要重新启动。

答案2

如果我理解正确的话,您想要永久更改 PATH 环境变量的值。
在 Ubuntu 中,PATH 环境变量是在/etc/environment文件内部定义的。因此,您需要修改该文件内部的 PATH 环境变量声明,而不是 .profile 内部的声明!
仅当您想为每个用户更改 PATH 值时才使用此功能!

相关内容