Skip to content

Instantly share code, notes, and snippets.

@Livin21
Last active November 26, 2015 08:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Livin21/8e50d56cd3f5503d0438 to your computer and use it in GitHub Desktop.
Save Livin21/8e50d56cd3f5503d0438 to your computer and use it in GitHub Desktop.
Boot Strapping Ubuntu
#List of Programs:
#XDM, Wine, Dex2jar, traceroute, virtualbox, android-tools-adb, #sublime2, Telegram, JAVA 7, VLC, Gimp, apache2, php5, libapache2-mod-#php5, php5-mcrypt, mysql-server, libapache2-mod-auth-mysql, php5-#mysql, google chrome and media plugin extras
sudo add-apt-repository -y ppa:videolan/stable-daily
sudo add-apt-repository -y ppa:otto-kesselgulasch/gimp
sudo add-apt-repository -y ppa:maarten-baert/simplescreenrecorder
sudo add-apt-repository -y ppa:noobslab/apps
sudo add-apt-repository -y ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get -y upgrade
#sudo apt-get dist-upgrade
sudo apt-get -y install git xdman kazam simplescreenrecorder
sudo apt-get -y install wine1.6
sudo apt-get -y install dex2jar
sudo apt-get -y install traceroute
sudo apt-get -y install virtualbox
sudo apt-get -y install android-tools-adb
sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get -y install sublime-text
sudo add-apt-repository ppa:atareao/telegram
sudo apt-get update
sudo apt-get -y install telegram
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get -y install oracle-java7-installer
sudo update-java-alternatives -s java-7-oracle
sudo apt-get -y install oracle-java7-set-default
sudo apt-get -y install vlc gimp gimp-data gimp-plugin-registry gimp-data-extras
bleachbit oracle-java7-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 libdvdcss2 libdvdread4 libdvdnav4 libswscale-extra-2 ubuntu-restricted-extras
sudo apt-get -y install apache2 php5 libapache2-mod-php5 php5-mcrypt mysql-server libapache2-mod-auth-mysql php5-mysql
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 " Thank Us Later :)
www.LmntrX.com"
#Thank Us Later :)
#LmntrX
#www.lmntrx.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment