1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install Jellyfin On Debian</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <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">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install Jellyfin On Debian">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="03/27/2022 12:34:25 PM" />
- <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 Jellyfin On Debian</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Log into the Debian device</li>
- <li>Run the following commands in terminal
- <div class="codeBlock"># install prerequisites <br />
- sudo apt install apt-transport-https -y<br />
- # add gpg key<br />
- wget -O - https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo apt-key add -<br />
- # add apt repository<br />
- echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/$( awk -F'=' '/^ID=/{ print $NF }' /etc/os-release ) $( awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release ) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list<br />
- # update software repositories<br />
- sudo apt update<br />
- # install jellyfin<br />
- sudo apt install jellyfin -y</div>
- </li>
- <li>Open a web browser and navigate to http://DNSorIP:8096</li>
- <li>Follow the setup wizard</li>
- <li>Welcome to Jellyfin</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|