다음을 추가하여 ~ / .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: 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 년
각 사용자마다 다른 경로를 의미합니까?
—
PeppeDAlterio
지금 나는 그것이 나를 위해 일하기를 원합니다.
—
Roy Hinkley
android-tools-adb
하여android-tools-fastboot
adb 및 fastboot를 얻을 수 있습니다. 그것은 귀하의 질문에 정확하게 대답하지는 않지만, 당신이하는 일을 인식 한 이후에 나는 의견을 남길 것이라고 생각했습니다.