A couple of things to do after first booting up the pi.\\

----
Run ''sudo raspi-config'' to change the password,\\
then set up the ''Internationization'' ''locales'' and ''timezone''.\\
Set ''SSH'' to boot on startup\\
When you setup for a headless server, you can change the ''Boot'' to ''text''\\

----
Give your Raspberry Pi having a static IP address:
<code>
sudo nano /etc/network/interfaces
</code>

Then change this line:\\
''iface eth0 inet dhcp''\\
or\\
''iface eth0 inet manual''\\
into:\\
''iface eth0 inet static''\\
and add the following lines below the iface line:\\
''address 192.168.1.200'' (change this with your desired address for the Pi)\\
''netmask 255.255.255.0''\\
''network 192.168.1.0''\\
''broadcast 192.168.1.255''\\
''gateway 192.168.1.1''\\
