Difference between revisions of "Ultibo Quick Start"

From Free Pascal wiki
Jump to navigationJump to search
m
m
Line 1: Line 1:
 
Will soon move [http://turbocontrol.com/easyultibo.htm EasyUltibo] here.
 
Will soon move [http://turbocontrol.com/easyultibo.htm EasyUltibo] here.
 +
 +
== Overview ==
  
 
- Boot up your Raspberry Pi, configure Internet access (if using WiFi)<br/>
 
- Boot up your Raspberry Pi, configure Internet access (if using WiFi)<br/>
Line 11: Line 13:
 
./ultiboinstaller.sh '''(confirm don't want Lazarus, do want hello app)'''<br/>
 
./ultiboinstaller.sh '''(confirm don't want Lazarus, do want hello app)'''<br/>
 
sudo halt '''(wait for LED off before power off)'''<br/>
 
sudo halt '''(wait for LED off before power off)'''<br/>
 +
 +
== See also ==
 +
* [[Ultibo_core]]

Revision as of 16:19, 19 September 2019

Will soon move EasyUltibo here.

Overview

- Boot up your Raspberry Pi, configure Internet access (if using WiFi)
- Select your Language near the bottom of the screen, and then make sure Raspbian Lite is the only OS selected, then click the Install button.
- When reboots, login (user pi and password raspberry)
- We are basically following the "headless" set up https://learn.sparkfun.com/tutorials/python-programming-tutorial-getting-started-with-the-raspberry-pi/introduction.
- 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 and other options)
wget https://github.com/ultibohub/Tools/releases/download/1.0.5/ultiboinstaller.sh
./ultiboinstaller.sh (confirm don't want Lazarus, do want hello app)
sudo halt (wait for LED off before power off)

See also