Last active
August 29, 2015 14:06
-
-
Save Anachron/ed4a5bff5a2c4fa3690c to your computer and use it in GitHub Desktop.
Installation Script for my ElementaryOS 0.3 setup (WIP)
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
| ############################################################################## | |
| # PREPERATION | |
| ############################################################################## | |
| # gdebi - Package Manager with Dependency Awareness | |
| sudo apt-get install gdebi | |
| ############################################################################## | |
| # INSTALLATION | |
| ############################################################################## | |
| # ---------------------------------------------------------------------------- | |
| # Accessories | |
| # ---------------------------------------------------------------------------- | |
| # Atom.IO - Text Editor | |
| sudo add-apt-repository ppa:webupd8team/atom | |
| sudo apt-get update | |
| sudo apt-get install atom | |
| # Furios Iso Mount - ISO Mounter | |
| sudo apt-get install furiusisomount | |
| # KeePassX - Passwort manager | |
| sudo apt-get install keepassx | |
| # Menu-Libre - Menu Editor | |
| sudo apt-get install menulibre | |
| # PeaZip - Archive Manager | |
| wget "http://downloads.sourceforge.net/project/peazip/5.4.1/peazip_portable-5.4.1.LINUX.x86_64.GTK2.tar.gz?r=&ts=1411077112&use_mirror=optimate" -O peazip_portable-5.4.1.LINUX.x86_64.GTK2.tar.gz | |
| tar -xzvf peazip_portable-5.4.1.LINUX.x86_64.GTK2.tar.gz | |
| sudo rm -rf /opt/peazip* | |
| sudo mv peazip_portable-5.4.1.LINUX.x86_64.GTK2 /opt/peazip | |
| sudo ln -sf /opt/peazip /usr/bin/peazip | |
| # Scratch - Small Text Editor | |
| sudo apt-get install scratch-text-editor | |
| # Screenshot - Desktop Screenshot Tool | |
| sudo apt-get install gnome-screenshot | |
| # Terminal - Command Line Interface | |
| sudo apt-get install pantheon-terminal | |
| # VirtualBox - Virtual OS Manager | |
| wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - | |
| sudo apt-get update | |
| sudo apt-get install virtualbox-4.3 | |
| # ---------------------------------------------------------------------------- | |
| # Games | |
| # ---------------------------------------------------------------------------- | |
| # PlayOnLinux - Wine Helper for Games & more | |
| sudo apt-get install playonlinux | |
| # 0AD - Strategy Game | |
| sudo apt-get install 0ad | |
| # Hedgewars - Worms clone | |
| sudo apt-get install hedgewars | |
| # Heroes of Newerth - DotA like | |
| wget http://dl.heroesofnewerth.com/HoNClient-3.1.1.sh | sh | |
| # Minecraft - Free Box Game | |
| sudo add-apt-repository ppa:minecraft-installer-peeps/minecraft-installer | |
| sudo apt-get update | |
| sudo apt-get install minecraft-installer | |
| # Steam - Gaming Platform | |
| sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F24AEA9FB05498B7 | |
| sudo apt-get update | |
| wget http://media.steampowered.com/client/installer/steam.deb | |
| sudo gdebi steam.deb | |
| # ---------------------------------------------------------------------------- | |
| # Graphics | |
| # ---------------------------------------------------------------------------- | |
| # Font-Manager - Font Viewer / Manager | |
| sudo apt-get install font-manager | |
| # Gimp - Image Editor | |
| sudo add-apt-repository ppa:otto-kesselgulasch/gimp-edge | |
| sudo apt-get update | |
| sudo apt-get install gimp | |
| # Inkscape - Vector Image Editor | |
| sudo apt-get install inkscape | |
| # Shotwell - Photo Viewer | |
| sudo apt-get install shotwell | |
| # Simple Scan - Easy Document Scanner | |
| sudo apt-get install simple-scan | |
| # ---------------------------------------------------------------------------- | |
| # Internet | |
| # ---------------------------------------------------------------------------- | |
| sudo apt-get install chromium | |
| sudo apt-get install deluge | |
| sudo apt-get install pidgin | |
| sudo apt-get install skype | |
| sudo apt-get install skype-wrapper | |
| # TeamViewer - Remote Desktop Control | |
| wget http://download.teamviewer.com/download/teamviewer_linux_x64.deb | |
| sudo gdebi teamviewer_linux_x64.deb | |
| sudo apt-get install thunderbird | |
| ############################################################################## | |
| # REMOVING | |
| ############################################################################## | |
| # File-Roller - Archive Manager | |
| sudo apt-get remove file-roller |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment