Note: the most important and helpful resource is the manual, which is available here.
Copy the orange pi image over to an sd card
Expand the sd card
Update netplan. Open up the sd card and modify the network config:
sudo mv orangepi-default.yaml orangepi-default.yaml.bak
cat << EOL | sudo tee 99-home.yaml
network:
version: 2
ethernets:
eno1:
addresses:
- 192.168.0.140/24
dhcp4: no
dhcp6: no
nameservers:
addresses:
- 1.1.1.1
- 1.0.0.1
- 8.8.8.8
- 8.8.4.4
optional: true
wifis:
wlan0:
dhcp4: no
dhcp6: yes
addresses:
- 192.168.0.141/24
nameservers:
addresses:
- 1.1.1.1
- 1.0.0.1
- 8.8.8.8
- 8.8.4.4
access-points:
<put your wifi ssid here>:
password: <put yoru wifi password here>
routes:
- to: default
via: 192.168.0.1
EOL
sudo chmod 664 99-home.yaml
With these changes you should be able to connect in a headless way
SSH
ssh orangepi@192.168.0.141
#default password is orangepi
update password
harden ssh:
Update Mirrors
edit /etc/apt/sources.list
deb http://ports.ubuntu.com/ubuntu-ports/ jammy main restricted universe multiverse
# deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ jammy main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ jammy-security main restricted universe multiverse
# deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ jammy-security main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ jammy-updates main restricted universe multiverse
# deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ jammy-updates main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ jammy-backports main restricted universe multiverse
# deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ jammy-backports main restricted universe multiverse
See this:https://www.reddit.com/r/OrangePI/comments/16vdpjv/orange_pis_debian_and_the_chinese_update_servers/ and this: http://www.orangepi.org/orangepibbsen/forum.php?mod=viewthread&tid=145250
install tmux
sudo apt update && sudo apt install -y tmux
then open a new tmux window using the tmux
command and upgrade your packages
(optional) install tailscale
you can use these instructions
(optional, can do later) Upgrade
sudo apt upgrade -y
use ctrl+b
then d
to exit and let the install run. You will need to check in periodically to intervene
(Optional) Set up orange pi config
sudo orangepi-config
sudo adduser $USER i2c
echo "overlays=i2c3" | sudo tee -a /boot/orangepiEnv.txt && sudo reboot now
once restarted run
sudo i2cdetect -y 3
you will need some prerequisites:
#required
sudo apt install -y python3-pip swig python3-dev python3-setuptools
orangepi@orangepi:~$ sudo apt update
orangepi@orangepi:~$ sudo apt install -y git
orangepi@orangepi:~$ git clone https://github.com/orangepi-xunlong/wiringOP
2) Compile and install wiringOP
orangepi@orangepi:~$ cd wiringOP
orangepi@orangepi:~/wiringOP$ sudo ./build clean
orangepi@orangepi:~/wiringOP$ sudo ./build
git clone --recursive https://github.com/orangepi-xunlong/wiringOP-Python.git
cd wiringOP-Python
find . -type f -name "*.c" -print0 | xargs -0 sed -i 's|/dev/i2c-[0-9]|/dev/i2c-3|g'
find . -type f -name "*.py" -print0 | xargs -0 sed -i 's|/dev/i2c-[0-9]|/dev/i2c-3|g'
python3 generate-bindings.py > bindings.i
pip3 install .
sudo pip3 install .
sudo python3 ~/wiringOP-Python/examples/orangepi-sensors/oled_ssd1306.py
to get it to run on startup,
(sudo crontab -u root -l; echo "@reboot python3 $HOME/wiringOP-Python/examples/orangepi-sensors/oled_ssd1306.py" ) | sudo crontab -u root -
got help from here
sudo apt install -y libgpiod2 python3-libgpiod sudo apt install -y python3-smbus python3-dev i2c-tools python3-lgpio sudo apt install -y python3-dev python3-setuptools pip3 install gpiod && sudo pip3 install gpiod
From here:
sudo pip3 install Adafruit-SSD1306
sudo apt install -y python3 git python3-pip
sudo apt install -y libgpiod2 python3-libgpiod
pip3 install gpiod
sudo apt update && sudo apt upgrade -y
sudo pip3 install --upgrade setuptools
sudo apt install -y python-smbus python-dev i2c-tools
sudo adduser $USER i2c
pip3 freeze - local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U
sudo bash
pip3 freeze - local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U
pip3 install adafruit-blinka
sudo find / -iname "sun50*"
got help from here
echo -e "overlays=uart2 uart3 i2c0 i2c1 i2c2 spi-spidev usbhost1 usbhost2 usbhost3\nparam_spidev_spi_bus=0" | sudo tee -a /boot/orangepiEnv.txt
overlay_prefix=sun50i-h5
overlays=uart1 uart2 uart3 i2c0 i2c1 i2c2 spi-spidev usbhost0 usbhost1 usbhost2 usbhost3 pwm
param_spidev_spi_bus=0
prior to clearing
#overlay_prefix=sun50i-h5
#overlay_prefix=sun50iw9-h5
#overlay_prefix=sun50i-h616
#overlays=uart1 uart2 uart3 i2c0 i2c1 i2c2 spi-spidev usbhost0 usbhost1 usbhost2 usbhost3 pwm
#overlays=uart2 uart5 i2c1 i2c2 i2c3 i2c4 spi-spidev pwm12 pwm34
#param_spidev_spi_bus=0
pip3 install –upgrade adafruit-blinka adafruit-platformdetect
pip install wiringop
cat /proc/device-tree/compatible sun50i-h616
sudo find / -iname “sun50i-h616*”
sudo pip3 install ./