2

Environment:

  • linux novice :)
  • tmux 1.1 was installed using apt-get
  • tmux 1.6 was downloaded, configured, built, and installed from source
  • tmux 1.1 was removed using apt-get

Problem:

  • running tmux from path tries to run it from /usr/bin instead of /usr/local/bin

deets:

    wget http://iweb.dl.sourceforge.net/project/tmux/tmux/tmux-1.6/tmux-1.6.tar.gz
    tar xvf tmux-1.6.tar.gz
    cd tmux-1.6/
    sudo apt-get install libevent-dev
    sudo apt-get install libncurses5-dev
    ./configure
    make
    make install
    ./tmux #version 1.6 worked perfectly
    cd ~
    tmux #ran old version as expected
    sudo apt-get remove tmux

results when I try to run it from ~:

    ~$tmux
    -bash: /usr/bin/tmux: No such file or directory
    ~$which tmux
    /usr/local/bin/tmux
    ~$echo $PATH
    /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
glenn jackman
  • 4,630
  • 1
  • 17
  • 20
bVector
  • 140
  • 2
  • 10

1 Answers1

9

Try hash -r to flush the bash cache.

Andreas Florath
  • 294
  • 1
  • 6