Roon Core Machine
Ubuntu 22.04.1 LTS
After following the instructions for installing Roon on linux on a clean minimal install of Ubuntu 22.04.1 LTS (server), I get an error when running the actual install script roonserver-installer-linuxx64.sh
. See below:
Do you want to install RoonServer on this machine? [Y/n]
Downloading RoonServer_linuxx64.tar.bz2 to /tmp/tmp.bkDj28EJNM/RoonServer_linuxx64.tar.bz2
################################################################################################################################ 100.0%
Unpacking RoonServer_linuxx64.tar.bz2...tar (child): lbzip2: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
The problem seems to be a missing library for the tar
command to unpack the downloaded file.
Solution is to install the missing bzip2
library:
sudo apt-get install bzip2
After this the install script will run without this error.