There are several versions of Raspberry Pis available on the market:
From the specs we can see that the Raspberry Pi 3 is a full blown computer.
With its
a full particle accelerator and it is also much more powerful
than the computer system that allowed the moon landing!
This allows a great deal of flexibility when it comes to
operating systems to be installed on the machine
The CPU has got an ARM processor core with 4 64 bit CPUs
The operating system and the Linux kernel are still 32 bit versions
(After the course you may try to compile and install
a 64 bit kernel yourself. This is a very good exercise to
understand how the OS is built!)
Around the CPU there are plenty of interfaces
To know the details (the interfaces only!) have a look
at the data sheet explaining them (205 pages!)
Here are some of the Raspberry Pi peripherals:
You can easily connect
![]() |
![]() |
I2C is a serial bus often used in computer systems of for
short distance interfacing. Many devices having a I2C port
are available and we will program a few:
There are more interfaces which we will not necessarily use during the course.
Students who think that they do not learn enough during this course
are invited to come forward.
We can easily give you more exercises, e.g to make
This is what you will need to bring a Raspberry Pi to life:
keyboard and mouse with your laptop or other computer
and access the Pi through a remote desktop.
Go to the Raspberry Pi download page and download the
Raspbian image. It comes in 2 versions
$HOME/Downloads directory.
Since at Internet speeds that we experience at UCC this takes more than
1 hour to download we will distribute the zip file to all the PCs
Once downloaded we must first unzip the file:
Create a folder /opt/ucc/micros/raspberry and copy the zip file into it
cd /opt/ucc/micros/raspberry
cp ~/Downloads/2017-09-07-raspbian-stretch.zip .
unzip 2017-09-07-raspbian-stretch.zip which will give you
2017-09-07-raspbian-stretch.img
This is the file system image which will be copied to the SD card
bit by bit using the dd command
Can we know what is inside this image?
We see that there are 2 disk partitions:
This is something only root (the superuser) can do
We loop mount the file system:
Now we can copy the contents to whatever directory we want
This is the boot partition
Then we can do the same thing for the root partition
Once we mount the second partition the same way we see that it contains:
something we have seen before on our Ubuntu PC
The boot partition we have seen before is mounted on
/boot in this partition
Now we have the OS on the PC where it does not help us much!
We must put it onto a media that can be read by the Rpi.
Traditionally this was the micro SD card
but you can also use certain types of USB memory sticks
(Be careful, not all sticks will work! I use a SanDisk cruzer)
If your PC has an SD card reader then you put the
micro SD card into a normal SD card holder.
Otherwise there are microSD to USB converters
First check which disks you have on you system:
Then you plug in your microSD adapter or your USB adapter
and do the same thing again
You should see 2 additional partitions, in my case probably
/dev/sdc /dev/sdc1 /dev/sdc2
Now we are ready to copy the operating system to the SD card (or USB stick)
Where X is the disk letter (in our case “c”)
This may well take several minutes (the image is some 1.6 Gbytes!)
To see the progress:
Safely remove the SD card from your system (unmount if mounted!)
Put it into the SD card slot of the Pi
Power on th machine
With a little bit of luck, it should boot
For more details of installing Raspbian on the SD card using a Linux system see
https://www.raspberrypi.org/documentation/installation/installing-images/linux.md
Raspbian has a default user named
adduser uli and follow the instructions on the screen
usermod -a -G sudo uli
Then login with this new login name and
upgrade the system to the latest revision of all programs:
sudo apt update
sudo apt upgrade or sudo apt dist-upgrade
Once you have come this far you may want to add
additional software packages, emacs being one of them
You will continue adding packages as you use the system
and you will see what is missing.
We have seen that the system image takes 1.6 Gbytes our SD card
however provides 32 Gbytes. How to use it to its full capacity?
Start raspi-config (which is a program dedicated to the Raspberry
and does not exists und PC Ubuntu)
Go through all the options of the program and see if they make sense to you.
Of course we can use the interfaces on the Raspberry Pi
to connect a screen, keyboard and mouse and use it in stand-alone mode
but we can also make use of the PC resources and access it remotely
There are several ways to access the RPI remotely:
When running the remote desktop you are working on the Raspberry Pi
with the screen, keyboard and mouse replaced by the devices on the PC.
You have the same functionality as if the screen was connected
to the Pi’s HDMI port and keyboard and mouse were connected
to the USB ports on the Pi.
With nfs you can mount part of the Pi’s file system tree
onto your PC file system.
This allows you access to the Pi’s files as if you were
using a local disk. You cannot run any Rasberry Pi
programs this way however.
It is interesting if you cross-compile Pi programs on your PC,
which will be immediately visible on the Pi.
In the case of ssh you have a single terminal window
that is connected to a shell on the Pi.
The command is:
Where piIPaddress can be the Pi’s IP address of hostname.
If you specify the -X option you can run X-11 based programs
where the X protocol is run over the ssh connection.
Here you see a screen dump from the PC with a remote terminal
that started an emacs session on the Pi.
To copy a file from the PC to the Pi this would be the command:
scp myfile.c uli@rpi-10:exercises/solutions/exercise_2
This will copy the file “myfile.c” into the sub-directory
exercises/solutions/exercise_2 on my home directory on the Pi.
Of course user uli must exist on raspberry10.
Instead of specifying the machine name: rpi-10
you can also give its IP address.
Just like Linux on the PC, Linux on the Raspberry Pi uses the GNU C compiler gcc.
The front end:
However, the code generator is different since now
we compile for the ARM processor and not the
Intel processor used on the PC
As explained in a previous lecture we can also compile
C programs for the Raspberry Pi on the
PC Linux system using a cross-compiler.
The cross compiler we will use is named
arm-linux-gnueabihf-gcc
and it is part of the tools package for the Pi.
It exists also as an Ubuntu package to be installed with apt.
I | Attachment | History | Action | Size | Date | Who | Comment |
---|---|---|---|---|---|---|---|
![]() |
cobbler.png | r1 | manage | 60.3 K | 2017-09-14 - 08:38 | UnknownUser | |
![]() |
dd.png | r1 | manage | 5.5 K | 2017-09-19 - 08:34 | UnknownUser | |
![]() |
ddProgress.png | r1 | manage | 4.4 K | 2017-09-19 - 08:34 | UnknownUser | |
![]() |
lecture_6.odp | r1 | manage | 1155.9 K | 2017-10-16 - 12:38 | UnknownUser | |
![]() |
loopMount.png | r1 | manage | 28.8 K | 2017-09-19 - 08:14 | UnknownUser | |
![]() |
piRemoteDesktop.png | r1 | manage | 378.8 K | 2017-10-12 - 07:35 | UnknownUser | |
![]() |
raspberry.png | r1 | manage | 101.0 K | 2017-09-14 - 08:38 | UnknownUser | |
![]() |
raspbianImage.png | r1 | manage | 31.7 K | 2017-09-19 - 08:14 | UnknownUser | |
![]() |
raspbianRoot.png | r1 | manage | 16.3 K | 2017-09-14 - 08:38 | UnknownUser | |
![]() |
raspi-config.png | r1 | manage | 74.6 K | 2017-09-19 - 08:45 | UnknownUser | |
![]() |
rpiGPIO.png | r1 | manage | 77.5 K | 2017-09-14 - 08:38 | UnknownUser | |
![]() |
rpiSpecs.png | r1 | manage | 29.9 K | 2017-09-14 - 08:43 | UnknownUser | |
![]() |
ssh-X.png | r1 | manage | 293.5 K | 2017-10-16 - 08:57 | UnknownUser | |
![]() |
whichDisks.png | r1 | manage | 7.1 K | 2017-09-19 - 08:15 | UnknownUser |