0367.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Jellyfin On Armbian Android TV Box</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Install Jellyfin On Armbian,Jellyfin,Jellyfin Media Server,Media Server,Media Center,Linux,Self-Hosted,Home Lab,Raspberry Pi Alternative,Armbian,Install Guide,Debian,Ubuntu,SBC,Single Board Computer,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Jellyfin On Armbian Android TV Box">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Install Jellyfin On Armbian Android TV Box</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Log into Armbian</li>
  26. <li>Run the following commands in terminal
  27. <div class="codeBlock">sudo apt install apt-transport-https<br />
  28. wget -O - https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo apt-key add -<br />
  29. echo &quot;deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/$( awk -F&#39;=&#39; &#39;/^ID=/{ print $NF }&#39; /etc/os-release ) $( awk -F&#39;=&#39; &#39;/^VERSION_CODENAME=/{ print $NF }&#39; /etc/os-release ) main&quot; | sudo tee /etc/apt/sources.list.d/jellyfin.list<br />
  30. sudo apt update<br />
  31. sudo apt install jellyfin</div>
  32. </li>
  33. <li>Open a web browser and navigate to http://DNSorIP:8096</li>
  34. <li>Follow the setup wizard</li>
  35. <li>Welcome to Jellyfin</li>
  36. </ol>
  37. </div>
  38. </div>
  39. </body>
  40. </html>