Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Improve docs for Ubuntu/Debian
Browse files Browse the repository at this point in the history
1. Enable universe for Ubuntu
2. Mention apt -f install for manual packages
  • Loading branch information
joshuaboniface committed Apr 21, 2019
1 parent 935a3c3 commit 205f7cd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/administrator-docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ Raw Debian packages, compatible with Debian 9+, are available [here](https://rep
1. Install the downloaded `.deb` packages:
`sudo dpkg -i jellyfin_*.deb jellyfin-ffmpeg_*.deb`

1. Use `apt` to install any missing dependencies:
`sudo apt -f install`

1. Manage the Jellyfin system service with your tool of choice:
`sudo service jellyfin status`
`sudo systemctl restart jellyfin`
Expand All @@ -154,6 +157,9 @@ The Jellyfin team provides an Ubuntu repository for installation on Ubuntu Xenia
1. Install HTTPS transport for APT if you haven't already:
`sudo apt install apt-transport-https`

1. Enable the Universe repository to obtain all the FFMpeg dependencies:
`sudo add-apt-repository universe`

1. Import the GPG signing key (signed by the Jellyfin Team):
`wget -O - https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | sudo apt-key add -`

Expand All @@ -179,6 +185,10 @@ Raw Ubuntu packages, compatible with Ubuntu 16.04+, are available [here](https:/

**Note:** The repository is the preferred way to obtain Jellyfin on Ubuntu, as it contains several dependencies as well.

1. Enable the Universe repository to obtain all the FFMpeg dependencies, and update repositories:
`sudo add-apt-repository universe`
`sudo apt update`

1. Download the desired `jellyfin` and `jellyfin-ffmpeg` `.deb` packages from the repository.

1. Install the required dependencies:
Expand All @@ -187,6 +197,9 @@ Raw Ubuntu packages, compatible with Ubuntu 16.04+, are available [here](https:/
1. Install the downloaded `.deb` packages:
`sudo dpkg -i jellyfin_*.deb jellyfin-ffmpeg_*.deb`

1. Use `apt` to install any missing dependencies:
`sudo apt -f install`

1. Manage the Jellyfin system service with your tool of choice:
`sudo service jellyfin status`
`sudo systemctl restart jellyfin`
Expand Down

0 comments on commit 205f7cd

Please sign in to comment.