In this article, we will have explained the necessary steps to install and configure Install Subsonic on Ubuntu 20.04 LTS. Before continuing with this tutorial, make sure you are logged in as a user with sudo
privileges. All the commands in this tutorial should be run as a non-root user.
Subsonic is a media streaming and sharing platform. With Subsonic, you can stream your music from a home computer or any public-facing computer and listen to your music from anywhere with a web browser, so you don’t have to sync your music with a file sync application like resilio sync or Syncthing. The premium features can also be tried out in the first 30 days after the installation of this media server.
Install Subsonic on Ubuntu 20.04
Step 1. First, before you start installing any package on your Ubuntu server, we always recommend making sure that all system packages are updated.
sudo apt update sudo apt upgrade
Step 2. Install Java.
The subsonic media server is written in Java, so you need to install the Java runtime environment:
sudo apt install openjdk-8-jre
Step 3. Install Subsonic on the Ubuntu system.
- Install Subsonic on Ubuntu from the official source
Now go to the official website download page of this open-source music server and click on the package you want to install:
wget http://www.subsonic.org/pages/download2.jsp?target=subsonic-6.1.6.deb sudo dpkg -i subsonic-6.1.6.deb
Once Subsonic is installed, you can run the commands below to start and enable Subsonic service:
sudo systemctl start subsonic sudo systemctl enable subsonic
- Install Subsonic on Ubuntu via Snaps
To install Subsonic, run the following command:
sudo apt install snapd sudo snap install subsonic-arubislander
Step 3. Accessing Subsonic Media Server.
Once done installed on a local Ubuntu computer, then type in the following address in the browser to visit the Subsonic web interface:
http://your-server-ip-address:4040
The default username and password are admin
. After login, you should go to Settings > Users to change the admin password.
That’s all you need to do to install Install Subsonic Media Server on Ubuntu 20.04 LTS Focal Fossa. I hope you find this quick tip helpful. For further reading on Install Subsonic, please refer to their official knowledge base. If you have questions or suggestions, feel free to leave a comment below.