Skip to content

Instantly share code, notes, and snippets.

@alanstevens
Created December 19, 2011 22:29
Show Gist options
  • Save alanstevens/1499222 to your computer and use it in GitHub Desktop.
Save alanstevens/1499222 to your computer and use it in GitHub Desktop.
A script to install/uninstall my default packages on a fresh Linux Mint system.
#! /usr/bin/env bash
sudo apt-add-repository 'deb http://toolbelt.herokuapp.com/ubuntu ./'
wget http://toolbelt.herokuapp.com/apt/release.key | sudo apt-key add -
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
sudo apt-get --yes install ttf-mscorefonts-installer
# RVM Dependencies
sudo apt-get --yes install build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev
sudo apt-get --yes install heroku-toolbelt
sudo apt-get --yes install unace rar unrar p7zip zip unzip sharutils uudeview mpack lha arj cabextract file-roller
sudo apt-get --yes install rabbitvcs-core rabbitvcs-nautilus rabbitvcs-thunar rabbitvcs-gedit rabbitvcs-cli
killall nautilus
sudo apt-get --yes install shutter
sudo apt-get --yes install glipper
sudo apt-get --yes install bum
sudo apt-get --yes install gufw
sudo apt-get --yes install google-chrome-stable
sudo apt-get --yes install ubuntu-tweak-0
sudo apt-get --yes install gnome-dsudo
sudo apt-get --yes install dropbox
sudo apt-get --yes install filezilla filezilla-common
sudo apt-get --yes install screenlets
sudo apt-get --yes install bleachbit
sudo apt-get --yes install conky-all
sudo apt-get --yes install gtk-recordmydesktop
sudo apt-get --yes install startupmanager
sudo apt-get --yes install mc
sudo apt-get --yes install gnome-commander
sudo apt-get --yes install bluefish
sudo apt-get --yes install dia
sudo apt-get --yes install computer-janitor-gtk
sudo apt-get --yes install agave
sudo apt-get --yes install terminator
sudo apt-get --yes install screen
sudo apt-get --yes install guake
sudo apt-get --yes install sqlitebrowser
sudo apt-get --yes install gitg
sudo apt-get --yes install giggle
sudo apt-get --yes install mongodb
sudo mkdir -p /data/db
sudo chmod -R a+rw /data/db
# sudo apt-get --yes install ntfs-3g
# sudo apt-get --yes install ntfs-config
# sudo apt-get --yes install wine1.3
# sudo apt-get --yes install playonlinux
# sudo apt-get --yes install wine
# sudo apt-get --yes install mesa-utilso
# sudo apt-get --yes install okular
# sudo apt-get --yes install avant-window-navigator
# sudo apt-get --yes install docky
# sudo apt-get --yes install monodevelop
sudo apt-get --yes remove thunderbird
sudo apt-get --yes remove firefox
sudo apt-get --yes remove vlc
sudo apt-get --yes remove pidgin
sudo apt-get --yes remove banshee
sudo apt-get --yes remove xchat
sudo apt-get --yes remove transmission-gtk
sudo apt-get --yes remove brasero
sudo apt-get --yes remove gnome-mplayer
sudo apt-get --yes remove simple-scan
sudo apt-get --yes remove totem
sudo apt-get --yes upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment