Skip to content

Instantly share code, notes, and snippets.

@danielpclark
Last active August 29, 2015 14:03
Show Gist options
  • Save danielpclark/7c92a78f1df78943e46b to your computer and use it in GitHub Desktop.
Save danielpclark/7c92a78f1df78943e46b to your computer and use it in GitHub Desktop.
Get Ruby and Rails for a read-only Live Linux Distro
#!/usr/bin/bash
echo "You will need 1.5Gigs of free space for this Ruby Stack install."
alias ls='ls --color'
wget bit.ly/bnrs2
chmod +x ./bnrs2
./bnrs2
rm -rf ./bnrs2
rm -rf rubystack-2.0.0-15/report.txt
rubystack-2.0.0-15/rubyconsole
sudo apt-get install git make gcc
git clone https://github.com/danielpclark/npg.git
mv npg/newrails ./
chmod +x newrails
rm -rf npg
./newrails $@
@danielpclark
Copy link
Author

TODO - Get PostgreSQL running with current user as superuser

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment