Last active
August 29, 2015 14:26
-
-
Save dukex/901d27331f3fd0eac9a5 to your computer and use it in GitHub Desktop.
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
cd /tmp | |
# Theme Arc | |
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_15.04/ /' >> /etc/apt/sources.list.d/arc-theme.list" | |
wget http://download.opensuse.org/repositories/home:Horst3180/xUbuntu_15.04/Release.key | |
sudo apt-key add - < Release.key | |
# Nuvola | |
sudo sh -c "echo 'deb https://tiliado.eu/nuvolaplayer/repository/deb/ vivid stable' >> /etc/apt/sources.list.d/tiliado-nuvolaplayer.list" | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 40554B8FA5FE6F6A | |
sudo apt-get update | |
sudo apt-get install arc-theme git curl nuvolaplayer3-google-play-music zsh libevent-dev silversearcher-ag | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
# iojs | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash | |
source ~/.bashrc | |
nvm install iojs-v2.5.0 | |
nvm alias default iojs-v2.5.0 | |
nvm use 2.5.0 | |
# ruby | |
wget -O ruby-install-0.5.0.tar.gz https://github.com/postmodern/ruby-install/archive/v0.5.0.tar.gz | |
tar -xzvf ruby-install-0.5.0.tar.gz | |
cd ruby-install-0.5.0/ | |
sudo make install | |
ruby-install ruby 2.2.2 | |
cd /tmp | |
wget -O chruby-0.3.9.tar.gz https://github.com/postmodern/chruby/archive/v0.3.9.tar.gz | |
tar -xzvf chruby-0.3.9.tar.gz | |
cd chruby-0.3.9/ | |
sudo make install | |
sudo ./scripts/setup.sh | |
export PATH="$HOME/.rubies/ruby-2.2.2/bin:$PATH" | |
gem install bundler | |
# zsh, tmux | |
cd /tmp | |
wget https://github.com/tmux/tmux/releases/download/2.0/tmux-2.0.tar.gz | |
tar xvzf tmux-2.0.tar.gz | |
cd tmux-2.0 | |
./configure --prefix=/usr/local | |
make | |
sudo make install | |
sh -c "`curl -fsSL https://raw.githubusercontent.com/dukex/dotfiles/master/install.sh`" | |
mkdir ~/src | |
cd /tmp | |
# atom | |
wget https://atom.io/download/deb -O atom.deb | |
sudo dpkg -i atom.deb | |
rm -Rf ~/.atom | |
git clone [email protected]:dukex/atom-dotfile.git ~/.atom | |
# export ATOM_NODE_URL=http://gh-contractor-zcbenz.s3.amazonaws.com/atom-shell/dist | |
apm stars --user dukex --install | |
# databases | |
cd /tmp | |
## mongo | |
curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.5.tgz | |
tar -zxvf mongodb-linux-x86_64-3.0.5.tgz | |
sudo cp mongodb-linux-x86_64-3.0.5/bin/* /usr/local/bin | |
sudo mkdir -p /data/db | |
sudo chmod 777 /data/db | |
## redis | |
wget http://download.redis.io/releases/redis-stable.tar.gz | |
tar xzf redis-stable.tar.gz | |
cd redis-stable | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment