Installing Jellyfin: Difference between revisions
Corrected version numbers to latest, changed to a root install, corrected order of events. |
m →Installing Jellyfin: Added missing sudo, correct gz to xz |
||
| Line 23: | Line 23: | ||
* Create the directory <code>sudo mkdir /opt/jellyfin</code> | * Create the directory <code>sudo mkdir /opt/jellyfin</code> | ||
* Move into the directory <code>cd /opt/jellyfin</code> | * Move into the directory <code>cd /opt/jellyfin</code> | ||
* Download the latest tarball from the [https://repo.jellyfin.org/?path=/server/linux/latest-stable/amd64 Jellyfin website] - for example, <code>wget https://repo.jellyfin.org/files/server/linux/latest-stable/amd64/jellyfin_10.10.7-amd64.tar.xz</code> | * Download the latest tarball from the [https://repo.jellyfin.org/?path=/server/linux/latest-stable/amd64 Jellyfin website] - for example, <code>sudo wget https://repo.jellyfin.org/files/server/linux/latest-stable/amd64/jellyfin_10.10.7-amd64.tar.xz</code> | ||
* Unzip the tar archive, <code>sudo tar Jxvf jellyfin_10.10.7-amd64.tar. | * Unzip the tar archive, <code>sudo tar Jxvf jellyfin_10.10.7-amd64.tar.xz</code> | ||
* We need to create the script to run Jellyfin and run it as a service. Open <code>sudo nano jellyfin.sh</code> and add the following to the script file: | * We need to create the script to run Jellyfin and run it as a service. Open <code>sudo nano jellyfin.sh</code> and add the following to the script file: | ||
#!/bin/bash | #!/bin/bash | ||