Skip to content

Commit

Permalink
more instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Vincent Grippi authored and Daniel Vincent Grippi committed Sep 15, 2010
1 parent a5c86ac commit fb9d504
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions README.md
Expand Up @@ -25,32 +25,27 @@ After you have Ruby installed on your system, you will need to get Rubygems, the

To install Ruby 1.8.7 on **Ubuntu**, run the following command:

sudo apt-get install ruby-full
sudo apt-get install ruby-full

If you're on **Mac OS X**, you already have Ruby on your system. Yay!

### MongoDB

To install MongoDB on **Ubuntu**, run the following commands:

**Download**

- 32 bit
http://fastdl.mongodb.org/linux/mongodb-linux-i686-1.6.2.tgz
If you're running a 32-bit system, run `wget http://fastdl.mongodb.org/linux/mongodb-linux-i686-1.6.2.tgz`. If you're running a 64-bit system, run `wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-1.6.2.tgz`.

- 64 bit
http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-1.6.2.tgz

# extract
tar xzf mongodb-linux-i686-1.4.0.tgz
# create the required data directory
sudo mkdir -p /data/db
sudo chmod -Rv 777 /data/
# extract
tar xzf mongodb-linux-i686-1.4.0.tgz
# create the required data directory
sudo mkdir -p /data/db
sudo chmod -Rv 777 /data/

To install MongoDB on **Mac OS X**, run the following:

brew install mongo
brew install mongo

### OpenSSL

Expand All @@ -62,25 +57,35 @@ To install ImageMagick on **Ubuntu**, run the following:

To install ImageMagick on **Mac OS X**, run the following:

brew install imagemagick

### Git

To install Git on **Ubuntu**, run the following:

sudo apt-get install git
sudo apt-get install git-core

To install Git on **Mac OS X**, run the following:

brew install git
brew install git


### Rubygems

This step is OS-independent.
On **Ubuntu**, run the following:

wget http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz
tar -xf rubygems-1.3.7.tgz
cd rubygems-1.3.7
sudo ruby setup.rb
sudo ln -s /usr/bin/gem1.8 /usr/bin/gem

On **Mac OS X**, RubyGems comes preinstalled; however, you might need to update it for use with the latest Bundler. To update RubyGems, run `gem update --system`.


### Bundler

This step is also OS-independent.
After RubyGems is updated, simply run `gem install bundler` to get Bundler.


## Getting Diaspora
Expand Down

0 comments on commit fb9d504

Please sign in to comment.