-
Download the latest Raspbian Noob image from Raspberry Pi Website
-
Download win32diskimager
-
After writing the image to the SD card and booting up the Raspberry Pi, go to terminal window
-
Once in terminal window enter Raspberry Pi config by typing
sudo raspi-config
-
Select following options:
3) Boot Options > Wait For Network at Boot 4) Localisation Options > Change Timezone > (select appropriate timezone) 5) Interfacing Options > SSH > Yes 7) Advanced Options > Expand File System > Memory Split > 256 -
Enable autologin and change booting to CLI
-
Boot into console and update your Raspberry Pi by running following command
sudo apt-get update && sudo apt-get upgrade -y && sudo reboot
-
Assign a static IP address by editing the
/etc/dhcpcd.conffile and reboot the computerinterface eth0 static ip_address=192.168.1.200 # enter your ip here static routers=192.168.1.1 static domain_name_servers=192.168.1.1 8.8.8.8