Last active
July 2, 2017 14:09
-
-
Save Jiab77/f72a9c628b4a17901eb6a7d05f70a8de to your computer and use it in GitHub Desktop.
HowTo Install the perfect Elementary-OS
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
# Download Elementary OS from here: | |
# http://sourceforge.net/projects/elementaryos/files/stable/ | |
# Will fix all static version by some automatic detection code later | |
# First you update your system | |
sudo apt update --fix-missing -y && sudo apt dist-upgrade -y | |
# Install Google Chromium | |
sudo apt install -y chromium-browser chromium-browser-l10n chromium-codecs-ffmpeg-extras | |
# Clean-up System | |
sudo apt autoremove --purge -y | |
sudo apt autoclean -y | |
# Remove some Switchboard Plug's | |
#sudo rm -rf /usr/lib/plugs/GnomeCC/gnomecc-bluetooth.plug | |
#sudo rm -rf /usr/lib/plugs/GnomeCC/gnomecc-wacom.plug | |
# Install File Compression Libs | |
sudo apt install unace unrar zip unzip xz-utils p7zip-full p7zip-rar sharutils rar uudeview mpack arj cabextract file-roller | |
# For fresh Nvidia Drivers | |
sudo add-apt-repository ppa:xorg-edgers/ppa | |
sudo apt update --fix-missing -y && sudo apt dist-upgrade -y | |
# For Nvidia Cards | |
sudo apt install nvidia-331 | |
# For AMD/ATI Cards | |
sudo apt install fglrx-installer | |
# Install Ubuntu Restricted Extras | |
sudo apt install ubuntu-restricted-extras | |
# Enable all Startup Applications | |
cd /etc/xdg/autostart | |
sudo sed --in-place 's/NoDisplay=true/NoDisplay=false/g' *.desktop | |
# Enable Movie DVD Support | |
sudo apt install libdvdread4 | |
sudo /usr/share/doc/libdvdread4/install-css.sh | |
# Install a Firewall Application | |
sudo apt install gufw | |
# Install Gimp | |
sudo apt install gimp gimp-data gimp-plugin-registry gimp-data-extras | |
# if not installed | |
# Install the Dynamic Kernel Module Support Framework | |
sudo apt install dkms | |
# Install Steam | |
wget http://repo.steampowered.com/steam/signature.gpg && sudo apt-key add signature.gpg | |
sudo sh -c 'echo "deb http://repo.steampowered.com/steam/ precise steam" >> /etc/apt/sources.list.d/steam.list' | |
sudo apt update | |
sudo apt install steam | |
# Install PlayonLinux | |
# Run Windows Applications and Games on Linux | |
wget -q "http://deb.playonlinux.com/public.gpg" -O- | sudo apt-key add - | |
sudo wget http://deb.playonlinux.com/playonlinux_precise.list -O /etc/apt/sources.list.d/playonlinux.list | |
sudo apt update | |
sudo apt install playonlinux | |
# Install Skype | |
sudo apt-add-repository "deb http://archive.canonical.com/ubuntu/ precise partner" | |
sudo apt update && sudo apt install skype | |
# Install Libre Office 5 | |
sudo apt install libreoffice | |
# Install the latest git Version | |
sudo apt install git | |
# Install the latest Version of VirtualBox | |
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - | |
sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian precise contrib" >> /etc/apt/sources.list.d/virtualbox.list' | |
sudo apt update | |
sudo apt install virtualbox-4.3 | |
# Install Thunderbird | |
# if you want install Thunderbird instead of Pantheon Mail | |
# first remove Pantheon Mail | |
sudo apt remove --purge -y pantheon-mail | |
sudo apt install thunderbird |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment