| | 165 | |
| | 166 | == Alternative: Run mycroft-gui QT5 app == |
| | 167 | The aproach above need a full graphical user interface stack (X11, wayland, SDDM) and this is hard do run on a Raspberry PI 3B. In this alternativ method I will change the systemd target to multi-user.target, enable autologon of user mycroft on console and start the mycroft-gui app |
| | 168 | === systemd target === |
| | 169 | switch once to multi-user target |
| | 170 | * {{{ sudo isolate multi-user.target }}} |
| | 171 | make default |
| | 172 | * {{{ sudo set-default multi-user.target }}} |
| | 173 | === autologon user mycroft === |
| | 174 | * {{{ sudo systemctl edit getty@tty1.service }}} |
| | 175 | to create/edit and change it to the following content |
| | 176 | {{{ |
| | 177 | [Service] |
| | 178 | ExecStart= |
| | 179 | ExecStart=-/sbin/agetty --noissue --autologin mycroft %I $TERM |
| | 180 | Type=idle |
| | 181 | }}} |
| | 182 | === Start mycroft-gui app === |