|
@@ -0,0 +1,63 @@
|
|
|
+ <!DOCTYPE html>
|
|
|
+ <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
|
+ <head>
|
|
|
+ <title>Installing Plex Media Server on Raspberry Pi</title>
|
|
|
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="keywords" content="How To,Install Guide,Linux,Media Server,Plex,Plex Media Server,Plex Server,Rasbian,Raspberry Pi,Raspberry Pi 4,Raspberry Pi OS,Tutorial,i12bretro">
|
|
|
+ <meta name="author" content="i12bretro">
|
|
|
+ <meta name="description" content="Installing Plex Media Server on Raspberry Pi">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <meta name="revised" content="10/15/2021 05:55:12 AM" />
|
|
|
+ <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>Installing Plex Media Server on Raspberry Pi</h1>
|
|
|
+ </div>
|
|
|
+ <div></div>
|
|
|
+ <div id="content">
|
|
|
+ <h2>Install Plex Media Server</h2>
|
|
|
+
|
|
|
+<ol>
|
|
|
+ <li>Log into the Raspberry Pi device</li>
|
|
|
+ <li>Run the following commands in terminal
|
|
|
+ <div class="codeBlock"># update software repositories<br />
|
|
|
+ sudo apt update<br />
|
|
|
+ # install software updates<br />
|
|
|
+ sudo apt upgrade -y<br />
|
|
|
+ # install some prerequisites<br />
|
|
|
+ sudo apt install apt-transport-https ca-certificates<br />
|
|
|
+ # get the latest .deb download URL<br />
|
|
|
+ regex='"build":"linux-armv7neon","distro":"debian","url":"(https:\/\/downloads\.plex\.tv\/plex-media-server-new\/[^/]*\/debian\/[^/]*_armhf\.deb)",' && response=$(curl -s https://plex.tv/api/downloads/5.json) && [[ $response =~ $regex ]] && downloadURL="${BASH_REMATCH[1]}"<br />
|
|
|
+ # download latest plex version<br />
|
|
|
+ wget -O ./plexmediaserver.deb $downloadURL<br />
|
|
|
+ # install plex media server<br />
|
|
|
+ sudo dpkg -i ./plexmediaserver.deb<br />
|
|
|
+ # run plexmediaserver service on system boot<br />
|
|
|
+ sudo systemctl enable plexmediaserver.service</div>
|
|
|
+ </li>
|
|
|
+</ol>
|
|
|
+
|
|
|
+<h2>Configuring Plex Account</h2>
|
|
|
+
|
|
|
+<ol>
|
|
|
+ <li>Open a web browser and navigate to http://DNSorIP:32400/web</li>
|
|
|
+ <li>Log in with one of the available options or click sign up with email</li>
|
|
|
+ <li>Give the Plex server a name > Click Next</li>
|
|
|
+ <li>Click the Add Library button > Select the media type</li>
|
|
|
+ <li>Select Add folders from the left navigation > Click Browse for media folder > Select the folder to add to the media > Click Add Library</li>
|
|
|
+ <li>Click Next</li>
|
|
|
+ <li>Click Done to complete the server setup</li>
|
|
|
+ <li>Welcome to Plex Media Server</li>
|
|
|
+</ol>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </body>
|
|
|
+ </html>
|
|
|
+
|