Men may come and men may go…..but Pi goes on for ever.
— George Augustus Sala
One of my 2015 Christmas gifts is a Raspberry Pi 2 Model B v1.1.
Thank you Santa Claus from Australia!
Take a quick look at the specification:
- 100 Base Ethernet
- 4 USB ports
- 40 GPIO pins
- Full HDMI port
- Combined 3.5mm audio jack and composite video
- Camera interface (CSI)
- Display interface (DSI)
- Micro SD card slot
- VideoCore IV 3D graphics core
After about one hour reading documentation, downloading and installing NOOBS and then RASPIAN, I can ssh to it from my laptop with default login (pi) and password (raspberry).
Updated 31-08-2018: Download and burn Raspian Stretch to SD Card. Follow this simple awesome guide to create an empty file named ssh at the root to enable ssh so we can connect via ssh for the first time.
Default login
Check hardware version
$ cat /proc/cpuinfo processor : 0 model name : ARMv7 Processor rev 5 (v7l) BogoMIPS : 44.80 Features : half thumb fastmult vfp edsp thumbee neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm CPU implementer : 0x41 CPU architecture: 7 CPU variant : 0x0 CPU part : 0xc07 CPU revision : 5 ... Hardware : BCM2835 Revision : 0000 Serial : 0000000016e30c58 $
Information about Broadcom chip BCM2835: https://www.raspberrypi.org/documentation/hardware/raspberrypi/bcm2835/
Or run 'cat /proc/device-tree/model' command
$ cat /proc/device-tree/model Raspberry Pi 2 Model B $
Run update [after more than one year without turn it on]
sudo apt-get updatesudo apt-get upgrade
Run raspi-config
sudo raspi-configchange default password
enable ssh
change timezone
Install ftp client
sudo apt-get install ftpInstall Node Package Manager
Try connecting to AWS IoT
Prepare to connect to IBM Watson IoT Platform
Cleanup /var/apt/cache directory
sudo apt-get clean
As illustrated below, 822MB is reclaimed after running sudo apt-get clean command.