我通过添加以下内容更改了〜/ .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?
如果您想要所有用户使用PATH:请阅读我的答案。
—
PeppeDAlterio
@PeppeDAlterio我想添加一个自定义路径,而不是阻止。
—
Roy Hinkley 2013年
您是否为每个用户都指定了不同的PATH?
—
PeppeDAlterio
现在,我只希望它为我工作。
—
罗伊·欣克利
android-tools-adb
并android-tools-fastboot
获取adb和fastboot。它不能完全回答您的问题,但是由于我认识到您在做什么,所以我想发表评论。