Skip to content
This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Commit b4922e2

Browse files
Merge pull request #141 from ctrlcctrlv/patch-1
2 parents c7b168a + f7a0621 commit b4922e2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

content/downloads/_index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ docker run -d -v /srv/jellyfin/config:/config -v /srv/jellyfin/cache:/cache -v /
5555
</div>
5656
</div>
5757
<div class="debian">
58-
<h4>Debian and Ubuntu</h4>
58+
<h4>Debian and Ubuntu (including derivatives such as Pop! OS)</h4>
5959
<p>Install Jellyfin via our Apt repository or via manual archives (.deb).</p>
6060
<p>
6161
<div class="button button__accent" id="deb_repo_stable_button">Stable</div>
@@ -90,10 +90,11 @@ docker run -d -v /srv/jellyfin/config:/config -v /srv/jellyfin/cache:/cache -v /
9090
<div id="deb_repo_stable" style="display:none;">
9191
<pre><code>sudo apt install curl gnupg
9292
curl -fsSL https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/jellyfin.gpg
93-
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
93+
RELEASE=$( hash pop-upgrade 2> /dev/null && echo Ubuntu || lsb_release --id --short )
94+
echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/"${RELEASE,,}" $( lsb_release --codename --short ) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list
9495
sudo apt update
9596
sudo apt install jellyfin</code></pre>
96-
<p><i>Note:</i> The third command should give you output similar to <code>deb [arch=(architecture)] https://repo.jellyfin.org/(distribution) (release) main"</code>. We support <code>amd64</code>, <code>armhf</code>, and <code>arm64</code> for architectures, <code>debian</code> and <code>ubuntu</code> for distributions, <code>buster</code> and <code>bullseye</code> for Debian releases and <code>bionic</code>, <code>focal</code>, <code>impish</code> and <code>jammy</code> for Ubuntu releases. If you see something different in your output, you might need to manually modify it. Use the closest equivalent Debian or Ubuntu version instead.</p>
97+
<p><i>Note:</i> The fourth command should give you output similar to <code>deb [arch=(architecture)] https://repo.jellyfin.org/(distribution) (release) main"</code>. We support <code>amd64</code>, <code>armhf</code>, and <code>arm64</code> for architectures, <code>debian</code> and <code>ubuntu</code> for distributions, <code>buster</code> and <code>bullseye</code> for Debian releases and <code>bionic</code>, <code>focal</code>, <code>impish</code> and <code>jammy</code> for Ubuntu releases. If you see something different in your output, you might need to manually modify it. Use the closest equivalent Debian or Ubuntu version instead.</p>
9798
<p>Once installed, Jellyfin will be running as a service. Manage it with <pre><code>sudo systemctl {action} jellyfin.service</code></pre> or <pre><code>sudo service jellyfin {action}</code></pre></p>
9899
</div>
99100
<div id="deb_repo_nightly" style="display:none;">

0 commit comments

Comments
 (0)