2024-08-03, 04:02 PM
(2024-07-24, 08:09 AM)theguymadmax Wrote: You're almost there. Here are a couple of notes:
- When using the Python checkout script, you fetched from the 'master' branch instead of the current release. It should have been
Typically, I just use git commands to checkout the branches. No big problem though; you'll just end up on the unstable version (10.10.0).Code:./checkout.py v10.9.8
- After compiling, you'll have three .deb packages. You only need to install two of them: jellyfin-server and jellyfin-web. The third one isn't necessary. The command you used only installed the unnecessary package.
- To install correctly, use
To verify proper installation, check the dashboard. A manually compiled version will have a build version that matches the date-stamp of the .deb packages. In your case, you'll also see that your server and web versions are 10.10.0. Usually, you'll need to refresh the page to see some of the changes in build numbers.Code:sudo dpkg -i jellyfin-*.deb
- Once installed correctly, remember to refresh the guide data from the dashboard.
Seems kind of strange that I have to commit my changes in order to test them. The order should be test first then commit.