मैंने निम्नलिखित जोड़कर अपनी ~ / .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
यहाँ भी कोई किस्मत नहीं।
संपादित करें २
~ / .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 या / आदि / पर्यावरण में जोड़ना:
PATH="/usr/share/android-sdk-linux/tools:$PATH"
काम करता है, लेकिन क्यों नहीं ~ /।
android-tools-adb
औरandroid-tools-fastboot
सीधे इंस्टॉल कर सकते हैं । यह बिल्कुल आपके सवाल का जवाब नहीं देता है, लेकिन जब से मैंने पहचाना कि आप जो कर रहे थे मुझे लगा कि मैं एक टिप्पणी छोड़ दूंगा।