Here is what i have so Far
SSh
sudo nano /etc/ssh/sshd_config
# to change ssh port

apt-get update
apt-get upgrade
Static IP
http://stuffaboutcode.blogspot.com.au/2012/05/raspberry-pi-setting-static-ip-address.html nano /etc/network/interfaces
# iface eth0 inet dhcp
iface eth0 inet static
address 192.168.1.xx <- update to suit your network
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
sudo nano /etc/resolv.conf
# add name servers here

sudo nano /etc/apt/sources.list.d/raspi.list
# add the following
deb
http://archive.raspberrypi.org/debian/ wheezy main untested
sudo apt-get update
sudo apt-get upgrade
Install apache
http://fusionstrike.com/2012/installing-apache2-raspberry-pi-debian groupadd www-data # this was all ready on mine ?
usermod -a -G www-data www-data
apt-get update
sudo apt-get install apache2 sqlite3
Install SAMBA
http://elinux.org/R-Pi_NAS # not sure if this is needed but there is info on the link
I2C (RASPBIAN)
http://nathan.chantrell.net/20120602/raspberry-pi-io-expander-board/http://www.bootc.net/projects/raspberry-pi-kernel/ sudo nano /etc/modprobe.d/raspi-blacklist.conf
comment out the line: blacklist i2c-bcm2708
sudo nano /etc/modules # add new line containing:
i2c-dev
sudo nano /etc/modprobe.d/raspi-blacklist.conf
comment out the line: blacklist i2c-bcm2708
sudo nano /etc/modules # add new line containing:
i2c-dev
w1-gpio
w1-therm
sudo apt-get install i2c-tools
# i did get a error but had installed ?
sudo adduser pi i2c
#rebbot ? i did
i2cdetect -y 0
# 2cdetect -y 0 (use i2cdetect -y 1 if you have one of the new revision 2 Raspberry Pis with mounting holes and marked as made in the UK)
0 1 2 3 4 5 6 7 8 9 a b c d e f
00: -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: 40 -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- -- -- -- -- -- -- 57 -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- 68 -- -- -- -- -- -- --
70: 70 -- -- -- -- -- -- --
#you should see something like above

sudo modprobe w1-gpio
sudo modprobe w1-therm
ls
# i had 28-000003e7b450 28-000003e7bf09 28-000003e7cc9e w1_bus_master1 3 temp sensors conected

So Far So Good
Comments Please any thing else we need ?