Create a gist now

Instantly share code, notes, and snippets.

What would you like to do?
i installed ruby doing this.
sudo apt-get -y install libc6-dev libssl-dev libmysql++-dev libsqlite3-dev make build-essential libssl-dev libreadline5-dev zlib1g-dev
$ cd ~
$ cd usr/src/
$ wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p243.tar.gz
$ tar xzvf ruby-1.9.1-p243.tar.gz
$ cd ruby-1.9.1-p243/
$ ./configure --prefix=/usr --enable-pthread
$ sudo make
$ sudo make install
$ruby -v
-> ruby 1.9.1p243 (2009-07-16 revision 24175) [i686-linux]
how could i unistalled?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment