Just got Roon Server up and running on my Rockstor NAS (CentOS) and wanted to post a couple useful links for others attempting the same.
The easy installer works just fine: http://kb.roonlabs.com/LinuxInstall
You’ll need to install ffmpeg, libav-tools and cifs-utils if not already on your server.
-
CIFS Utils
yum -y install cifs-utils -
FFMPEG
https://linuxadmin.io/install-ffmpeg-on-centos-7/First install the epel-release
yum -y install epel-releaseInstall the nux repository
rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpmInstall ffmpeg and ffmpeg -devel packages
yum install ffmpeg ffmpeg-devel -yMake sure it works:
ffmpeg -version -
Libav-Tools (avconv)
https://www.thelinuxfaq.com/258-how-to-install-avconv-on-centos-rhel-7-6Install dependencies
yum install libvorbis yasm freetype zlib bzip2 faac lame speex libvpx libogg libtheora x264 XviD openjpeg15 opencore-amrDownload the package using wget command and extract that tar file
wget http://libav.org/releases/libav-10.5.tar.gz
tar -xvzf libav-10.5.tar.gz
cd libav-10.5Configure the packages as you need
./configure --extra-cflags=-I/opt/local/include --extra-ldflags=-L/opt/local/lib --enable-gpl --enable-version3 --enable-libvpx
make && make installMake sure it’s there
whereis avconv