Short note three


Setup new Raspberry Pi

Use pre-configured MicroSD card, or configure a new one (instructions for Windows):

Insert SD card in Pi, connect network cable and power it up.

After a few seconds you should see a new DHCP assigned IP address on your network.

Should now be able to SSH to the Pi using the default credentials, pi / raspberry.

WiFi is disabled until Country is set, run rasbi-config to do that,
along with setting locale, timezone, network attributes, etc.
Make sure to also change hostname by editing /etc/hostname.

Edit /etc/dhcpcd.conf and set static IP addresses for wlan0 and eth0, or not if you’re happy with DHCP assigned addresses.
Example dhcpd.conf:

interface eth0
static ip_address=192.168.1.204/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.53

interface wlan0
static ip_address=192.168.1.203/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.53

See also: Boot Pi from USB disk

Comment on this article using form below. Requires email login only for authentication. HTML forbidden, Markdown only.