Skip to content

Commit

Permalink
Update linux.md
Browse files Browse the repository at this point in the history
# Out-of-date generic Linux of build
---
## It was sudo wget https://repo.jellyfin.org/releases/server/linux/stable/combined/jellyfin_10.8.9_amd64.tar.gz ---
> 
> - (...)jellyfin_10.8.**9**_(...)
 - (...)jellyfin_10.8.**13**_(...) ---
## The correct is sudo wget https://repo.jellyfin.org/releases/server/linux/stable/combined/jellyfin_10.8.13_amd64.tar.gz
--- 

## I also corrected the other places where it was " 10.8.*9* " to " 10.8.*13* "
  • Loading branch information
SlimTux authored Dec 30, 2023
1 parent e978d4b commit 5fe6543
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/general/installation/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,19 +310,19 @@ cd /opt/jellyfin
```
Download the latest generic Linux build for your architecture.
The rest of these instructions assume version 10.8.9 is being installed (i.e. `jellyfin_10.8.9_amd64.tar.gz`).
The rest of these instructions assume version 10.8.13 is being installed (i.e. `jellyfin_10.8.13_amd64.tar.gz`).
Download the generic build, then extract the archive:
```sh
sudo wget https://repo.jellyfin.org/releases/server/linux/stable/combined/jellyfin_10.8.9_amd64.tar.gz
sudo tar xvzf jellyfin_10.8.9_amd64.tar.gz
sudo wget https://repo.jellyfin.org/releases/server/linux/stable/combined/jellyfin_10.8.13_amd64.tar.gz
sudo tar xvzf jellyfin_10.8.13_amd64.tar.gz
```
Create a symbolic link to the Jellyfin 10.8.9 directory.
Create a symbolic link to the Jellyfin 10.8.13 directory.
This allows an upgrade by repeating the above steps and enabling it by simply re-creating the symbolic link to the new version.
```sh
sudo ln -s jellyfin_10.8.9 jellyfin
sudo ln -s jellyfin_10.8.13 jellyfin
```
Create four sub-directories for Jellyfin data.
Expand Down

0 comments on commit 5fe6543

Please sign in to comment.