Browse Source

0374: Install Polaris Music Streaming Server on Debian

i12bretro 3 years ago
parent
commit
07820efd0b
1 changed files with 148 additions and 0 deletions
  1. 148 0
      0374.html

+ 148 - 0
0374.html

@@ -0,0 +1,148 @@
+    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+    <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" />
+								<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
+				        <script type="text/javascript">
+          $(function(){
+            $('textarea').each(function(i,e){
+              theTextarea = $(this);
+              theTextarea.height((theTextarea[0].scrollHeight-5) +'px');
+            });
+
+            $('li').each(function(i,e){
+							if(!$(this).hasClass('noCheckbox')){
+								var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
+								$(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
+								$(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
+							}
+            });
+
+            $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
+              theElement = $(this);
+              var lines = theElement.html().split("\n");
+              theElement.empty();
+              for(l=0;l<lines.length;l++){
+                if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
+									                  theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ $.trim(lines[l].replace(/"/g, '&quot;')) +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
+									                } else {
+                  theElement.append(lines[l]);
+                }
+              }
+            });
+
+            $(document).on('click','input.copy-text',function(){
+              theButton = $(this);
+														$('input.copy-text').attr('src','images/clipboard.png');
+							              $('span.copy-animation,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
+              try {
+                if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
+                  $('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
+								} else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
+									$('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
+                } else {
+                  $('#'+ theButton.attr('rel')).addClass('copy-animation');
+                }
+                navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
+																theButton.attr('src','images/clipboard_active.png');
+								              } catch(err) {
+              }
+              return false;
+            });
+
+            $(document).on('click','input.completeBox',function(){
+              theBox = $(this);
+              $('#'+ theBox.attr('rel')).addClass('strikethrough');
+              theBox.prop('disabled',true);
+              theBox.parent('li').prevAll().each(function(i,e){
+                theLI = $(this);
+                if(theLI.find('input[type=checkbox]').not(':checked')){
+                  $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
+                  theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
+                }
+              });
+            });
+
+            if(window.self !== window.top){
+															window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
+							            }
+          });
+        </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&nbsp;binutils pkg-config libssl-dev -y<br />
+	# install the rust compiler, press 1 when prompted&nbsp;<br />
+	sudo curl --proto &#39;=https&#39; --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&nbsp;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/ &gt; Click Next</li>
+	<li>Enter a username and password to create a Polaris login &gt; 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&nbsp;http://DNSorIP:5050</li>
+	<li>Log back into Polaris with the username and password created earlier</li>
+</ol>
+          </div>
+        </div>
+      </body>
+    </html>
+