Skip to content

Instantly share code, notes, and snippets.

@bosskovic
Last active August 29, 2015 14:05
Show Gist options
  • Save bosskovic/0aae1d3e99b3487e73b0 to your computer and use it in GitHub Desktop.
Save bosskovic/0aae1d3e99b3487e73b0 to your computer and use it in GitHub Desktop.
After installing Ubuntu 14.04
sudo add-apt-repository -y ppa:videolan/stable-daily
sudo add-apt-repository -y ppa:otto-kesselgulasch/gimp
sudo add-apt-repository -y ppa:gnome3-team/gnome3
sudo add-apt-repository -y ppa:webupd8team/java
sudo add-apt-repository -y ppa:webupd8team/y-ppa-manager
sudo add-apt-repository -y ppa:atareao/atareao
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get update
sudo apt-get install build-essential libssl-dev
# check what is the latest version here:
# https://github.com/creationix/nvm
curl https://raw.githubusercontent.com/creationix/nvm/v0.17.2/install.sh | sh
source ~/.profile
gedit ~/.zshrc and restart terminal afterwards
# at the end of file: [[ -s /home/$USER/.nvm/nvm.sh ]] && . /home/$USER/.nvm/nvm.sh
# check the last node available
nvm ls-remote
nvm install 0.11.14
if [[ $(getconf LONG_BIT) = "64" ]]
then
echo "64bit Detected" &&
echo "Installing Google Chrome" &&
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb &&
sudo dpkg -i google-chrome-stable_current_amd64.deb &&
rm -f google-chrome-stable_current_amd64.deb
else
echo "32bit Detected" &&
echo "Installing Google Chrome" &&
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb &&
sudo dpkg -i google-chrome-stable_current_i386.deb &&
rm -f google-chrome-stable_current_i386.deb
fi
echo "Cleaning Up" &&
sudo apt-get -f install &&
sudo apt-get autoremove &&
sudo apt-get -y autoclean &&
sudo apt-get -y clean
echo "Downloading GetDeb and PlayDeb" &&
wget http://archive.getdeb.net/install_deb/getdeb-repository_0.1-1~getdeb1_all.deb http://archive.getdeb.net/install_deb/playdeb_0.3-1~getdeb1_all.deb &&
echo "Installing GetDeb" &&
sudo dpkg -i getdeb-repository_0.1-1~getdeb1_all.deb &&
echo "Installing PlayDeb" &&
sudo dpkg -i playdeb_0.3-1~getdeb1_all.deb &&
echo "Deleting Downloads" &&
rm -f getdeb-repository_0.1-1~getdeb1_all.deb &&
rm -f playdeb_0.3-1~getdeb1_all.deb
#download, extract, move to opt
sudo apt-get install openjdk-7-jdk
sudo ln -s /opt/idea/bin/idea.sh /usr/local/bin/idea.sh
sudo apt-get install calendar-indicator
sudo apt-get install my-weather-indicator
sudo apt-get install indicator-multiload
sudo apt-get install synaptic vlc gimp gimp-data gimp-plugin-registry gimp-data-extras y-ppa-manager bleachbit openjdk-7-jre oracle-java8-installer flashplugin-installer unace unrar zip unzip p7zip-full p7zip-rar sharutils rar uudeview mpack arj cabextract file-roller libxine1-ffmpeg mencoder flac faac faad sox ffmpeg2theora libmpeg2-4 uudeview libmpeg3-1 mpeg3-utils mpegdemux liba52-dev mpeg2dec vorbis-tools id3v2 mpg321 mpg123 libflac++6 totem-mozilla icedax lame libmad0 libjpeg-progs libdvdread4 libdvdnav4 libswscale-extra-2 ubuntu-restricted-extras gksu gnome-commander gthumb curl
sudo apt-get install apache2 mysql-server php5-mysql mysql-workbench libmysqlclient-dev
sudo mysql_install_db
sudo apt-get install php5 phpmyadmin libapache2-mod-php5 php5-mcrypt
gksudo gedit /etc/apache2/mods-enabled/dir.conf
gksudo gedit /etc/apache2/apache2.conf
sudo service apache2 restart
sudo apt-get install zsh git-core
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
chsh -s `which zsh`
curl -sSL https://get.rvm.io | bash -s stable --rails
sudo apt-get install pgadmin3
sudo apt-get install nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment