-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
49 lines (33 loc) · 789 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# TODO: check environment, and set alias to do as the romans do
alias install='sudo aptitude install'
# OS X:
# alias install='sudo port install'
# RedHat/Fedora (if I ever use this!):
# alias install='sudo yum install'
# install some basic necessities #
install emacs
install git
install screen
install subversion
# likely already installed on any LAMP stack, but just to be safe...
install ufw
install mysql
install psql
install sshd
install apache2
install php5
install perl
# Z Shell #
install zsh
# change shell
chsh -s `which zsh`
# Ruby on Rails #
install ruby
# TODO: use git or svn to slurp in all my standard config files
# .aliases
# .bashrc, .bash_profile
# .zshrc, .z etc
# set up ~/bin directory #
mkdir ~/bin
# ??
# cd() { builtin cd "$@"; print -D $PWD; }