After you’ve copied Raspbian Lite (recommended) to the Raspberry Pi’s microSD card (see my guide in the Drupal Pi documentation), you need to:
- Find the Raspberry Pi’s IP address (I use Fing for this purpose1), and connect via SSH:
ssh pi@[IP-ADDRESS]
(default username ispi
and default password israspberry
). - Default username is
pi
and default password israspberry
. - Once logged in, run
sudo raspi-config
, and follow the prompts:- Select ‘Change User Password’ if you would like to set a different password for the ‘pi’ account.
- Set Overclocking options if you so desire.
- Select ‘Finish’ and restart the Pi so the filesystem is expanded.
After doing this, you should have a Pi that’s ready to be provisioned!
1 You can also use sudo nmap -sP 10.0.1.1/24
(replacing 10.0.1.1 with your local network prefix) to scan for the Pi IP addresses. This requires nmap to be installed on your computer. Another option is arp -an
.