grep conflicting matchers specified rvm
Getting this from RVM?
I had to upgrade grep in order to prevent it from popping up. Turns out the version I had on sarge (the default install for the Netgear ReadyNAS) was waaaaay older than rvm expected. A simple apt-get install grep fixed that.
You also want to apt-get install less, then cp in the /etc/bash.bashrc and /root/.profile to your home directory. The rvm install is weird — it complains about missing aptitude, but it only needs apt-get. You have to manually checkout rvm into a ~/.rvm file, and run the installer. I found that it wasn’t quite able to upgrade the scripts properly, I had to manually chmod them to 755 to make them executable.
Installing ree for rvm was somewhat harder. To build it I had to manually apt-get the dependencies (ree says you need to install build-essentials — but the ReadyNAS can’t install this — the main parts you need are g++ and gcc, which can be installed). Then you have to manually configure ree to —build=sparc-linux and skip the tcmalloc install. IE:
./installer -a /home/ragaskar/.rvm/rubies/ree-1.8.7-2010.02 —no-tcmalloc —dont-install-useful-gems -c “—build=sparc-linux”
It takes awhile.
But now I have a reasonable ruby on my little ReadyNAS.
(PS check this for screen support: http://www.readynas.com/forum/viewtopic.php?f=11&t=23244)