Sunday, January 7, 2024

Installing Roon on Ubuntu 22.04 LTS Server

Just a quick dump of what I did, from fresh install of Ubuntu 22.04 LTS Server. 

cd ~
wget https://download.roonlabs.net/builds/roonserver-installer-linuxx64.sh 
chmod +x ./*.sh
sudo apt update 
sudo apt install lbzip2 sudo apt install lbzip2 libasound2 ffmpeg cifs-utils 
sudo ./roonserver-installer-linuxx64.sh

If you want to copy files from a SMB share (or commonly known as "network share") on a NAS/server

sudo apt update
sudo apt install smbclient
# This lists out all shares available on the NAS
smbclient -L --user=<username on NAS> //<NAS name>
# 1-time setup to create a mount point
sudo mkdir /mnt/network_mount
# To mount the smb share
sudo mount -t cifs -o username=<username on NAS> //<NAS name>/<Share name> /mnt/network_mount

No comments:

Post a Comment