Created
December 18, 2010 23:24
-
-
Save pzol/746963 to your computer and use it in GitHub Desktop.
How to install rvm 1.9.2 under FreeBSD - this is work in progress and not complete. You have to su or sudo -i to run this
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this does not run as a complete script :( | |
pkg_add -r bash curl sudo | |
pkg_add -r git vim # can you live without it? | |
pkg_add -r libxml2 libxslt # for nokogiri later | |
pw usermod pzol -G wheel | |
bash # start bash and run the rest inside it | |
curl -# -L http://bit.ly/rvm-install-system-wide > rvm-install-system-wide | |
bash -l < rvm-install-system-wide | |
source /usr/local/rvm/scripts/rvm | |
rvm package install readline | |
rvm package install iconv | |
rvm install 1.9.2 --with-iconv-dir=$rvm_path/usr | |
rvm --default use 1.9.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the link is broken