How install Yunohost on Raspberry Pi?

I’ve been trying to get Yunohost installed onto a Raspberry Pi B for about a month now. I have two identical Raspberry Pi units, multiple SD cards of multiple brands, different power sources and cables, all of which have been tried for installation.

I’ve tried the Raspbian and Raspbian Lite Debian version from Raspberry Pi Foundation, and I’ve tried the old Yunohost Raspberry Pi disk image.

It seems like all attempts fail on something related to the metronome package.

Postinstall fails with:
Job for metronome.service failed. See 'systemctl status metronome.service' and 'journalctl -xn' for details.

For anyone else with the metronome package problem I found the solution to be to manually download and compile the metronome package. On Raspbian/Raspbian Lite:

sudo apt-get install -y liblua5.1-dev libidn11-dev libssl-dev debhelper txt2man quilt

wget https://github.com/YunoHost/metronome/archive/debian/3.7.9+33b7572-1.zip

unzip 3.7.9+33b7572-1.zip

cd metronome-debian-3.7.9-33b7572-1

dpkg-buildpackage -rfakeroot -uc -b

cd ..

dpkg -i metronome_3.7.9+33b7572-1_armhf.deb

1 Like