0369.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Jellyfin On Debian</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 Debian,Media Server,Media Center,Self-Hosted,Install Guide,Linux,Jellyfin Media Server,Jellyfin,Debian,Getting Started With Jellyfin,Home Lab,How To Setup Jellyfin,How To Install Jellyfin,Plex Alternative,Plex Media Center Alternative,Starting A Jellyfin Media Server,Open Source Software,Free Software,FOSS,Free Open Source Software,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Jellyfin On Debian">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="03/27/2022 12:34:25 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Install Jellyfin On Debian</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <ol>
  26. <li>Log into the Debian device</li>
  27. <li>Run the following commands in terminal
  28. <div class="codeBlock"># install prerequisites&nbsp;<br />
  29. sudo apt install apt-transport-https -y<br />
  30. # add gpg key<br />
  31. wget -O - https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo apt-key add -<br />
  32. # add apt repository<br />
  33. 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 />
  34. # update software repositories<br />
  35. sudo apt update<br />
  36. # install jellyfin<br />
  37. sudo apt install jellyfin -y</div>
  38. </li>
  39. <li>Open a web browser and navigate to http://DNSorIP:8096</li>
  40. <li>Follow the setup wizard</li>
  41. <li>Welcome to Jellyfin</li>
  42. </ol>
  43. </div>
  44. </div>
  45. </body>
  46. </html>