通过更新〜/ .profile添加自定义路径而无法正常工作


14

我通过添加以下内容更改了〜/ .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?


注意,在13.04及更高版本中,可以直接从软件中心安装android-tools-adbandroid-tools-fastboot获取adb和fastboot。它不能完全回答您的问题,但是由于我认识到您在做什么,所以我想发表评论。
Ian Santopietro

如果您想要所有用户使用PATH:请阅读我的答案。
PeppeDAlterio

@PeppeDAlterio我想添加一个自定义路径,而不是阻止。
Roy Hinkley 2013年

您是否为每个用户都指定了不同的PATH?
PeppeDAlterio

现在,我只希望它为我工作。
罗伊·欣克利

Answers:


2

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


完全没有指出。如果系统上有多个用户怎么办?
RaduRădeanu13年

是的,您是对的...我在回答中添加了“警告”。谢谢
PeppeDAlterio

我做。那是故意的。
罗伊·欣克利

15

=在bash中为变量分配值之前或之后,请勿使用空格。正确的方法是:

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

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

source ~/.profile

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


1
删除空格并逐字引用路径,但在echo中仍然没有。
罗伊·欣克利

你能引擎收录的输出cat ~/.profileecho $PATH
Ian Santopietro

@AndroidAddict您需要重新启动或~/.profile在终端输入源,直到重新启动:source ~/.profile
RaduRădeanu2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.