Changes between Version 24 and Version 25 of mycroft-gui-mark-2_sys


Ignore:
Timestamp:
05/11/20 06:58:00 (4 years ago)
Author:
admin
Comment:

--

Legend:

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

    v24 v25  
    163163* {{{ sudo i2cset -y 1 0x4b 30 }}}
    164164to make the volume change work
     165
     166== Alternative: Run mycroft-gui QT5 app ==
     167The 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 ===
     169switch once to multi-user target
     170* {{{ sudo isolate multi-user.target }}}
     171make default
     172* {{{ sudo set-default multi-user.target }}}
     173=== autologon user mycroft ===
     174* {{{ sudo systemctl edit getty@tty1.service }}}
     175to create/edit and change it to the following content
     176{{{
     177[Service]
     178ExecStart=
     179ExecStart=-/sbin/agetty --noissue --autologin mycroft %I $TERM
     180Type=idle
     181}}}
     182=== Start mycroft-gui app ===