Skip to content

Instantly share code, notes, and snippets.

@koloda
Last active January 21, 2016 12:21
Show Gist options
  • Save koloda/445fd515a85205b7e930 to your computer and use it in GitHub Desktop.
Save koloda/445fd515a85205b7e930 to your computer and use it in GitHub Desktop.
Install all software after installing clean ElementaryOs
#! /bin/bash
wait
apt-get update
wait
apt-get upgrade
wait
apt-get install php5 php5-xdebug php5-xmlrpc php5-odbc php5-mysql php5-memcache php5-memcached php5-mcrypt php5-intl php5-imap php5-imagick php5-gd php5-curl php5-cli php-pear php-codesniffer
wait
apt-get install apache2 mysql-server
wait
#node
sudo apt-get install g++ curl libssl-dev apache2-utils
wait
sudo apt-get install git-core
wait
#ADD NODEJS HERE
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
npm install -g grunt-cli
wait
#composer
curl -sS https://getcomposer.org/installer | php
wait
mv composer.phar /usr/local/bin/composer
wait
#java
sudo apt-get update
wait
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections
wait
#sublime
sudo add-apt-repository ppa:webupd8team/sublime-text-3
wait
sudo apt-get update
wait
sudo apt-get install sublime-text-installer
wait
#mixins
sudo apt-get install adobe-flashplugin
sudo apt-add-repository ppa:pipelight/stable
sudo apt-get update
sudo apt-get install pipelight-multi
sudo pipelight-plugin --enable silverlight
sudo apt-get install pepperflashplugin-nonfree
sudo update-pepperflashplugin-nonfree --install
sudo apt-get install aptitude synaptic gdebi-core
sudo apt-get install vlc transmission
#browsers
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo gdebi google-chrome-stable_current_amd64.deb
apt-get install firefox
sudo apt-get install unace rar unrar p7zip-rar p7zip sharutils uudeview mpack lha arj cabextract lzip lunzip
#skype depedencies
sudo apt-get install sni-qt:i386
sudo apt-get install gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386
sudo apt-get install ia32-libs
#other tools
apt-get install aptitude mc synaptic filezilla fish pinta clipit ppa-purge cmake meld lfm fuse curlftpfs xfe
sudo apt-get autoremove
chsh -s /usr/bin/fish
sudo su
chsh -s /usr/bin/fish
wget "http://get.skype.com/go/getskype-linux-beta-ubuntu-64"
mv getskype-linux-beta-ubuntu-64 getskype-linux-beta-ubuntu-64.deb
gdebi getskype-linux-beta-ubuntu-64.deb
#elementary tweaks
sudo add-apt-repository ppa:mpstark/elementary-tweaks-daily
sudo apt-get update
sudo apt-get install elementary-tweaks
#for laptops battery economy
sudo add-apt-repository ppa:linrunner/tlp
sudo apt-get update
sudo apt-get install tlp tlp-rdw
sudo tlp start
#we forget gimp
sudo apt-get install gimp
#system cleaner
sudo apt-get install bleachbit
#nice icons
sudo add-apt-repository ppa:cybre/elementaryplus
sudo apt-get update
sudo apt-get install elementaryplus
#and we forget vim
apt-get install vim
@koloda
Copy link
Author

koloda commented Jan 20, 2016

you're welcome =)

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