$ PATHが更新されていません。

$ PATHが更新されていません。

誤ってUbuntuコンピュータからファイルを削除しましたが、~/.bashrc端末にコマンドを入力するたびに次のエラーが発生します。

The command could not be located because '/usr/bin:/bin' is not included in the PATH environment variable.

export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin追加しようとしましたが、~/.bashrcまだ同じ問題に直面しています。

export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin端末で実行でき、うまく機能しますが、新しい端末を開くたびに手動で実行する必要があります。解決策はありますか?

~/.bashrc 内容:

case $- in
    *i*) ;;
      *) return;;
esac
HISTCONTROL=ignoreboth
shopt -s histappend
HISTSIZE=1000
HISTFILESIZE=2000
shopt -s checkwinsize
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi
case "$TERM" in
    xterm-color|*-256color) color_prompt=yes;;
esac
if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
    # We have color support; assume it's compliant with Ecma-48
    # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
    # a case would tend to support setf rather than setaf.)
    color_prompt=yes
    else
    color_prompt=
    fi
fi
if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac
if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'
    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
fi
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi
if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  elif [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
  fi
fi
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
export POCL_DEBUG=0
export POCL_DEVICES=rsim
export POCL_CACHE_DIR=$HOME/temp_pocl
export REDEFINE_HOME=$HOME/redefine/
export POCL_LEAVE_KERNEL_COMPILER_TEMP_FILES=1
export PATH=$PATH:/home/harry/redefine/bin/riscv32-gcc/bin
export LLVM_PATH=$HOME/llvm-project/build/bin
export PATH=$HOME:$LLVM_PATH

ベストアンサー1

まず、PATH明細書を削除する必要があります~/.bashrc。新しいシェルを開くたびにこれを再実行したくありません!このグローバル変数の定義所定の位置にある ~/.profileまたはファイルが存在する場合~/.bash_profile

これで直面する問題は、複数のPATH宣言が互いに上書きされるために発生します。関連する行は次のとおりです。

export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
export PATH="$PATH":/home/harry/redefine/bin/riscv32-gcc/bin
export LLVM_PATH="$HOME"/llvm-project/build/bin
export PATH="$HOME:$LLVM_PATH"

これは4つのコマンドで、各コマンドは順番に実行されます。端末で実行すると、何が起こるかを見てみましょう。

$ export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
$ echo "$PATH"
/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
$ export PATH="$PATH":/home/harry/redefine/bin/riscv32-gcc/bin
$ echo "$PATH"
/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/home/harry/redefine/bin/riscv32-gcc/bin
$ export LLVM_PATH="$HOME"/llvm-project/build/bin
$ export PATH="$HOME:$LLVM_PATH"
$ echo "$PATH"
/home/terdon:/home/terdon/llvm-project/build/bin

上記のように、最後のexportコマンドは前の変更を上書きし、次にPATH設定されます。ただあなたのディレクトリを含めてください$HOME(これは言葉ではありません。$HOMEあなたのパスにあなたのディレクトリは必要ありません!)$LLVM_PATH次へ追加$LLVM_PATH$PATHだからあなたはこれを持っている必要があります:

export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/home/harry/redefine/bin/riscv32-gcc/bin
export LLVM_PATH="$HOME"/llvm-project/build/bin
export PATH="$PATH:$LLVM_PATH"

したがって、PATHすべての定義を削除し、~/.bashrc上記の3行をあなたの定義に追加してください~/.profile

おすすめ記事