Last active
December 16, 2015 05:09
-
-
Save isholgueras/5382113 to your computer and use it in GitHub Desktop.
Tune up my Linux Mint DE
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
# Installing ia32-libs | |
apt-get install ia32-libs | |
# Installing LAMP | |
apt-get install mysql-server | |
apt-get install phpmyadmin | |
# Installing browsers | |
apt-get install chromium | |
# Installing nvidia drivers | |
apt-get install nvidia-kernel-dkms nvidia-glx nvidia-glx-ia32 build-essential nvidia-settings nvidia-xconfig | |
##Execute after install VERY IMPORTANT | |
nvidia-xconfig | |
##### REBOOT ##### | |
# Install Git and Subversion | |
apt-get install subversion git gitk git-gui | |
#some configs | |
git config --global user.name "Ignacio Sánchez" | |
git config --global user.email "nacho at isholgueras.com" | |
git config --global core.editor vim | |
git config --global color.ui true | |
# Install Sublime Text 2 | |
tar -xvjf Sublime\ Text\ 2*.tar.bz2 | |
mv Sublime\ Text\ 2/ /opt/sublime-text-2/ | |
ln -s /opt/sublime-text-2 /usr/local/sublime-text-2 | |
ln -s /usr/local/sublime-text-2/sublime_text /usr/local/bin/sublime_text | |
rm Sublime\ Text\ 2*.tar.bz2 | |
# Sublime Text 2 can now be run as normal user with command "sublime_text" | |
# In GNOME 2, you can add it to the application menu by: | |
# 1. Right click on the Applications menu | |
# 2. Select "edit menus" | |
# 3. Click on "Programming" | |
# 4. Select "new item" | |
# - Type: Application | |
# - Name: Sublime Text 2 | |
# - Command: sublime_text | |
# - Icon: /opt/sublime-text-2/Icon/48x48/sublime_text.png | |
# Install Java and Icedtea browsers plugin | |
apt-get install openjdk-7-jre icedtea-7-plugin | |
# Install Playonlinux | |
wget -q "http://deb.playonlinux.com/public.gpg" -O- | apt-key add - | |
wget http://deb.playonlinux.com/playonlinux_squeeze.list -O /etc/apt/sources.list.d/playonlinux.list | |
apt-get update | |
apt-get install playonlinux winetricks | |
winetricks gecko corefonts vcrun6 | |
# Install Spotify | |
echo "deb http://repository.spotify.com stable non-free" > /etc/apt/sources.list.d/spotify.list | |
# Install Dropbox | |
# exit from root | |
exit | |
https://www.dropbox.com/download?dl=packages/debian/dropbox_1.6.0_amd64.deb | |
# Install Flash player non-free | |
apt-get install flashplugin-nonfree | |
# Install windows fonts | |
apt-get install ttf-mscorefonts-installer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment