Difference between revisions of "Ultibo Quick Start"

From Lazarus wiki
Jump to navigationJump to search
Line 4: Line 4:
 
- Use a PC to install [https://www.matthuisman.nz/2017/02/how-to-install-pinn-lite.html PINN Lite] onto a 8 GB SD card.
 
- Use a PC to install [https://www.matthuisman.nz/2017/02/how-to-install-pinn-lite.html PINN Lite] onto a 8 GB SD card.
 
- Set up Zero hardware (similar to [https://www.raspberrypi.org/learning/parents-guide/ this], but a little different as need USB hub and several micro to standard cables). '''PINN works with wireless keyboards and mice (unlike NOOBS)!'''<br/>
 
- Set up Zero hardware (similar to [https://www.raspberrypi.org/learning/parents-guide/ this], but a little different as need USB hub and several micro to standard cables). '''PINN works with wireless keyboards and mice (unlike NOOBS)!'''<br/>
- Power up and select Language on PINN, connect WiFi, and then select LibreELEC '''and''' Raspbian Lite to install.<br/>
 
 
- Note: the rest takes about 47 minutes on a RPi3B<br/>
 
- Note: the rest takes about 47 minutes on a RPi3B<br/>
 
<br/>
 
<br/>
 
Our goal is to use a Raspberry Pi Zero Wireless With Headers (with [https://ultibo.org/wiki/Unit_RPISENSEHAT Sense HAT] documented more [https://www.raspberrypi.org/products/sense-hat/ here] and [https://astro-pi.org/wp-content/uploads/2018/09/T05.2_Meet-the-Sense-HAT.pdf here] and [http://www.esa.int/Education/AstroPI/European_Astro_Pi_Challenge_2019-20_now_open here]).<br/>
 
Our goal is to use a Raspberry Pi Zero Wireless With Headers (with [https://ultibo.org/wiki/Unit_RPISENSEHAT Sense HAT] documented more [https://www.raspberrypi.org/products/sense-hat/ here] and [https://astro-pi.org/wp-content/uploads/2018/09/T05.2_Meet-the-Sense-HAT.pdf here] and [http://www.esa.int/Education/AstroPI/European_Astro_Pi_Challenge_2019-20_now_open here]).<br/>
 
<br/>
 
<br/>
- Boot up your Raspberry Pi, configure Internet access (if using WiFi)<br/>
+
- Power up your Raspberry Pi, configure Internet access (if using WiFi)<br/>
 
- Select your Language near the bottom of the screen<br/>
 
- Select your Language near the bottom of the screen<br/>
- Make sure Raspbian Lite is the only OS selected, then click the Install button.<br/>
+
- Make sure '''both''' LibreELEC '''and'''Raspbian Lite are selected to install, then click the Install button.<br/>
- When reboots delay login as Raspbian does updates automatically by itself, login (user pi and password raspberry)<br/>
+
- When reboots, select Raspbian to boot, and delay login as Raspbian does updates automatically by itself, login (user pi and password raspberry)<br/>
 
- We are basically following the "headless" set up [https://learn.sparkfun.com/tutorials/python-programming-tutorial-getting-started-with-the-raspberry-pi/introduction here].<br/>
 
- We are basically following the "headless" set up [https://learn.sparkfun.com/tutorials/python-programming-tutorial-getting-started-with-the-raspberry-pi/introduction here].<br/>
 
- Enter the following lines '''(without bold comment text)''' in the terminal:<br/>
 
- Enter the following lines '''(without bold comment text)''' in the terminal:<br/>

Revision as of 04:03, 21 September 2019

Overview


- Use a PC to install PINN Lite onto a 8 GB SD card. - Set up Zero hardware (similar to this, but a little different as need USB hub and several micro to standard cables). PINN works with wireless keyboards and mice (unlike NOOBS)!
- Note: the rest takes about 47 minutes on a RPi3B

Our goal is to use a Raspberry Pi Zero Wireless With Headers (with Sense HAT documented more here and here and here).

- Power up your Raspberry Pi, configure Internet access (if using WiFi)
- Select your Language near the bottom of the screen
- Make sure both LibreELEC andRaspbian Lite are selected to install, then click the Install button.
- When reboots, select Raspbian to boot, and delay login as Raspbian does updates automatically by itself, login (user pi and password raspberry)
- We are basically following the "headless" set up here.
- Enter the following lines (without bold comment text) in the terminal:
sudo sh -c "apt update && apt dist-upgrade && apt autoremove"
sudo raspi-config (to select timezone under Locale)
sudo reboot
(login)
sudo apt install libgtk2.0-dev libghc-x11-dev binutils-arm-none-eabi (temp to install 170 packages until script is fixed so don't need these)
wget https://github.com/ultibohub/Tools/releases/latest/download/ultiboinstaller.sh
chmod u+rx ultiboinstaller.sh
./ultiboinstaller.sh (confirm don't want Lazarus, do want to build the Hello World examples)
sudo poweroff (wait for LED off before remove power)

See also