Part 1 - Get the Raspberry Pi basics going
For this project I am using a Raspberry Pi Model 3 B. This is the latest version as of this writing and allows me the full size USB and Ethernet ports I want to use.
Get a version of the Raspberry Pi software onto a Micro-SD card.
- I am using the latest version of Rasbian (currently Stretch). Downloaded the image from RaspberryPi.org and burned it using SD Card Formatter and Win32Disk Imager.
- I like to run the Pi "headless" (without a monitor or keyboard) Before ejecting the card add a blank file named
to the boot drive to enable access via command line over the LAN. If you want to use WiFi there are instructions for that online as well.ssh
- Login with the pi/raspberry password combination and change the password
- Run
and update the following:sudo raspi-config - Network Options - > Hostname
- Localization Options -> Change Locale
- Advanced Options -> Expand Filesystem
- When complete finish and reboot.
- you should see your new host name next to your login like
pi@ECHOLINK:~$ - I like to remove Wolfram Alpha from the standard distribution. This is an optional step but this feature takes up a lot of storage (680+ MB) we won't use. If you are using a big SD card, you can probably skip this step. to remove:
sudo apt-get purge wolfram-engine - Now, make sure you have all your updates:
(I did the removal first so I don't have to wait through a lengthy update process for that big file librarysudo apt-get update sudo apt-get dist-upgrade
sudo shutdown -h -P now
This allows me a clean place to go back to if I screw up the rest of it.
No comments:
Post a Comment