Created
January 28, 2012 12:13
-
-
Save bpizzi/1694108 to your computer and use it in GitHub Desktop.
Archlinux Packages
This file contains 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
#!/bin/sh | |
#### As root ####################################################################################### | |
pacman -Syu | |
pacman -S pacman | |
#Prerequites | |
adduser | |
pacman -S sudo | |
#### As user ####################################################################################### | |
#Prerequites | |
sudo pacman -S git gvim openssh | |
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh | |
#Webdev | |
sudo pacman -S nginx redis mongodb mysql php-fpm nodejs php-apc php-intl php-mcrypt php-pear php-gd php-sqlite | |
#VM | |
sudo pacman -S virtualbox virtualbox-additions | |
#Util | |
sudo pacman -S ack ranger mutt nzbget feh evince tmux rxvt-unicode acl xterm zsh dnsutils mlocate multitail htop rsync sshfs curlftps | |
#Compression | |
sudo pacman -S p7zip unrar zip unzip par2cmdline | |
#Media | |
sudo pacman -S vlc mpd amarok gimp imagemagick | |
#General dev | |
sudo pacman -S erlang ruby python ctags irssi pidgin subversion mercurial | |
#Fonts | |
sudo pacman -S ttf-dejavu ttf-freefont ttf-inconsolata | |
#XORG | |
sudo pacman -S xorg xorg-xinit | |
sudo pacman -Rdd glib | |
sudo pacman -S nvidia nvidia-utils | |
sudo pacman -S xmobarrc dmenu nitrogen | |
#Yaourt | |
# /etc/pacman.conf | |
# [archlinuxfr] | |
# Server = http://repo.archlinux.fr/$arch | |
yaourt xmonad-darcs-contrib | |
sudo pacman -S yaourt | |
## AUR ############################################################################################ | |
#XORG | |
yaourt --noconfirm xmonad-darcs | |
yaourt --noconfirm xmonad-darcs-contrib | |
yaourt --noconfirm ttf-ms-fonts | |
#Dev | |
yaourt --noconfirm rabbitmq | |
#Browser | |
yaourt --noconfirm google-chrome | |
yaourt --noconfirm firefox | |
#Install flash after every browser has been installed | |
sudo pacman -S flashplugin libvdpau | |
## PECL ########################################################################################## | |
sudo pecl install mongo | |
## NPM ########################################################################################### | |
sudo npm install -g coffee-script | |
sudo npm install -g less | |
## GEM ########################################################################################### | |
sudo gem update --system | |
sudo gem install compass | |
sudo gem install watchr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment