Created
September 2, 2017 04:24
-
-
Save YourFriendCaspian/291a46538cb0dbb224686ecd8659eadb to your computer and use it in GitHub Desktop.
Random Linux program install commands
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
# Install Postgres | |
http://apt.postgresql.org/pub/repos/apt/ 9.4-pgdg main | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install postgresql-9.4 | |
# Install redis | |
curl -O http://download.redis.io/releases/redis-3.2.9.tar.gz | |
tar xzf redis-3.2.9.tar.gz | |
rm redis-3.2.9.tar.gz | |
make -C redis-3.2.9 | |
# Install elasticsearch | |
curl -L -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.4.1.tar.gz | |
tar -xvf elasticsearch-5.4.1.tar.gz | |
# Install Enpass | |
#echo "Download Enpass"; | |
#curl -O https://dl.sinew.in/linux/setup/5-5-3/Enpass_Installer_5.5.3 | |
#chmod +x Enpass_Installer_5.5.3 | |
#./Enpass_Installer_5.5.3 | |
#rm Enpass_Installer_5.5.3 | |
# Install oh-my-zsh | |
sudo apt-get install zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# Install tmux | |
sudo apt-get install tmux | |
# Install Chrome | |
#wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
#sudo dpkg -i google-chrome*.deb | |
#Install dotfiles | |
#\curl https://raw.githubusercontent.com/nandosousafr/dotfiles/master/bootstrap.sh | bash | |
#Install ELEMENTARY tweaks | |
#sudo add-apt-repository ppa:mpstark/elementary-tweaks-daily | |
#sudo apt-get update | |
#sudo apt-get install elementary-tweaks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment