123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install Polaris Music Streaming Server on Debian</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Install Polaris Music Server,Polaris Music Streaming Server,Polaris,Music Streamer,Music Streaming,Self-Hosted,Linux,Debian,MP3,Open Source Software,Install Guide,Home Lab,Browser Based,Web Based,Debian Linux,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install Polaris Music Streaming Server on Debian">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Install Polaris Music Streaming Server on Debian</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Installing Polaris</h2>
- <ol>
- <li>Log into the Linux device</li>
- <li>Run the following commands in a terminal window
- <div class="codeBlock"># update software repositories<br />
- sudo apt update<br />
- # install software updates<br />
- sudo apt upgrade -y<br />
- # install prerequisite software<br />
- sudo apt install binutils pkg-config libssl-dev -y<br />
- # install the rust compiler, press 1 when prompted <br />
- sudo curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh<br />
- # add rust/cargo to current terminal<br />
- source $HOME/.cargo/env<br />
- # download the latest build of polaris<br />
- wget -Opolaris-latest.tar.gz https://github.com/agersant/polaris/releases/download/0.13.4/Polaris_0.13.4.tar.gz<br />
- # extract the downloaded .tar.gz<br />
- sudo tar xzvf polaris-latest.tar.gz<br />
- # install polaris<br />
- cd polaris<br />
- make install-xdg<br />
- # once the buld and installation complete, start the polaris server<br />
- ~/.local/bin/polaris</div>
- </li>
- <li>Open a web browser and navigate to http://DNSorIP:5050</li>
- <li>At the Welcome to Polaris screen click the Sounds Good button</li>
- <li>Enter a path for Polaris to look for media in and give it a name, ie ~/Music/ > Click Next</li>
- <li>Enter a username and password to create a Polaris login > Click Next</li>
- <li>Welcome to Polaris</li>
- </ol>
- <h2>Starting Polaris On System Boot</h2>
- <ol>
- <li>Back in the terminal run the following command
- <div class="codeBlock">sudo nano /etc/systemd/system/polaris.service</div>
- </li>
- <li>Paste the following configuration into the polaris.service file, replacing i12bretro from the user, working directory and exec start values with the correct username
- <p>[Unit]<br />
- Description=Polaris Service<br />
- After=network.target</p>
- <p>[Service]<br />
- Type=simple<br />
- RemainAfterExit=yes<br />
- User=i12bretro<br />
- WorkingDirectory=/home/i12bretro/.local/bin<br />
- ExecStart=/home/i12bretro/.local/bin/polaris<br />
- Restart=on-failure<br />
- <br />
- [Install]<br />
- WantedBy=default.target</p>
- </li>
- <li>Press CTRL+O, Enter, CTRL+X to write the changes to polaris.service</li>
- <li>Enter the following command to start the new service on system boot
- <div class="codeBlock">sudo systemctl enable polaris</div>
- </li>
- <li>Reboot the system</li>
- <li>Test that Polaris is running by opening a web browser and navigating to http://DNSorIP:5050</li>
- <li>Log back into Polaris with the username and password created earlier</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|