Obtendo "Atenção! PATH não está configurado corretamente ”ao fazer o uso rvm 2.0.0 --default

Acima não funciona na primeira vez, funciona na segunda vez.

Tente configurar a versão ruby ​​para 2.0.0 para qualquer nova janela do shell.

Fazendo

$ rvm use 2.0.0 --default

Warning! PATH is not properly set up, '/home/durrantm/.rvm/gems/ruby-1.9.3-p125/
bin' is not at first place,
         usually this is caused by shell initialization files - check them for '
PATH=...' entries,
         it might also help to re-add RVM to your dotfiles: 'rvm get stable --au
to-dotfiles',
         to fix temporarily in this shell session run: 'rvm use ruby-1.9.3-p125'
.
Using /home/durrantm/.rvm/gems/ruby-2.0.0-p247

Então fazendo o mesmo

$ rvm use 2.0.0 --default

agora não dá erro, ou seja

$ rvm use 2.0.0 --default
Using /home/durrantm/.rvm/gems/ruby-2.0.0-p247
durrantm.../durrantm$ 

mas novas janelas ainda estão me dando rubi 1.9.3, não 2.0.0

Minhas.bashrc arquivo tem nele:

PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
[[ -s "/home/durrantm/.rvm/scripts/rvm" ]] && . "/home/durrantm/.rvm/scripts/rvm"

Meu .bash_profile tem:

source ~/.profile
case $- in *i*) . ~/.bashrc;; esac

Tentando

rvm get stable

parece funcionar, mas no final de um monte de saída verde mostra:

Could not update RVM, get some help at #rvm IRC channel at freenode servers.

Um novo terminal com janelasrvm list rubies mostra isso:

$ rvm list rubies
Warning! PATH is not properly set up, '/home/durrantm/.rvm/gems/ruby-1.9.3-p125/bin' is not at first place,
         usually this is caused by shell initialization files - check them for 'PATH=...' entries,
         it might also help to re-add RVM to your dotfiles: 'rvm get stable --auto-dotfiles',
         to fix temporarily in this shell session run: 'rvm use ruby-1.9.3-p125'.

rvm rubies

=> ruby-1.9.3-p125 [ x86_64 ]
   ruby-1.9.3-p194 [ x86_64 ]
 * ruby-2.0.0-p247 [ x86_64 ]

# => - current
# =* - current && default
#  * - default

questionAnswers(14)

yourAnswerToTheQuestion