Skip to content

Instantly share code, notes, and snippets.

@PauloLuan
Created November 26, 2012 12:53
Show Gist options
  • Save PauloLuan/4148063 to your computer and use it in GitHub Desktop.
Save PauloLuan/4148063 to your computer and use it in GitHub Desktop.
Script que prepara o ambiente de desenvolvimento completo para uma sistema operacional novo.
#!/bin/bash
sudo apt-get update
# UN-WELCOME
sudo apt-get remove -y banshee
sudo apt-get remove -y brasero
sudo apt-get remove -y pidgin
sudo apt-get remove -y thunar
sudo apt-get remove -y thunderbird
sudo apt-get remove -y tomboy
sudo apt-get remove -y xchat
# FOR DEVELOPERS
sudo apt-get install -y apt-rdepends
sudo apt-get install -y ark
sudo apt-get install -y build-essential
sudo apt-get install -y cloc
sudo apt-get install -y cmake
sudo apt-get install -y cmake-gui
sudo apt-get install -y elinks
sudo apt-get install -y git
sudo apt-get install -y git-core
sudo apt-get install -y gitk
sudo apt-get install -y iotop
sudo apt-get install -y kate
sudo apt-get install -y kdiff3
sudo apt-get install -y krdc
sudo apt-get install -y libgd2-xpm-dev
sudo apt-get install -y libgdal1-dev
sudo apt-get install -y libgeotiff-dev
sudo apt-get install -y mysql-server
sudo apt-get install -y mysql-workbench
sudo apt-get install -y nmap
sudo apt-get install -y openjdk-6-jdk
sudo apt-get install -y openssh-client
sudo apt-get install -y openssh-server
sudo apt-get install -y opera
sudo apt-get install -y pgadmin3
sudo apt-get install -y postgresql
sudo apt-get install -y python
sudo apt-get install -y python-django
sudo apt-get install -y python-sqlite
sudo apt-get install -y traceroute
sudo apt-get install -y valgrind
sudo apt-get install -y vim
sudo apt-get install -y wondershaper
sudo apt-get install -y zlib1g-dev
# BASIC
sudo apt-get install -y arj
sudo apt-get install -y avidemux
sudo apt-get install -y cabextract
sudo apt-get install -y cheese
sudo apt-get install -y comix
sudo apt-get install -y dolphin
sudo apt-get install -y gimp
sudo apt-get install -y inkscape
sudo apt-get install -y k3b
sudo apt-get install -y lha
sudo apt-get install -y mpack
sudo apt-get install -y p7zip-full
sudo apt-get install -y p7zip-rar
sudo apt-get install -y rar
sudo apt-get install -y rhythmbox
sudo apt-get install -y sharutils
sudo apt-get install -y skype
sudo apt-get install -y unace
sudo apt-get install -y unrar
sudo apt-get install -y unzip
sudo apt-get install -y usb-creator-gtk
sudo apt-get install -y uudeview
sudo apt-get install -y wine
sudo apt-get install -y zip
sudo apt-get install -y zoo
# GAMES
# sudo apt-get install -y lbreakout2
# sudo apt-get install -y anagramarama
# sudo apt-get install -y frozen-bubble
# sudo apt-get install -y gnome-cards-data
# sudo apt-get install -y gnome-games
# sudo apt-get install -y klavaro
# sudo apt-get install -y xmoto
sudo apt-get -y upgrade
sudo apt-get -y autoremove
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment