Prior to lab Wednesday, taken inventory of the kit parts that you have, and note anything that is missing:
Update your parts list inventory
-
Our Copy of Raspbian at this dropbox link, or use our ftp server here: ftp://farlab.infosci.cornell.edu/IXE_20210224.img.xz . Download and use the
.xz
file in the Raspberry Pi Imager. -
If using windows: Windows 10 SSH Client or PuTTY
- Plug the SD card into your computer using the card reader
- Choose the downloaded file for "Choose OS" and the SD card for "Choose SD card" then hit write.
```
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=<Insert 2 letter ISO 3166-1 country code here, for the United states it is US>
network={
ssid="<Name of your wireless LAN>"
psk="<Password for your wireless LAN>"
}
```
Make sure to update the above contents with your own network information.
This information gets copied over to your Raspberry Pi when it boots up, so that the Pi gets a DHCP address from your network router and can show up on your network
- Eject or unmount the microSD card drive, and then remove it and reinsert it into the RPi in the slot on the bottom (silver rectangle on the right)
- Boot the RPi by connecting it to a power source
Unlike your laptop, the Pi doesn't come with its own keyboard or mouse. While you could plug in a monitor, keyboard, and mouse we will be connecting to your Pi over SSH. You can do this in Mac Terminal or Windows 10 SSH Client. Make sure you connect your laptop to the same network as you entered in your wpa_supplicant.conf
above.
- In Terminal type
$ arp -a
and you should see output that looks like this:rt-ac5300-c020 (192.168.2.1) at b0:6e:bf:86:c0:20 on en0 ifscope [ethernet] ixe00 (192.168.1.131) at (incomplete) on en0 ifscope [ethernet] ? (224.0.0.251) at 1:0:5e:0:0:fb on en0 ifscope permanent [ethernet] ? (239.255.255.250) at 1:0:5e:7f:ff:fa on en0 ifscope permanent [ethernet]
Take note the ip address in the line that starts with ixe00
. For me that is 192.168.2.131
but you should use whatever number you see there.
- Verify your pi is online. In terminal type
ping 192.168.2.131
replacing that number with your own.ping 192.168.1.131 PING 192.168.1.131 (192.168.1.131): 56 data bytes 64 bytes from 192.168.1.131: icmp_seq=0 ttl=64 time=252.118 ms 64 bytes from 192.168.1.131: icmp_seq=1 ttl=64 time=10.331 ms 64 bytes from 192.168.1.131: icmp_seq=2 ttl=64 time=10.209 ms 64 bytes from 192.168.1.131: icmp_seq=3 ttl=64 time=14.816 ms ^C --- 192.168.1.131 ping statistics --- 4 packets transmitted, 4 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 10.209/71.868/252.118/104.084 ms
You can use control-C
to interrupt and exit the ping (press the control
key, and while holding it down, also press the C
key, then let go of both together--this looks like ^C
in the terminal).
- SSH into the Pi.
When you first log in it will show you a "fingerprint" and ask you whether you want to continue connecting. Say yes
.
ssh pi@192.168.1.131
The authenticity of host '192.168.1.131' can't be established.
ECDSA key fingerprint is SHA256:Y9S4oMH2H70fz3K/L42Kw39k+zkpyfr0DmGdzBx7SKk.
Are you sure you want to continue connecting (yes/no)? yes
From your terminal, log in to your Pi using the command ssh pi@192.168.1.131
with the password: raspberry
After you say yes, type the password raspberry
and hit Enter. You should see this:
pi@192.168.1.131's password:
Linux ixe00 4.9.59-v7+ #1047 SMP Sun Oct 29 12:19:23 GMT 2017 armv7l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Wed Jan 17 10:42:03 2018
SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please log
in as the 'pi' user and type 'passwd' to set a new password.
pi@ixe00:~ $
Once you are signed in, your terminal will now connected directly to the 'terminal' on your Pi, via ssh
. You can tell this by looking at the user and hostname at the beginning of each line, which should now look like:
pi@ixe00 ~ $
Because the Pi asked you to! Also to keep your RPi from getting hacked.
Write it down somewhere, because we don't know how to recover lost passwords on the RPi.
*** Note here if you run into issues*** (and Slack message the teaching team), so that we can use Lab time on Wednesday to try to fix them.
The command line/Terminal is a powerful way to interact with your computer without using a Graphical User Interface (GUI). When you ssh on to your pi you have a prompt you can enter commands. In your terminal there is a shell, there are many shells but for this class we will use one of the most common bash
pi@ixe00:~ $ echo $SHELL
/bin/bash
In the code above we've typed echo $SHELL
. The echo
tells it to print something to the screen. You could try typing echo 'hello'
to see how that works for strings. The $
at the front of $SHELL
tells bash we are referring to a variable. In this case it is a variable the OS is using to store the shell program. In a folder /bin
is a program called bash that we are currently using.
The up arrow with show the most recent command.
There are many commands in the command line. They can take a variety of options that change how they are used. You can look these up online to learn more. Many commands have a manual page with documentation that you can see directly in the terminal by typing man [command]
. For example:
pi@ixe00:~ $ man echo
ECHO(1) User Commands ECHO(1)
NAME
echo - display a line of text
SYNOPSIS
echo [SHORT-OPTION]... [STRING]...
echo LONG-OPTION
DESCRIPTION
Echo the STRING(s) to standard output.
-n do not output the trailing newline
-e enable interpretation of backslash escapes
-E disable interpretation of backslash escapes (default)
--help display this help and exit
--version
Manual page echo(1) line 1 (press h for help or q to quit)
These are some useful commands. Read the manual pages for advanced usage.
pwd
- print working directory, tells us where on the computer we arels
- list the things in the current directory.cd
- change directory. This lets you move to another folder on your machine.mkdir
- make directory. You can create directories with this commandcp
- copy a file. You can copy from one place to any other placemv
- move a file, also used to rename a filerm
- delete a file. To delete a folder you need the recursive flagrm -r [folder]
cat
- view a filenano
- this is a text editor (there are many) that will let you edit files in terminal.
There is plenty more to learn about using the terminal to navigate a computer but this should give a good start for getting around the raspberry pi.
For times we want to use a GUI like a normal computer we will want to enable X windows usage on the Raspberry Pi. (Should this not work see below for instructions on how to use VNC)
On the Mac, please install XQuartz.
On the PC, please install XMing.
To enable XWindows to open with the Pi, we need to log into the Pi with the -X flag to enable xwindows forwarding:
shell
$ ssh -X pi@ixe00.local
pi@ixe00.local's password:
Linux ixe00 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu Jul 30 17:50:45 2020 from fe80::480:f9c8:6452:925e%wlan0
pi@ixe00:~ $ xeyes
Here, we test out the Xwindows using the Xeyes program. Use Ctrl-C afterwards to end the program.
Look in the RPi image and see where things are at. In specific, see if you can find:
Banana.jpg
Wormy.py
Another way to connect to your IxE is using VNC (Virtual Network Computing). It essentially is remote login. The easiest client to use is VNC Connect. Download and install it. Once that's done type the IP address of the IxE in the text-box at the top.
After that a login window should appear, use your normal logins (originally: Account=pi, Password=raspberry).
At that point the normal RPI desktop should appear and you can start and stop programs from here.