Last active
December 29, 2015 11:29
-
-
Save the-teacher/7664393 to your computer and use it in GitHub Desktop.
INSTALL UBUNTU1310
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
UBUNTU BUTTONS | |
gsettings set org.gnome.desktop.wm.preferences button-layout ':minimize,maximize,close' | |
GNOME COMMANDER | |
sudo apt-get install gnome-commander -y | |
COMMON | |
sudo apt-get update | |
sudo apt-get install build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxslt1.1 libxslt1-dev libxml2 libxml2-dev libxslt-dev autoconf libc6-dev nodejs -y | |
GIT | |
sudo apt-get install git -y | |
git --version | |
git config --global user.name "User Name" | |
git config --global user.email "[email protected]" | |
GITK | |
sudo apt-get install gitk -y | |
gitk | |
IMAGE MAGICK | |
sudo apt-get install imagemagick librmagick-ruby libmagickwand-dev -y | |
convert --version | |
MySQL | |
sudo apt-get install mysql-server mysql-common mysql-client libmysqlclient-dev libmysql-ruby -y | |
mysql --version | |
mysql -u root -pqwerty | |
POSTGRESQL | |
sudo apt-get install postgresql postgresql-client postgresql-contrib libpq-dev postgresql-server-dev-9.1 pgadmin3 -y | |
sudo -u postgres psql postgres | |
CREATE ROLE "ADMIN_NAME" PASSWORD 'qwerty' SUPERUSER CREATEDB CREATEROLE INHERIT LOGIN; | |
\q | |
sudo /etc/init.d/postgresql restart | |
psql postgres ADMIN_NAME | |
SELECT version(); | |
SELECT datname FROM pg_database; | |
\q | |
REDIS | |
sudo apt-get install redis-server -y | |
redis-server -v | |
QT for Capybara | |
sudo apt-get install libqt4-dev -y | |
RVM | |
\curl -L https://get.rvm.io | bash -s stable | |
source /home/the-teacher/.rvm/scripts/rvm | |
rvm list | |
rvm notes | |
rvm list known | |
rvm install ruby-2.0.0-p353 | |
echo 'source $HOME/.rvm/scripts/rvm' >> ~/.bashrc | |
rvm use ruby-2.0.0-p353 --default | |
gem install rails --no-ri --no-rdoc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment