Changes between Version 2 and Version 3 of mycroft-gui-mark-2_sys


Ignore:
Timestamp:
05/03/20 10:35:34 (4 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mycroft-gui-mark-2_sys

    v2 v3  
    22This is based on the very helpful build log of user AIIX that he published on https://github.com/AIIX/Documentation/blob/master/Custom-RPI4-MycroftImage.md
    33He is doing this on 64-bit Rasbperry 4 (architecture arm64) while the target here is 32-bit Raspberry 3B (architekture armhf).
     4
     5=== Install Linux ===
     6Get https://ubuntu.com/download/raspberry-pi/thank-you?version=20.04&architecture=arm64+raspi (Ubuntu Server 20.04 for 64-bit arm)
     7flash it to sdcard and boot.
     8After first boot login as ubuntu/ubuntu (takes a while until you can do this), change password
     9==== Wifi ====
     10* ls /sys/class/net
     11on RP3 the wifi interface is the wlan0
     12* sudo nano /etc/netplan/50-cloud-init.yaml
     13{{{
     14# network: {config: disabled}
     15network:
     16    ethernets:
     17        eth0:
     18            dhcp4: true
     19            optional: true
     20    version: 2
     21    wifis:
     22        wlan0:
     23            optional: true
     24            access-points:
     25                "ESSID-of-the-Accesspoint":
     26                    password: "your-password"
     27            dhcp4: true
     28}}}
     29==== user ====
     30* sudo useradd mycroft -g users
     31* sudo mkdir /home/mycroft
     32* sudo chown mycroft:users /home/mycroft
     33* sudo nano /etc/group
     34(add mycroft to all groups like ubuntu)
    435
    536=== Install the system Libraries ===