Created
November 5, 2011 21:08
-
-
Save zealot128/1342025 to your computer and use it in GitHub Desktop.
ubuntu apt install eee-pc
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
sudo su | |
apt-add-repository ppa:chromium-daily/ppa | |
apt-add-repository ppa:eee-control/eee-control | |
apt-add-repository ppa:ubuntu-mozilla-daily/ppa | |
apt-get update && sudo apt-get install build-essential eee-control vlc cpufrequtils \ | |
powertop htop install libncurses-dev libgnome2-dev libgtk2.0-dev libatk1.0-dev \ | |
libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev git-core guake \ | |
openssh-server chromium-browser thunderbird thunderbird-locale-de \ | |
exuberant-ctags ack-grep python-pygments | |
apt-get upgrade | |
apt-get dist-upgrade | |
# VIM | |
cd /usr/local/src | |
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2 | |
tar jxf vim-7.3.tar.bz2 | |
cd vim73/ | |
./configure --with-features=huge --enable-gui=gnome2 | |
make | |
make install | |
exit # leave su | |
# VIM Config | |
git clone https://github.com/outsmartin/vimfiles.git ~/.vim | |
ln -s ~/.vim/vimrc .vimrc | |
cd ~/.vim | |
git submodule update --init | |
# enable color prompt | |
sed "s/^#force_color_prompt/force_color_prompt/" -i ~/.bashrc | |
. ~/.bashrc | |
# rails ready | |
wget --no-check-certificate https://raw.github.com/joshfng/railsready/master/railsready.sh && bash railsready.sh | |
# Configs | |
echo "[color] | |
diff = auto | |
status = auto | |
branch = auto | |
[core] | |
excludesfile = ~/.gitignore | |
[alias] | |
c = commit -m | |
a = add | |
st = status | |
ci = commit | |
[user] | |
name = Stefan Wienert | |
email = [email protected] | |
" > ~/.gitconfig | |
# irbrc | |
curl https://raw.github.com/gist/138432/920c28ffa73a5e5f54a9a72768cd81741890a550/gistfile1.rb > ~/.irbrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment