10-14-2021, 07:22 PM
So is the plymouth package installed on RaspiOS Lite (on which moOde is built)? Let's ask dpkg
So the answer is no.
Next step. Is the package available in the repos known to this installation? Let's ask apt-cache
So, the answer is yes.
Next step. Install plymouth
Note that I only simulated the installation 'cuz i don't want it but the response shows the installation requires just two packages. Invoke this command without the -s option to actually install plymouth.
Final step. See if you can proceed with the rest of the recipe.
Regards,
Kent
Code:
pi@rpi3a:~ $ dpkg -l|grep -i plymouth
pi@rpi3a:~ $
So the answer is no.
Next step. Is the package available in the repos known to this installation? Let's ask apt-cache
Code:
pi@rpi3a:~ $ apt-cache show plymouth
Package: plymouth
Version: 0.9.4-1.1+rpt2
Architecture: armhf
...yada yada yada...
So, the answer is yes.
Next step. Install plymouth
Code:
pi@rpi3a:~ $ sudo apt-get -s install plymouth
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libplymouth4
Suggested packages:
desktop-base plymouth-themes
The following NEW packages will be installed:
libplymouth4 plymouth
0 upgraded, 2 newly installed, 0 to remove and 216 not upgraded.
Inst libplymouth4 (0.9.4-1.1+rpt2 Raspberry Pi Foundation:testing [armhf])
Inst plymouth (0.9.4-1.1+rpt2 Raspberry Pi Foundation:testing [armhf])
Conf libplymouth4 (0.9.4-1.1+rpt2 Raspberry Pi Foundation:testing [armhf])
Conf plymouth (0.9.4-1.1+rpt2 Raspberry Pi Foundation:testing [armhf])
Note that I only simulated the installation 'cuz i don't want it but the response shows the installation requires just two packages. Invoke this command without the -s option to actually install plymouth.
Final step. See if you can proceed with the rest of the recipe.
Regards,
Kent