LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored #7290

Open
opened 2026-02-07 04:48:51 +03:00 by OVERLORD · 14 comments
Owner

Originally created by @gzowner on GitHub (Aug 30, 2025).

Description of the bug

Aug 29 17:55:37 s557 jellyfin[41556]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.

Reproduction steps

1) Install jemalloc

sudo apt-get update
sudo apt-get install -y libjemalloc2

2) Point LD_PRELOAD to the real library path (Ubuntu puts it here)

sudo systemctl edit jellyfin
Paste this into the editor that opens, then save/exit:

ini
Copy code
[Service]
Environment="LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2"

What is the current bug behavior?

Slow responding

What is the expected correct behavior?

Application to restart and start as needed?

Jellyfin Server version

Unstable

Specify commit id

No response

Specify unstable release number

No response

Specify version number

No response

Specify the build version

10.11.0-rc5

Environment

[2025-08-29 18:00:25.628 -04:00] [INF] Jellyfin version: "10.11.0"
[2025-08-29 18:00:25.632 -04:00] [INF] Environment Variables: ["[JELLYFIN_USER, jellyfin]", "[JELLYFIN_ADDITIONAL_OPTS, ]", "[JELLYFIN_DATA_DIR, /var/lib/jellyfin]", "[JELLYFIN_CACHE_DIR, /var/cache/jellyfin]", "[JELLYFIN_LOG_DIR, /var/log/jellyfin]", "[JELLYFIN_FFMPEG_OPT, --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg]", "[JELLYFIN_WEB_OPT, --webdir=/usr/share/jellyfin/web]", "[JELLYFIN_CONFIG_DIR, /etc/jellyfin]", "[JELLYFIN_ARGS, $JELLYFIN_WEB_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT $JELLFIN_ADDITIONAL_OPTS --datadir $JELLYFIN_DATA_DIR --configdir $JELLYFIN_CONFIG_DIR --logdir $JELLYFIN_LOG_DIR --cachedir $JELLYFIN_CACHE_DIR]"]
[2025-08-29 18:00:25.634 -04:00] [INF] Arguments: ["/usr/lib/jellyfin/bin/jellyfin.dll", "--webdir=/usr/share/jellyfin/web", "--ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg"]
[2025-08-29 18:00:25.634 -04:00] [INF] Operating system: "Ubuntu 22.04.5 LTS"
[2025-08-29 18:00:25.634 -04:00] [INF] Architecture: X64
[2025-08-29 18:00:25.635 -04:00] [INF] 64-Bit Process: True
[2025-08-29 18:00:25.635 -04:00] [INF] User Interactive: True
[2025-08-29 18:00:25.635 -04:00] [INF] Processor count: 48
[2025-08-29 18:00:25.635 -04:00] [INF] Program data path: "/var/lib/jellyfin"
[2025-08-29 18:00:25.635 -04:00] [INF] Log directory path: "/var/log/jellyfin"
[2025-08-29 18:00:25.635 -04:00] [INF] Config directory path: "/etc/jellyfin"
[2025-08-29 18:00:25.635 -04:00] [INF] Cache path: "/var/cache/jellyfin"
[2025-08-29 18:00:25.635 -04:00] [INF] Temp directory path: "/tmp/jellyfin"
[2025-08-29 18:00:25.635 -04:00] [INF] Web resources path: "/usr/share/jellyfin/web"
[2025-08-29 18:00:25.636 -04:00] [INF] Application directory: "/usr/lib/jellyfin/bin/"
[2025-08-29 18:00:25.653 -04:00] [INF] Storage path `"/var/lib/jellyfin/data"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "2GB".
[2025-08-29 18:00:25.654 -04:00] [INF] Storage path `"/var/log/jellyfin"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "512MB".
[2025-08-29 18:00:25.654 -04:00] [INF] Storage path `"/var/cache/jellyfin"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "2GB".
[2025-08-29 18:00:25.654 -04:00] [INF] Storage path `"/var/lib/jellyfin"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "2GB".
[2025-08-29 18:00:25.654 -04:00] [INF] Storage path `"/tmp/jellyfin"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "2GB".
[2025-08-29 18:00:25.657 -04:00] [INF] Setting cache path: "/var/cache/jellyfin"
[2025-08-29 18:00:25.740 -04:00] [INF] The database locking mode has been set to: NoLock.

Jellyfin logs

ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file)

FFmpeg logs


Client / Browser logs

No response

Relevant screenshots or videos

No response

Additional information

Solution

Point the expected path to the actual lib on Ubuntu/Debian

sudo mkdir -p /usr/lib/jellyfin
sudo ln -sf /usr/lib/x86_64-linux-gnu/libjemalloc.so.2 /usr/lib/jellyfin/libjemalloc.so

Restart and check logs

sudo systemctl restart jellyfin
journalctl -u jellyfin -n 50 --no-pager

Originally created by @gzowner on GitHub (Aug 30, 2025). ### Description of the bug Aug 29 17:55:37 s557 jellyfin[41556]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. ### Reproduction steps # 1) Install jemalloc sudo apt-get update sudo apt-get install -y libjemalloc2 # 2) Point LD_PRELOAD to the real library path (Ubuntu puts it here) sudo systemctl edit jellyfin Paste this into the editor that opens, then save/exit: ini Copy code [Service] Environment="LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2" ### What is the current _bug_ behavior? Slow responding ### What is the expected _correct_ behavior? Application to restart and start as needed? ### Jellyfin Server version Unstable ### Specify commit id _No response_ ### Specify unstable release number _No response_ ### Specify version number _No response_ ### Specify the build version 10.11.0-rc5 ### Environment ```markdown [2025-08-29 18:00:25.628 -04:00] [INF] Jellyfin version: "10.11.0" [2025-08-29 18:00:25.632 -04:00] [INF] Environment Variables: ["[JELLYFIN_USER, jellyfin]", "[JELLYFIN_ADDITIONAL_OPTS, ]", "[JELLYFIN_DATA_DIR, /var/lib/jellyfin]", "[JELLYFIN_CACHE_DIR, /var/cache/jellyfin]", "[JELLYFIN_LOG_DIR, /var/log/jellyfin]", "[JELLYFIN_FFMPEG_OPT, --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg]", "[JELLYFIN_WEB_OPT, --webdir=/usr/share/jellyfin/web]", "[JELLYFIN_CONFIG_DIR, /etc/jellyfin]", "[JELLYFIN_ARGS, $JELLYFIN_WEB_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT $JELLFIN_ADDITIONAL_OPTS --datadir $JELLYFIN_DATA_DIR --configdir $JELLYFIN_CONFIG_DIR --logdir $JELLYFIN_LOG_DIR --cachedir $JELLYFIN_CACHE_DIR]"] [2025-08-29 18:00:25.634 -04:00] [INF] Arguments: ["/usr/lib/jellyfin/bin/jellyfin.dll", "--webdir=/usr/share/jellyfin/web", "--ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg"] [2025-08-29 18:00:25.634 -04:00] [INF] Operating system: "Ubuntu 22.04.5 LTS" [2025-08-29 18:00:25.634 -04:00] [INF] Architecture: X64 [2025-08-29 18:00:25.635 -04:00] [INF] 64-Bit Process: True [2025-08-29 18:00:25.635 -04:00] [INF] User Interactive: True [2025-08-29 18:00:25.635 -04:00] [INF] Processor count: 48 [2025-08-29 18:00:25.635 -04:00] [INF] Program data path: "/var/lib/jellyfin" [2025-08-29 18:00:25.635 -04:00] [INF] Log directory path: "/var/log/jellyfin" [2025-08-29 18:00:25.635 -04:00] [INF] Config directory path: "/etc/jellyfin" [2025-08-29 18:00:25.635 -04:00] [INF] Cache path: "/var/cache/jellyfin" [2025-08-29 18:00:25.635 -04:00] [INF] Temp directory path: "/tmp/jellyfin" [2025-08-29 18:00:25.635 -04:00] [INF] Web resources path: "/usr/share/jellyfin/web" [2025-08-29 18:00:25.636 -04:00] [INF] Application directory: "/usr/lib/jellyfin/bin/" [2025-08-29 18:00:25.653 -04:00] [INF] Storage path `"/var/lib/jellyfin/data"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "2GB". [2025-08-29 18:00:25.654 -04:00] [INF] Storage path `"/var/log/jellyfin"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "512MB". [2025-08-29 18:00:25.654 -04:00] [INF] Storage path `"/var/cache/jellyfin"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "2GB". [2025-08-29 18:00:25.654 -04:00] [INF] Storage path `"/var/lib/jellyfin"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "2GB". [2025-08-29 18:00:25.654 -04:00] [INF] Storage path `"/tmp/jellyfin"` (Fixed) successfully checked with "1.6TB" free which is over the minimum of "2GB". [2025-08-29 18:00:25.657 -04:00] [INF] Setting cache path: "/var/cache/jellyfin" [2025-08-29 18:00:25.740 -04:00] [INF] The database locking mode has been set to: NoLock. ``` ### Jellyfin logs ```shell ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file) ``` ### FFmpeg logs ```shell ``` ### Client / Browser logs _No response_ ### Relevant screenshots or videos _No response_ ### Additional information Solution # Point the expected path to the actual lib on Ubuntu/Debian sudo mkdir -p /usr/lib/jellyfin sudo ln -sf /usr/lib/x86_64-linux-gnu/libjemalloc.so.2 /usr/lib/jellyfin/libjemalloc.so # Restart and check logs sudo systemctl restart jellyfin journalctl -u jellyfin -n 50 --no-pager
OVERLORD added the bug label 2026-02-07 04:48:51 +03:00
Author
Owner

@gnattu commented on GitHub (Aug 30, 2025):

The default env file is defined in /etc/default/jellyfin which is also sourced by the systemd unit.

Current unstable packaging should automatically install libjemalloc iirc and you should not have to modify anything:

50c398a503/debian/jellyfin-server.postinst (L53)

Can you explain more in detail why you have to install jemalloc manually and why the post install script does the automatic linking does not work for you?

@gnattu commented on GitHub (Aug 30, 2025): The default env file is defined in /etc/default/jellyfin which is also sourced by the systemd unit. Current unstable packaging should automatically install libjemalloc iirc and you should not have to modify anything: https://github.com/jellyfin/jellyfin-packaging/blob/50c398a503f12ecb8528cf2e300845b17c144e18/debian/jellyfin-server.postinst#L53 Can you explain more in detail why you have to install jemalloc manually and why the post install script does the automatic linking does not work for you?
Author
Owner

@gzowner commented on GitHub (Aug 30, 2025):

Did the normal install of the RC5. Check logs and that is the error.
Deleted and reinstalled and same errors. So did the work around and things
working just fine now.

On Fri, Aug 29, 2025, 11:47 PM gnattu @.***> wrote:

gnattu left a comment (jellyfin/jellyfin#14721)
https://github.com/jellyfin/jellyfin/issues/14721#issuecomment-3238945467

The default env file is defined in /etc/default/jellyfin which is also
sourced by the systemd unit.

Current unstable packaging should automatically install libjemalloc iirc
and you should not have to modify anything:

50c398a503/debian/jellyfin-server.postinst (L53)

Can you explain more in detail why you have to install jemalloc manually
and why the post install script does the automatic linking does not work
for you?


Reply to this email directly, view it on GitHub
https://github.com/jellyfin/jellyfin/issues/14721#issuecomment-3238945467,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AOTZDS3I3ULC4L67X2K6XID3QEUGZAVCNFSM6AAAAACFFWHAUWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTEMZYHE2DKNBWG4
.
You are receiving this because you authored the thread.Message ID:
@.***>

@gzowner commented on GitHub (Aug 30, 2025): Did the normal install of the RC5. Check logs and that is the error. Deleted and reinstalled and same errors. So did the work around and things working just fine now. On Fri, Aug 29, 2025, 11:47 PM gnattu ***@***.***> wrote: > *gnattu* left a comment (jellyfin/jellyfin#14721) > <https://github.com/jellyfin/jellyfin/issues/14721#issuecomment-3238945467> > > The default env file is defined in /etc/default/jellyfin which is also > sourced by the systemd unit. > > Current unstable packaging should automatically install libjemalloc iirc > and you should not have to modify anything: > > > https://github.com/jellyfin/jellyfin-packaging/blob/50c398a503f12ecb8528cf2e300845b17c144e18/debian/jellyfin-server.postinst#L53 > > Can you explain more in detail why you have to install jemalloc manually > and why the post install script does the automatic linking does not work > for you? > > — > Reply to this email directly, view it on GitHub > <https://github.com/jellyfin/jellyfin/issues/14721#issuecomment-3238945467>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/AOTZDS3I3ULC4L67X2K6XID3QEUGZAVCNFSM6AAAAACFFWHAUWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTEMZYHE2DKNBWG4> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Author
Owner

@evert commented on GitHub (Oct 6, 2025):

I also have this error on a fresh Debian install.

my /etc/default/jellyfin points to:

LD_PRELOAD=/usr/lib/jellyfin/libjemalloc.so

The /usr/lib/jellyfin directory only has a bin subdirectory and nothing else.

@evert commented on GitHub (Oct 6, 2025): I also have this error on a fresh Debian install. my `/etc/default/jellyfin` points to: ``` LD_PRELOAD=/usr/lib/jellyfin/libjemalloc.so ``` The `/usr/lib/jellyfin` directory only has a `bin` subdirectory and nothing else.
Author
Owner

@joshuaboniface commented on GitHub (Oct 7, 2025):

So we're having to do some automagic in the Debian packaging config to find the real libjemalloc file (thanks to differences between Debian and Ubuntu and between versions of each) and then linking it into /usr/lib/jellyfin, like so:

jellyfin-packaging $ grep -A4 jemalloc ./debian/jellyfin-server.postinst
    # Install libjemalloc.so symlink into /usr/lib/jellyfin
    LIBJEMALLOC_PATH="$( ldconfig -p | grep libjemalloc | awk '{print $NF}' | head -n1 )"
    if [[ -n ${LIBJEMALLOC_PATH} && -f ${LIBJEMALLOC_PATH} ]]; then
        ln -sf ${LIBJEMALLOC_PATH} /usr/lib/jellyfin/libjemalloc.so
    fi

It seems like this isn't being found on either of your systems.

libjemalloc2 is definitely configured as a Depends for jellyfin-server, so you shouldn't have a successful install without the package:

jellyfin-packaging $ grep -C2 jemalloc ./debian/control
Package: jellyfin-server
Architecture: any
Depends: libfontconfig1, libjemalloc2, adduser, ${icu:Depends}
Recommends: jellyfin-web, sudo, jellyfin-ffmpeg7 | ffmpeg
Description: Jellyfin is the Free Software Media System.

Can you post your original installation apt logs, as well as the output of [sudo] ldconfig -p | grep libjemalloc?

@joshuaboniface commented on GitHub (Oct 7, 2025): So we're having to do some automagic in the Debian packaging config to find the real libjemalloc file (thanks to differences between Debian and Ubuntu and between versions of each) and then linking it into `/usr/lib/jellyfin`, like so: ``` jellyfin-packaging $ grep -A4 jemalloc ./debian/jellyfin-server.postinst # Install libjemalloc.so symlink into /usr/lib/jellyfin LIBJEMALLOC_PATH="$( ldconfig -p | grep libjemalloc | awk '{print $NF}' | head -n1 )" if [[ -n ${LIBJEMALLOC_PATH} && -f ${LIBJEMALLOC_PATH} ]]; then ln -sf ${LIBJEMALLOC_PATH} /usr/lib/jellyfin/libjemalloc.so fi ``` It seems like this isn't being found on either of your systems. `libjemalloc2` is definitely configured as a `Depends` for `jellyfin-server`, so you shouldn't have a successful install without the package: ``` jellyfin-packaging $ grep -C2 jemalloc ./debian/control Package: jellyfin-server Architecture: any Depends: libfontconfig1, libjemalloc2, adduser, ${icu:Depends} Recommends: jellyfin-web, sudo, jellyfin-ffmpeg7 | ffmpeg Description: Jellyfin is the Free Software Media System. ``` Can you post your original installation `apt` logs, as well as the output of `[sudo] ldconfig -p | grep libjemalloc`?
Author
Owner

@joshuaboniface commented on GitHub (Oct 7, 2025):

I also have a hunch - were your installs done using dpkg -i *.deb followed by apt -f install? That sequence - which to be fair is what we had documented - would indeed cause this exact problem since libjemalloc2 wouldn't be found during the postinst run for jellyfin-server, and the symlink we expect wouldn't get created later when the dep is installed by apt -f install. In any case we've updated our docs to reflect best-practices and avoid this potential problem.

@joshuaboniface commented on GitHub (Oct 7, 2025): I also have a hunch - were your installs done using `dpkg -i *.deb` followed by `apt -f install`? That sequence - which to be fair is what we had documented - would indeed cause this exact problem since `libjemalloc2` wouldn't be found during the `postinst` run for `jellyfin-server`, and the symlink we expect wouldn't get created later when the dep is installed by `apt -f install`. In any case we've updated our docs to reflect best-practices and avoid this potential problem.
Author
Owner

@joshuaboniface commented on GitHub (Oct 8, 2025):

Reopening until confirmation.

@joshuaboniface commented on GitHub (Oct 8, 2025): Reopening until confirmation.
Author
Owner

@evert commented on GitHub (Oct 8, 2025):

I also have a hunch - were your installs done using dpkg -i *.deb followed by apt -f install? That sequence - which to be fair is what we had documented - would indeed cause this exact problem since libjemalloc2 wouldn't be found during the postinst run for jellyfin-server, and the symlink we expect wouldn't get created later when the dep is installed by apt -f install. In any case we've updated our docs to reflect best-practices and avoid this potential problem.

For a bit more context, I took a look at my .zsh_history and installed jellyfin with:

curl -s https://repo.jellyfin.org/install-debuntu.sh | sudo

Jellyfin failed to start and I ended up running this to get it going:

sudo apt install libicu76

Then I saw the libjemalloc error and ran:

sudo apt install libjemalloc2

I'm not sure if this library was already installed, or if it just got marked as manually installed at this point. After, I fixed the error with:

sudo ln -sf /usr/lib/x86_64-linux-gnu/libjemalloc.so.2 /usr/lib/jellyfin/libjemalloc.so

Is it possible that a missing libicu76 could have caused the postinst to fail? I no longer have the logs and can't reproduce on my running system unfortunately

@evert commented on GitHub (Oct 8, 2025): > I also have a hunch - were your installs done using dpkg -i *.deb followed by apt -f install? That sequence - which to be fair is what we had documented - would indeed cause this exact problem since libjemalloc2 wouldn't be found during the postinst run for jellyfin-server, and the symlink we expect wouldn't get created later when the dep is installed by apt -f install. In any case we've updated our docs to reflect best-practices and avoid this potential problem. For a bit more context, I took a look at my `.zsh_history` and installed jellyfin with: ``` curl -s https://repo.jellyfin.org/install-debuntu.sh | sudo ``` Jellyfin failed to start and I ended up running this to get it going: ``` sudo apt install libicu76 ``` Then I saw the libjemalloc error and ran: ``` sudo apt install libjemalloc2 ``` I'm not sure if this library was already installed, or if it just got marked as manually installed at this point. After, I fixed the error with: ``` sudo ln -sf /usr/lib/x86_64-linux-gnu/libjemalloc.so.2 /usr/lib/jellyfin/libjemalloc.so ``` Is it possible that a missing `libicu76` could have caused the `postinst` to fail? I no longer have the logs and can't reproduce on my running system unfortunately
Author
Owner

@evert commented on GitHub (Oct 8, 2025):

Full journalctl log of that day:

Oct 05 23:44:46 corndog addgroup[3455]: Adding group `jellyfin' (GID 104) ...
Oct 05 23:44:47 corndog groupadd[3458]: group added to /etc/group: name=jellyfin, GID=104
Oct 05 23:44:47 corndog groupadd[3458]: group added to /etc/gshadow: name=jellyfin
Oct 05 23:44:47 corndog groupadd[3458]: new group: name=jellyfin, GID=104
Oct 05 23:44:47 corndog adduser[3463]: Adding system user `jellyfin' (UID 104) ...
Oct 05 23:44:47 corndog adduser[3463]: The home dir /var/lib/jellyfin you specified can't be accessed: No such file or directory
Oct 05 23:44:47 corndog adduser[3463]: Adding new user `jellyfin' (UID 104) with group `jellyfin' ...
Oct 05 23:44:47 corndog useradd[3468]: new user: name=jellyfin, UID=104, GID=104, home=/var/lib/jellyfin, shell=/bin/false, from=none
Oct 05 23:44:47 corndog adduser[3463]: Not creating home directory `/var/lib/jellyfin' as requested.
Oct 05 23:44:47 corndog usermod[3480]: add 'jellyfin' to group 'render'
Oct 05 23:44:47 corndog usermod[3480]: add 'jellyfin' to shadow group 'render'
Oct 05 23:44:47 corndog usermod[3486]: add 'jellyfin' to group 'video'
Oct 05 23:44:47 corndog usermod[3486]: add 'jellyfin' to shadow group 'video'
Oct 05 23:44:48 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server.
Oct 05 23:44:48 corndog (jellyfin)[3552]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT
Oct 05 23:44:48 corndog jellyfin[3552]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Oct 05 23:44:48 corndog jellyfin[3552]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information.
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Environment.FailFast(System.String)
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Globalization.GlobalizationMode+Settings..cctor()
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Globalization.CultureData.CreateCultureWithInvariantData()
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Globalization.CultureData.get_Invariant()
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Globalization.CultureInfo..cctor()
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Globalization.CultureInfo.get_InvariantCulture()
Oct 05 23:44:48 corndog jellyfin[3552]:    at CommandLine.ParserSettings..ctor()
Oct 05 23:44:48 corndog jellyfin[3552]:    at CommandLine.Parser+<>c.<.cctor>b__20_0()
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode)
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean)
Oct 05 23:44:48 corndog jellyfin[3552]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
Oct 05 23:44:48 corndog jellyfin[3552]:    at CommandLine.Parser.get_Default()
Oct 05 23:44:48 corndog jellyfin[3552]:    at Jellyfin.Server.Program.Main(System.String[])
Oct 05 23:44:48 corndog jellyfin[3552]:    at Jellyfin.Server.Program.<Main>(System.String[])
Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT
Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Failed with result 'signal'.
Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 1.
Oct 05 23:44:48 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server.
Oct 05 23:44:48 corndog (jellyfin)[3565]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT
Oct 05 23:44:48 corndog jellyfin[3565]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Oct 05 23:44:48 corndog jellyfin[3565]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information.
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Environment.FailFast(System.String)
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Globalization.GlobalizationMode+Settings..cctor()
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Globalization.CultureData.CreateCultureWithInvariantData()
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Globalization.CultureData.get_Invariant()
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Globalization.CultureInfo..cctor()
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Globalization.CultureInfo.get_InvariantCulture()
Oct 05 23:44:48 corndog jellyfin[3565]:    at CommandLine.ParserSettings..ctor()
Oct 05 23:44:48 corndog jellyfin[3565]:    at CommandLine.Parser+<>c.<.cctor>b__20_0()
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode)
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean)
Oct 05 23:44:48 corndog jellyfin[3565]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
Oct 05 23:44:48 corndog jellyfin[3565]:    at CommandLine.Parser.get_Default()
Oct 05 23:44:48 corndog jellyfin[3565]:    at Jellyfin.Server.Program.Main(System.String[])
Oct 05 23:44:48 corndog jellyfin[3565]:    at Jellyfin.Server.Program.<Main>(System.String[])
Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT
Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Failed with result 'signal'.
Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 2.
Oct 05 23:44:49 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server.
Oct 05 23:44:49 corndog (jellyfin)[3579]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT
Oct 05 23:44:49 corndog jellyfin[3579]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Oct 05 23:44:49 corndog jellyfin[3579]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information.
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Environment.FailFast(System.String)
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Globalization.GlobalizationMode+Settings..cctor()
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Globalization.CultureData.CreateCultureWithInvariantData()
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Globalization.CultureData.get_Invariant()
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Globalization.CultureInfo..cctor()
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Globalization.CultureInfo.get_InvariantCulture()
Oct 05 23:44:49 corndog jellyfin[3579]:    at CommandLine.ParserSettings..ctor()
Oct 05 23:44:49 corndog jellyfin[3579]:    at CommandLine.Parser+<>c.<.cctor>b__20_0()
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode)
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean)
Oct 05 23:44:49 corndog jellyfin[3579]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
Oct 05 23:44:49 corndog jellyfin[3579]:    at CommandLine.Parser.get_Default()
Oct 05 23:44:49 corndog jellyfin[3579]:    at Jellyfin.Server.Program.Main(System.String[])
Oct 05 23:44:49 corndog jellyfin[3579]:    at Jellyfin.Server.Program.<Main>(System.String[])
Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT
Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Failed with result 'signal'.
Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 3.
Oct 05 23:44:49 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server.
Oct 05 23:44:49 corndog (jellyfin)[3587]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT
Oct 05 23:44:49 corndog jellyfin[3587]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Oct 05 23:44:49 corndog jellyfin[3587]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information.
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Environment.FailFast(System.String)
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Globalization.GlobalizationMode+Settings..cctor()
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Globalization.CultureData.CreateCultureWithInvariantData()
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Globalization.CultureData.get_Invariant()
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Globalization.CultureInfo..cctor()
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Globalization.CultureInfo.get_InvariantCulture()
Oct 05 23:44:49 corndog jellyfin[3587]:    at CommandLine.ParserSettings..ctor()
Oct 05 23:44:49 corndog jellyfin[3587]:    at CommandLine.Parser+<>c.<.cctor>b__20_0()
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode)
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean)
Oct 05 23:44:49 corndog jellyfin[3587]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
Oct 05 23:44:49 corndog jellyfin[3587]:    at CommandLine.Parser.get_Default()
Oct 05 23:44:49 corndog jellyfin[3587]:    at Jellyfin.Server.Program.Main(System.String[])
Oct 05 23:44:49 corndog jellyfin[3587]:    at Jellyfin.Server.Program.<Main>(System.String[])
Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT
Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Failed with result 'signal'.
Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 4.
Oct 05 23:44:50 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server.
Oct 05 23:44:50 corndog (jellyfin)[3600]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT
Oct 05 23:44:50 corndog jellyfin[3600]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Oct 05 23:44:50 corndog jellyfin[3600]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information.
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Environment.FailFast(System.String)
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Globalization.GlobalizationMode+Settings..cctor()
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Globalization.CultureData.CreateCultureWithInvariantData()
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Globalization.CultureData.get_Invariant()
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Globalization.CultureInfo..cctor()
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Globalization.CultureInfo.get_InvariantCulture()
Oct 05 23:44:50 corndog jellyfin[3600]:    at CommandLine.ParserSettings..ctor()
Oct 05 23:44:50 corndog jellyfin[3600]:    at CommandLine.Parser+<>c.<.cctor>b__20_0()
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode)
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean)
Oct 05 23:44:50 corndog jellyfin[3600]:    at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
Oct 05 23:44:50 corndog jellyfin[3600]:    at CommandLine.Parser.get_Default()
Oct 05 23:44:50 corndog jellyfin[3600]:    at Jellyfin.Server.Program.Main(System.String[])
Oct 05 23:44:50 corndog jellyfin[3600]:    at Jellyfin.Server.Program.<Main>(System.String[])
Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT
Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Failed with result 'signal'.
Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 5.
Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Start request repeated too quickly.
Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Failed with result 'signal'.
Oct 05 23:44:50 corndog systemd[1]: Failed to start jellyfin.service - Jellyfin Media Server.
Oct 05 23:48:23 corndog sudo[4361]:    evert : TTY=pts/2 ; PWD=/home/evert ; USER=root ; COMMAND=/usr/bin/systemctl start jellyfin
Oct 05 23:48:23 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server.
Oct 05 23:48:23 corndog (jellyfin)[4366]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT
Oct 05 23:48:23 corndog jellyfin[4366]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Jellyfin version: 10.10.7
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Environment Variables: ["[JELLYFIN_LOG_DIR, /var/log/jellyfin]", "[JELLYFIN_CONFIG_DIR, /etc/jellyfin]", "[JELLYFIN_USER, jellyfin]", "[JELLYFIN_ADDITIONAL_OPTS, ]", "[JELLYFIN_DATA_DIR, /var/lib/jellyfin]", "[JELLYFIN_FFMPEG_OPT, --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg]", "[JELLYFIN_WEB_OPT, --webdir=/usr/share/jellyfin/web]", "[JELLYFIN_ARGS, $JELLYFIN_WEB_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT $JELLFIN_ADDITIONAL_OPTS --datadir $JELLYFIN_DATA_DIR --configdir $JELLYFIN_CONFIG_DIR --logdir $JELLYFIN_LOG_DIR --cachedir $JELLYFIN_CACHE_DIR]", "[JELLYFIN_CACHE_DIR, /var/cache/jellyfin]"]
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Arguments: ["/usr/lib/jellyfin/bin/jellyfin.dll", "--webdir=/usr/share/jellyfin/web", "--ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg"]
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Operating system: Debian GNU/Linux 13 (trixie)
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Architecture: X64
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] 64-Bit Process: True
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] User Interactive: True
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Processor count: 4
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Program data path: /var/lib/jellyfin
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Log directory path: /var/log/jellyfin
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Config directory path: /etc/jellyfin
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Cache path: /var/cache/jellyfin
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Temp directory path: /tmp/jellyfin
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Web resources path: /usr/share/jellyfin/web
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Application directory: /usr/lib/jellyfin/bin/
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Marking following migrations as applied because this is a fresh install: ["CreateNetworkConfiguration", "MigrateMusicBrainzTimeout", "MigrateNetworkConfiguration", "MigrateEncodingOptions"]
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Setting cache path: /var/cache/jellyfin
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Loading assemblies
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Defined LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Defined LAN exclusions: []
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Used LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Filtered interface addresses: ["127.0.0.1", "192.168.2.60"]
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Bind Addresses ["0.0.0.0"]
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Remote IP filter is Allowlist
Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Filtered subnets: []
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [INF] There are pending EFCore migrations in the database. Applying... (This may take a while, do not stop Jellyfin)
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'ImageInfos' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration.
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'ImageInfos' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration.
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Permissions' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration.
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Permissions' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration.
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Preferences' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration.
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Preferences' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration.
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Users' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration.
Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Users' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration.
Oct 05 23:48:27 corndog jellyfin[4366]: [23:48:27] [INF] EFCore migrations applied successfully
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Saving system configuration
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Setting cache path: /var/cache/jellyfin
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: TMDb 10.10.7.0
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: Studio Images 10.10.7.0
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: OMDb 10.10.7.0
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: MusicBrainz 10.10.7.0
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: AudioDB 10.10.7.0
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Marking following migrations as applied because this is a fresh install: ["DisableTranscodingThrottling", "CreateLoggingConfigHeirarchy", "MigrateActivityLogDatabase", "RemoveDuplicateExtras", "MigrateUserDatabase", "MigrateDisplayPreferencesDatabase", "RemoveDownloadImagesInAdvance", "MigrateAuthenticationDatabase", "FixPlaylistOwner", "MigrateRatingLevels", "FixAudioData", "RemoveDuplicatePlaylistChildren"]
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'AddDefaultPluginRepository'
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Saving system configuration
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Setting cache path: /var/cache/jellyfin
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'AddDefaultPluginRepository' applied successfully
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'ReaddDefaultPluginRepository'
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'ReaddDefaultPluginRepository' applied successfully
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'AddDefaultCastReceivers'
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Saving system configuration
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Setting cache path: /var/cache/jellyfin
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'AddDefaultCastReceivers' applied successfully
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'UpdateDefaultPluginRepository10.9'
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Saving system configuration
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Setting cache path: /var/cache/jellyfin
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'UpdateDefaultPluginRepository10.9' applied successfully
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'MoveTrickplayFiles'
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Moved 0 items in 00:00:00.1548408
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'MoveTrickplayFiles' applied successfully
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Kestrel is listening on 0.0.0.0
Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [WRN] No XML encryptor configured. Key {338183da-8209-41eb-a364-38b28facbba9} may be persisted to storage in unencrypted form.
Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [WRN] The WebRootPath was not found: /var/lib/jellyfin/wwwroot. Static files may be unavailable.
Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Running startup tasks
Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Daily trigger for Generate Trickplay Images set to fire at 2025-10-06 03:00:00.000 -04:00, which is 03:11:30.4931887 from now.
Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Daily trigger for Extract Chapter Images set to fire at 2025-10-06 02:00:00.000 -04:00, which is 02:11:30.4885188 from now.
Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Found ffmpeg version 7.1.2
Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Available decoders: ["libdav1d", "av1", "av1_cuvid", "av1_qsv", "h264", "h264_qsv", "h264_cuvid", "hevc", "hevc_qsv", "hevc_cuvid", "mpeg2video", "mpeg2_qsv", "mpeg2_cuvid", "mpeg4", "mpeg4_cuvid", "msmpeg4", "vc1_qsv", "vc1_cuvid", "vp8", "libvpx", "vp8_cuvid", "vp8_qsv", "vp9", "libvpx-vp9", "vp9_cuvid", "vp9_qsv", "aac", "ac3", "ac4", "dca", "flac", "mp3", "truehd"]
Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Available encoders: ["libsvtav1", "av1_nvenc", "av1_qsv", "av1_amf", "av1_vaapi", "libx264", "h264_amf", "h264_nvenc", "h264_qsv", "h264_v4l2m2m", "h264_vaapi", "libx265", "hevc_amf", "hevc_nvenc", "hevc_qsv", "hevc_vaapi", "mjpeg_qsv", "mjpeg_vaapi", "aac", "libfdk_aac", "ac3", "alac", "dca", "flac", "libmp3lame", "libopus", "truehd", "libvorbis", "srt"]
Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Available filters: ["bwdif_cuda", "deinterlace_qsv", "deinterlace_vaapi", "flip_vulkan", "hwupload_cuda", "hwupload_vaapi", "libplacebo", "overlay_opencl", "overlay_qsv", "overlay_vaapi", "overlay_vulkan", "overlay_cuda", "procamp_vaapi", "scale_cuda", "scale_opencl", "scale_qsv", "scale_vaapi", "scale_vulkan", "tonemapx", "tonemap_cuda", "tonemap_opencl", "tonemap_vaapi", "transpose_cuda", "transpose_opencl", "transpose_vaapi", "transpose_vulkan", "vpp_qsv", "yadif_cuda", "zscale", "alphasrc"]
Oct 05 23:48:30 corndog jellyfin[4366]: [23:48:30] [INF] Available hwaccel types: ["cuda", "vaapi", "qsv", "drm", "opencl", "vulkan"]
Oct 05 23:48:32 corndog jellyfin[4366]: [23:48:32] [INF] Clean up collections and playlists Completed after 0 minute(s) and 0 seconds
Oct 05 23:48:32 corndog jellyfin[4366]: [23:48:32] [INF] Clean Transcode Directory Completed after 0 minute(s) and 0 seconds
Oct 05 23:48:32 corndog jellyfin[4366]: [23:48:32] [INF] Update Plugins Completed after 0 minute(s) and 0 seconds
Oct 05 23:48:35 corndog jellyfin[4442]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Oct 05 23:48:36 corndog jellyfin[4366]: [23:48:36] [INF] FFmpeg: /usr/lib/jellyfin-ffmpeg/ffmpeg
Oct 05 23:48:36 corndog jellyfin[4366]: [23:48:36] [INF] ServerId: f30fb941875e4626ad462a33999616b6
Oct 05 23:48:36 corndog jellyfin[4366]: [23:48:36] [INF] Core startup complete
Oct 05 23:48:36 corndog jellyfin[4366]: [23:48:36] [INF] Startup complete 0:00:11.9256246
Oct 05 23:55:30 corndog sudo[5383]:    evert : TTY=pts/2 ; PWD=/usr/lib/jellyfin ; USER=root ; COMMAND=/usr/bin/ln -sf /usr/lib/x86_64-linux-gnu/libjemalloc.so.2 /usr/lib/jellyfin/libjemalloc.so
Oct 05 23:55:45 corndog sudo[5449]:    evert : TTY=pts/2 ; PWD=/usr/lib/jellyfin ; USER=root ; COMMAND=/usr/bin/systemctl restart jellyfin.service
Oct 05 23:55:45 corndog systemd[1]: Stopping jellyfin.service - Jellyfin Media Server...
Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Sending shutdown notifications
Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Stopping NAT discovery
Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Running query planner optimizations in the database... This might take a while
Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Disposing CoreAppHost
Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Disposing MusicBrainzArtistProvider
Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Disposing MusicBrainzAlbumProvider
Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Disposing PluginManager
Oct 05 23:55:45 corndog systemd[1]: jellyfin.service: Deactivated successfully.
Oct 05 23:55:45 corndog systemd[1]: Stopped jellyfin.service - Jellyfin Media Server.
Oct 05 23:55:45 corndog systemd[1]: jellyfin.service: Consumed 23.330s CPU time, 128.3M memory peak.
Oct 05 23:55:45 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server.
Oct 05 23:55:45 corndog (jellyfin)[5458]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Jellyfin version: 10.10.7
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Environment Variables: ["[JELLYFIN_WEB_OPT, --webdir=/usr/share/jellyfin/web]", "[JELLYFIN_ARGS, $JELLYFIN_WEB_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT $JELLFIN_ADDITIONAL_OPTS --datadir $JELLYFIN_DATA_DIR --configdir $JELLYFIN_CONFIG_DIR --logdir $JELLYFIN_LOG_DIR --cachedir $JELLYFIN_CACHE_DIR]", "[JELLYFIN_CONFIG_DIR, /etc/jellyfin]", "[JELLYFIN_LOG_DIR, /var/log/jellyfin]", "[JELLYFIN_ADDITIONAL_OPTS, ]", "[JELLYFIN_USER, jellyfin]", "[JELLYFIN_DATA_DIR, /var/lib/jellyfin]", "[JELLYFIN_CACHE_DIR, /var/cache/jellyfin]", "[JELLYFIN_FFMPEG_OPT, --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg]"]
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Arguments: ["/usr/lib/jellyfin/bin/jellyfin.dll", "--webdir=/usr/share/jellyfin/web", "--ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg"]
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Operating system: Debian GNU/Linux 13 (trixie)
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Architecture: X64
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] 64-Bit Process: True
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] User Interactive: True
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Processor count: 4
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Program data path: /var/lib/jellyfin
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Log directory path: /var/log/jellyfin
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Config directory path: /etc/jellyfin
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Cache path: /var/cache/jellyfin
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Temp directory path: /tmp/jellyfin
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Web resources path: /usr/share/jellyfin/web
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Application directory: /usr/lib/jellyfin/bin/
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Marking following migrations as applied because this is a fresh install: ["CreateNetworkConfiguration", "MigrateMusicBrainzTimeout", "MigrateNetworkConfiguration", "MigrateEncodingOptions"]
Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Setting cache path: /var/cache/jellyfin
Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Loading assemblies
Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Defined LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Defined LAN exclusions: []
Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Used LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Filtered interface addresses: ["127.0.0.1", "192.168.2.60"]
Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Bind Addresses ["0.0.0.0"]
Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Remote IP filter is Allowlist
Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Filtered subnets: []
Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: TMDb 10.10.7.0
Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: Studio Images 10.10.7.0
Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: OMDb 10.10.7.0
Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: MusicBrainz 10.10.7.0
Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: AudioDB 10.10.7.0
Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Marking following migrations as applied because this is a fresh install: ["DisableTranscodingThrottling", "CreateLoggingConfigHeirarchy", "MigrateActivityLogDatabase", "RemoveDuplicateExtras", "MigrateUserDatabase", "MigrateDisplayPreferencesDatabase", "RemoveDownloadImagesInAdvance", "MigrateAuthenticationDatabase", "FixPlaylistOwner", "MigrateRatingLevels", "FixAudioData", "RemoveDuplicatePlaylistChildren"]
Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Kestrel is listening on 0.0.0.0
Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [WRN] The WebRootPath was not found: /var/lib/jellyfin/wwwroot. Static files may be unavailable.
Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Running startup tasks
Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Daily trigger for Generate Trickplay Images set to fire at 2025-10-06 03:00:00.000 -04:00, which is 03:04:10.4743718 from now.
Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Daily trigger for Extract Chapter Images set to fire at 2025-10-06 02:00:00.000 -04:00, which is 02:04:10.4668521 from now.
Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Found ffmpeg version 7.1.2
Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Available decoders: ["libdav1d", "av1", "av1_cuvid", "av1_qsv", "h264", "h264_qsv", "h264_cuvid", "hevc", "hevc_qsv", "hevc_cuvid", "mpeg2video", "mpeg2_qsv", "mpeg2_cuvid", "mpeg4", "mpeg4_cuvid", "msmpeg4", "vc1_qsv", "vc1_cuvid", "vp8", "libvpx", "vp8_cuvid", "vp8_qsv", "vp9", "libvpx-vp9", "vp9_cuvid", "vp9_qsv", "aac", "ac3", "ac4", "dca", "flac", "mp3", "truehd"]
Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Available encoders: ["libsvtav1", "av1_nvenc", "av1_qsv", "av1_amf", "av1_vaapi", "libx264", "h264_amf", "h264_nvenc", "h264_qsv", "h264_v4l2m2m", "h264_vaapi", "libx265", "hevc_amf", "hevc_nvenc", "hevc_qsv", "hevc_vaapi", "mjpeg_qsv", "mjpeg_vaapi", "aac", "libfdk_aac", "ac3", "alac", "dca", "flac", "libmp3lame", "libopus", "truehd", "libvorbis", "srt"]
Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Available filters: ["bwdif_cuda", "deinterlace_qsv", "deinterlace_vaapi", "flip_vulkan", "hwupload_cuda", "hwupload_vaapi", "libplacebo", "overlay_opencl", "overlay_qsv", "overlay_vaapi", "overlay_vulkan", "overlay_cuda", "procamp_vaapi", "scale_cuda", "scale_opencl", "scale_qsv", "scale_vaapi", "scale_vulkan", "tonemapx", "tonemap_cuda", "tonemap_opencl", "tonemap_vaapi", "transpose_cuda", "transpose_opencl", "transpose_vaapi", "transpose_vulkan", "vpp_qsv", "yadif_cuda", "zscale", "alphasrc"]
Oct 05 23:55:50 corndog jellyfin[5458]: [23:55:50] [INF] Available hwaccel types: ["cuda", "vaapi", "qsv", "drm", "opencl", "vulkan"]
Oct 05 23:55:52 corndog jellyfin[5458]: [23:55:52] [INF] Clean Transcode Directory Completed after 0 minute(s) and 0 seconds
Oct 05 23:55:52 corndog jellyfin[5458]: [23:55:52] [INF] Clean up collections and playlists Completed after 0 minute(s) and 0 seconds
Oct 05 23:55:52 corndog jellyfin[5458]: [23:55:52] [INF] Update Plugins Completed after 0 minute(s) and 0 seconds
Oct 05 23:55:55 corndog jellyfin[5458]: [23:55:55] [INF] FFmpeg: /usr/lib/jellyfin-ffmpeg/ffmpeg
Oct 05 23:55:55 corndog jellyfin[5458]: [23:55:55] [INF] ServerId: f30fb941875e4626ad462a33999616b6
Oct 05 23:55:55 corndog jellyfin[5458]: [23:55:55] [INF] Core startup complete
Oct 05 23:55:55 corndog jellyfin[5458]: [23:55:55] [INF] Startup complete 0:00:10.1201639
Oct 05 23:57:42 corndog jellyfin[5458]: [23:57:42] [INF] Saving system configuration
Oct 05 23:57:42 corndog jellyfin[5458]: [23:57:42] [INF] Setting cache path: /var/cache/jellyfin
Oct 05 23:57:42 corndog jellyfin[5458]: [23:57:42] [INF] Stopping NAT discovery
Oct 05 23:57:42 corndog jellyfin[5458]: [23:57:42] [WRN] No users, creating one with username jellyfin
@evert commented on GitHub (Oct 8, 2025): Full journalctl log of that day: ``` Oct 05 23:44:46 corndog addgroup[3455]: Adding group `jellyfin' (GID 104) ... Oct 05 23:44:47 corndog groupadd[3458]: group added to /etc/group: name=jellyfin, GID=104 Oct 05 23:44:47 corndog groupadd[3458]: group added to /etc/gshadow: name=jellyfin Oct 05 23:44:47 corndog groupadd[3458]: new group: name=jellyfin, GID=104 Oct 05 23:44:47 corndog adduser[3463]: Adding system user `jellyfin' (UID 104) ... Oct 05 23:44:47 corndog adduser[3463]: The home dir /var/lib/jellyfin you specified can't be accessed: No such file or directory Oct 05 23:44:47 corndog adduser[3463]: Adding new user `jellyfin' (UID 104) with group `jellyfin' ... Oct 05 23:44:47 corndog useradd[3468]: new user: name=jellyfin, UID=104, GID=104, home=/var/lib/jellyfin, shell=/bin/false, from=none Oct 05 23:44:47 corndog adduser[3463]: Not creating home directory `/var/lib/jellyfin' as requested. Oct 05 23:44:47 corndog usermod[3480]: add 'jellyfin' to group 'render' Oct 05 23:44:47 corndog usermod[3480]: add 'jellyfin' to shadow group 'render' Oct 05 23:44:47 corndog usermod[3486]: add 'jellyfin' to group 'video' Oct 05 23:44:47 corndog usermod[3486]: add 'jellyfin' to shadow group 'video' Oct 05 23:44:48 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server. Oct 05 23:44:48 corndog (jellyfin)[3552]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT Oct 05 23:44:48 corndog jellyfin[3552]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. Oct 05 23:44:48 corndog jellyfin[3552]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information. Oct 05 23:44:48 corndog jellyfin[3552]: at System.Environment.FailFast(System.String) Oct 05 23:44:48 corndog jellyfin[3552]: at System.Globalization.GlobalizationMode+Settings..cctor() Oct 05 23:44:48 corndog jellyfin[3552]: at System.Globalization.CultureData.CreateCultureWithInvariantData() Oct 05 23:44:48 corndog jellyfin[3552]: at System.Globalization.CultureData.get_Invariant() Oct 05 23:44:48 corndog jellyfin[3552]: at System.Globalization.CultureInfo..cctor() Oct 05 23:44:48 corndog jellyfin[3552]: at System.Globalization.CultureInfo.get_InvariantCulture() Oct 05 23:44:48 corndog jellyfin[3552]: at CommandLine.ParserSettings..ctor() Oct 05 23:44:48 corndog jellyfin[3552]: at CommandLine.Parser+<>c.<.cctor>b__20_0() Oct 05 23:44:48 corndog jellyfin[3552]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode) Oct 05 23:44:48 corndog jellyfin[3552]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean) Oct 05 23:44:48 corndog jellyfin[3552]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue() Oct 05 23:44:48 corndog jellyfin[3552]: at CommandLine.Parser.get_Default() Oct 05 23:44:48 corndog jellyfin[3552]: at Jellyfin.Server.Program.Main(System.String[]) Oct 05 23:44:48 corndog jellyfin[3552]: at Jellyfin.Server.Program.<Main>(System.String[]) Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Failed with result 'signal'. Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 1. Oct 05 23:44:48 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server. Oct 05 23:44:48 corndog (jellyfin)[3565]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT Oct 05 23:44:48 corndog jellyfin[3565]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. Oct 05 23:44:48 corndog jellyfin[3565]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information. Oct 05 23:44:48 corndog jellyfin[3565]: at System.Environment.FailFast(System.String) Oct 05 23:44:48 corndog jellyfin[3565]: at System.Globalization.GlobalizationMode+Settings..cctor() Oct 05 23:44:48 corndog jellyfin[3565]: at System.Globalization.CultureData.CreateCultureWithInvariantData() Oct 05 23:44:48 corndog jellyfin[3565]: at System.Globalization.CultureData.get_Invariant() Oct 05 23:44:48 corndog jellyfin[3565]: at System.Globalization.CultureInfo..cctor() Oct 05 23:44:48 corndog jellyfin[3565]: at System.Globalization.CultureInfo.get_InvariantCulture() Oct 05 23:44:48 corndog jellyfin[3565]: at CommandLine.ParserSettings..ctor() Oct 05 23:44:48 corndog jellyfin[3565]: at CommandLine.Parser+<>c.<.cctor>b__20_0() Oct 05 23:44:48 corndog jellyfin[3565]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode) Oct 05 23:44:48 corndog jellyfin[3565]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean) Oct 05 23:44:48 corndog jellyfin[3565]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue() Oct 05 23:44:48 corndog jellyfin[3565]: at CommandLine.Parser.get_Default() Oct 05 23:44:48 corndog jellyfin[3565]: at Jellyfin.Server.Program.Main(System.String[]) Oct 05 23:44:48 corndog jellyfin[3565]: at Jellyfin.Server.Program.<Main>(System.String[]) Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT Oct 05 23:44:48 corndog systemd[1]: jellyfin.service: Failed with result 'signal'. Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 2. Oct 05 23:44:49 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server. Oct 05 23:44:49 corndog (jellyfin)[3579]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT Oct 05 23:44:49 corndog jellyfin[3579]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. Oct 05 23:44:49 corndog jellyfin[3579]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information. Oct 05 23:44:49 corndog jellyfin[3579]: at System.Environment.FailFast(System.String) Oct 05 23:44:49 corndog jellyfin[3579]: at System.Globalization.GlobalizationMode+Settings..cctor() Oct 05 23:44:49 corndog jellyfin[3579]: at System.Globalization.CultureData.CreateCultureWithInvariantData() Oct 05 23:44:49 corndog jellyfin[3579]: at System.Globalization.CultureData.get_Invariant() Oct 05 23:44:49 corndog jellyfin[3579]: at System.Globalization.CultureInfo..cctor() Oct 05 23:44:49 corndog jellyfin[3579]: at System.Globalization.CultureInfo.get_InvariantCulture() Oct 05 23:44:49 corndog jellyfin[3579]: at CommandLine.ParserSettings..ctor() Oct 05 23:44:49 corndog jellyfin[3579]: at CommandLine.Parser+<>c.<.cctor>b__20_0() Oct 05 23:44:49 corndog jellyfin[3579]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode) Oct 05 23:44:49 corndog jellyfin[3579]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean) Oct 05 23:44:49 corndog jellyfin[3579]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue() Oct 05 23:44:49 corndog jellyfin[3579]: at CommandLine.Parser.get_Default() Oct 05 23:44:49 corndog jellyfin[3579]: at Jellyfin.Server.Program.Main(System.String[]) Oct 05 23:44:49 corndog jellyfin[3579]: at Jellyfin.Server.Program.<Main>(System.String[]) Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Failed with result 'signal'. Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 3. Oct 05 23:44:49 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server. Oct 05 23:44:49 corndog (jellyfin)[3587]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT Oct 05 23:44:49 corndog jellyfin[3587]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. Oct 05 23:44:49 corndog jellyfin[3587]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information. Oct 05 23:44:49 corndog jellyfin[3587]: at System.Environment.FailFast(System.String) Oct 05 23:44:49 corndog jellyfin[3587]: at System.Globalization.GlobalizationMode+Settings..cctor() Oct 05 23:44:49 corndog jellyfin[3587]: at System.Globalization.CultureData.CreateCultureWithInvariantData() Oct 05 23:44:49 corndog jellyfin[3587]: at System.Globalization.CultureData.get_Invariant() Oct 05 23:44:49 corndog jellyfin[3587]: at System.Globalization.CultureInfo..cctor() Oct 05 23:44:49 corndog jellyfin[3587]: at System.Globalization.CultureInfo.get_InvariantCulture() Oct 05 23:44:49 corndog jellyfin[3587]: at CommandLine.ParserSettings..ctor() Oct 05 23:44:49 corndog jellyfin[3587]: at CommandLine.Parser+<>c.<.cctor>b__20_0() Oct 05 23:44:49 corndog jellyfin[3587]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode) Oct 05 23:44:49 corndog jellyfin[3587]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean) Oct 05 23:44:49 corndog jellyfin[3587]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue() Oct 05 23:44:49 corndog jellyfin[3587]: at CommandLine.Parser.get_Default() Oct 05 23:44:49 corndog jellyfin[3587]: at Jellyfin.Server.Program.Main(System.String[]) Oct 05 23:44:49 corndog jellyfin[3587]: at Jellyfin.Server.Program.<Main>(System.String[]) Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT Oct 05 23:44:49 corndog systemd[1]: jellyfin.service: Failed with result 'signal'. Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 4. Oct 05 23:44:50 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server. Oct 05 23:44:50 corndog (jellyfin)[3600]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT Oct 05 23:44:50 corndog jellyfin[3600]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. Oct 05 23:44:50 corndog jellyfin[3600]: Process terminated. Couldn't find a valid ICU package installed on the system. Please install libicu (or icu-libs) using your package manager and try again. Alternatively you can set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. Please see https://aka.ms/dotnet-missing-libicu for more information. Oct 05 23:44:50 corndog jellyfin[3600]: at System.Environment.FailFast(System.String) Oct 05 23:44:50 corndog jellyfin[3600]: at System.Globalization.GlobalizationMode+Settings..cctor() Oct 05 23:44:50 corndog jellyfin[3600]: at System.Globalization.CultureData.CreateCultureWithInvariantData() Oct 05 23:44:50 corndog jellyfin[3600]: at System.Globalization.CultureData.get_Invariant() Oct 05 23:44:50 corndog jellyfin[3600]: at System.Globalization.CultureInfo..cctor() Oct 05 23:44:50 corndog jellyfin[3600]: at System.Globalization.CultureInfo.get_InvariantCulture() Oct 05 23:44:50 corndog jellyfin[3600]: at CommandLine.ParserSettings..ctor() Oct 05 23:44:50 corndog jellyfin[3600]: at CommandLine.Parser+<>c.<.cctor>b__20_0() Oct 05 23:44:50 corndog jellyfin[3600]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode) Oct 05 23:44:50 corndog jellyfin[3600]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean) Oct 05 23:44:50 corndog jellyfin[3600]: at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue() Oct 05 23:44:50 corndog jellyfin[3600]: at CommandLine.Parser.get_Default() Oct 05 23:44:50 corndog jellyfin[3600]: at Jellyfin.Server.Program.Main(System.String[]) Oct 05 23:44:50 corndog jellyfin[3600]: at Jellyfin.Server.Program.<Main>(System.String[]) Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Main process exited, code=killed, status=6/ABRT Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Failed with result 'signal'. Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 5. Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Start request repeated too quickly. Oct 05 23:44:50 corndog systemd[1]: jellyfin.service: Failed with result 'signal'. Oct 05 23:44:50 corndog systemd[1]: Failed to start jellyfin.service - Jellyfin Media Server. Oct 05 23:48:23 corndog sudo[4361]: evert : TTY=pts/2 ; PWD=/home/evert ; USER=root ; COMMAND=/usr/bin/systemctl start jellyfin Oct 05 23:48:23 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server. Oct 05 23:48:23 corndog (jellyfin)[4366]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT Oct 05 23:48:23 corndog jellyfin[4366]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Jellyfin version: 10.10.7 Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Environment Variables: ["[JELLYFIN_LOG_DIR, /var/log/jellyfin]", "[JELLYFIN_CONFIG_DIR, /etc/jellyfin]", "[JELLYFIN_USER, jellyfin]", "[JELLYFIN_ADDITIONAL_OPTS, ]", "[JELLYFIN_DATA_DIR, /var/lib/jellyfin]", "[JELLYFIN_FFMPEG_OPT, --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg]", "[JELLYFIN_WEB_OPT, --webdir=/usr/share/jellyfin/web]", "[JELLYFIN_ARGS, $JELLYFIN_WEB_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT $JELLFIN_ADDITIONAL_OPTS --datadir $JELLYFIN_DATA_DIR --configdir $JELLYFIN_CONFIG_DIR --logdir $JELLYFIN_LOG_DIR --cachedir $JELLYFIN_CACHE_DIR]", "[JELLYFIN_CACHE_DIR, /var/cache/jellyfin]"] Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Arguments: ["/usr/lib/jellyfin/bin/jellyfin.dll", "--webdir=/usr/share/jellyfin/web", "--ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg"] Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Operating system: Debian GNU/Linux 13 (trixie) Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Architecture: X64 Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] 64-Bit Process: True Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] User Interactive: True Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Processor count: 4 Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Program data path: /var/lib/jellyfin Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Log directory path: /var/log/jellyfin Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Config directory path: /etc/jellyfin Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Cache path: /var/cache/jellyfin Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Temp directory path: /tmp/jellyfin Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Web resources path: /usr/share/jellyfin/web Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Application directory: /usr/lib/jellyfin/bin/ Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Marking following migrations as applied because this is a fresh install: ["CreateNetworkConfiguration", "MigrateMusicBrainzTimeout", "MigrateNetworkConfiguration", "MigrateEncodingOptions"] Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Setting cache path: /var/cache/jellyfin Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Loading assemblies Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Defined LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"] Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Defined LAN exclusions: [] Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Used LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"] Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Filtered interface addresses: ["127.0.0.1", "192.168.2.60"] Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Bind Addresses ["0.0.0.0"] Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Remote IP filter is Allowlist Oct 05 23:48:24 corndog jellyfin[4366]: [23:48:24] [INF] Filtered subnets: [] Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [INF] There are pending EFCore migrations in the database. Applying... (This may take a while, do not stop Jellyfin) Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'ImageInfos' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration. Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'ImageInfos' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration. Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Permissions' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration. Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Permissions' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration. Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Preferences' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration. Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Preferences' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration. Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Users' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration. Oct 05 23:48:26 corndog jellyfin[4366]: [23:48:26] [WRN] An operation of type 'SqlOperation' will be attempted while a rebuild of table 'Users' is pending. The database may not be in an expected state. Review the SQL generated by this migration to help diagnose any failures. Consider moving these operations to a subsequent migration. Oct 05 23:48:27 corndog jellyfin[4366]: [23:48:27] [INF] EFCore migrations applied successfully Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Saving system configuration Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Setting cache path: /var/cache/jellyfin Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: TMDb 10.10.7.0 Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: Studio Images 10.10.7.0 Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: OMDb 10.10.7.0 Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: MusicBrainz 10.10.7.0 Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Loaded plugin: AudioDB 10.10.7.0 Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Marking following migrations as applied because this is a fresh install: ["DisableTranscodingThrottling", "CreateLoggingConfigHeirarchy", "MigrateActivityLogDatabase", "RemoveDuplicateExtras", "MigrateUserDatabase", "MigrateDisplayPreferencesDatabase", "RemoveDownloadImagesInAdvance", "MigrateAuthenticationDatabase", "FixPlaylistOwner", "MigrateRatingLevels", "FixAudioData", "RemoveDuplicatePlaylistChildren"] Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'AddDefaultPluginRepository' Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Saving system configuration Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Setting cache path: /var/cache/jellyfin Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'AddDefaultPluginRepository' applied successfully Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'ReaddDefaultPluginRepository' Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'ReaddDefaultPluginRepository' applied successfully Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'AddDefaultCastReceivers' Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Saving system configuration Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Setting cache path: /var/cache/jellyfin Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'AddDefaultCastReceivers' applied successfully Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'UpdateDefaultPluginRepository10.9' Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Saving system configuration Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Setting cache path: /var/cache/jellyfin Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'UpdateDefaultPluginRepository10.9' applied successfully Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Applying migration 'MoveTrickplayFiles' Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Moved 0 items in 00:00:00.1548408 Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Migration 'MoveTrickplayFiles' applied successfully Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [INF] Kestrel is listening on 0.0.0.0 Oct 05 23:48:28 corndog jellyfin[4366]: [23:48:28] [WRN] No XML encryptor configured. Key {338183da-8209-41eb-a364-38b28facbba9} may be persisted to storage in unencrypted form. Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [WRN] The WebRootPath was not found: /var/lib/jellyfin/wwwroot. Static files may be unavailable. Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Running startup tasks Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Daily trigger for Generate Trickplay Images set to fire at 2025-10-06 03:00:00.000 -04:00, which is 03:11:30.4931887 from now. Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Daily trigger for Extract Chapter Images set to fire at 2025-10-06 02:00:00.000 -04:00, which is 02:11:30.4885188 from now. Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Found ffmpeg version 7.1.2 Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Available decoders: ["libdav1d", "av1", "av1_cuvid", "av1_qsv", "h264", "h264_qsv", "h264_cuvid", "hevc", "hevc_qsv", "hevc_cuvid", "mpeg2video", "mpeg2_qsv", "mpeg2_cuvid", "mpeg4", "mpeg4_cuvid", "msmpeg4", "vc1_qsv", "vc1_cuvid", "vp8", "libvpx", "vp8_cuvid", "vp8_qsv", "vp9", "libvpx-vp9", "vp9_cuvid", "vp9_qsv", "aac", "ac3", "ac4", "dca", "flac", "mp3", "truehd"] Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Available encoders: ["libsvtav1", "av1_nvenc", "av1_qsv", "av1_amf", "av1_vaapi", "libx264", "h264_amf", "h264_nvenc", "h264_qsv", "h264_v4l2m2m", "h264_vaapi", "libx265", "hevc_amf", "hevc_nvenc", "hevc_qsv", "hevc_vaapi", "mjpeg_qsv", "mjpeg_vaapi", "aac", "libfdk_aac", "ac3", "alac", "dca", "flac", "libmp3lame", "libopus", "truehd", "libvorbis", "srt"] Oct 05 23:48:29 corndog jellyfin[4366]: [23:48:29] [INF] Available filters: ["bwdif_cuda", "deinterlace_qsv", "deinterlace_vaapi", "flip_vulkan", "hwupload_cuda", "hwupload_vaapi", "libplacebo", "overlay_opencl", "overlay_qsv", "overlay_vaapi", "overlay_vulkan", "overlay_cuda", "procamp_vaapi", "scale_cuda", "scale_opencl", "scale_qsv", "scale_vaapi", "scale_vulkan", "tonemapx", "tonemap_cuda", "tonemap_opencl", "tonemap_vaapi", "transpose_cuda", "transpose_opencl", "transpose_vaapi", "transpose_vulkan", "vpp_qsv", "yadif_cuda", "zscale", "alphasrc"] Oct 05 23:48:30 corndog jellyfin[4366]: [23:48:30] [INF] Available hwaccel types: ["cuda", "vaapi", "qsv", "drm", "opencl", "vulkan"] Oct 05 23:48:32 corndog jellyfin[4366]: [23:48:32] [INF] Clean up collections and playlists Completed after 0 minute(s) and 0 seconds Oct 05 23:48:32 corndog jellyfin[4366]: [23:48:32] [INF] Clean Transcode Directory Completed after 0 minute(s) and 0 seconds Oct 05 23:48:32 corndog jellyfin[4366]: [23:48:32] [INF] Update Plugins Completed after 0 minute(s) and 0 seconds Oct 05 23:48:35 corndog jellyfin[4442]: ERROR: ld.so: object '/usr/lib/jellyfin/libjemalloc.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. Oct 05 23:48:36 corndog jellyfin[4366]: [23:48:36] [INF] FFmpeg: /usr/lib/jellyfin-ffmpeg/ffmpeg Oct 05 23:48:36 corndog jellyfin[4366]: [23:48:36] [INF] ServerId: f30fb941875e4626ad462a33999616b6 Oct 05 23:48:36 corndog jellyfin[4366]: [23:48:36] [INF] Core startup complete Oct 05 23:48:36 corndog jellyfin[4366]: [23:48:36] [INF] Startup complete 0:00:11.9256246 Oct 05 23:55:30 corndog sudo[5383]: evert : TTY=pts/2 ; PWD=/usr/lib/jellyfin ; USER=root ; COMMAND=/usr/bin/ln -sf /usr/lib/x86_64-linux-gnu/libjemalloc.so.2 /usr/lib/jellyfin/libjemalloc.so Oct 05 23:55:45 corndog sudo[5449]: evert : TTY=pts/2 ; PWD=/usr/lib/jellyfin ; USER=root ; COMMAND=/usr/bin/systemctl restart jellyfin.service Oct 05 23:55:45 corndog systemd[1]: Stopping jellyfin.service - Jellyfin Media Server... Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Sending shutdown notifications Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Stopping NAT discovery Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Running query planner optimizations in the database... This might take a while Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Disposing CoreAppHost Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Disposing MusicBrainzArtistProvider Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Disposing MusicBrainzAlbumProvider Oct 05 23:55:45 corndog jellyfin[4366]: [23:55:45] [INF] Disposing PluginManager Oct 05 23:55:45 corndog systemd[1]: jellyfin.service: Deactivated successfully. Oct 05 23:55:45 corndog systemd[1]: Stopped jellyfin.service - Jellyfin Media Server. Oct 05 23:55:45 corndog systemd[1]: jellyfin.service: Consumed 23.330s CPU time, 128.3M memory peak. Oct 05 23:55:45 corndog systemd[1]: Started jellyfin.service - Jellyfin Media Server. Oct 05 23:55:45 corndog (jellyfin)[5458]: jellyfin.service: Referenced but unset environment variable evaluates to an empty string: JELLYFIN_NOWEBAPP_OPT, JELLYFIN_SERVICE_OPT Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Jellyfin version: 10.10.7 Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Environment Variables: ["[JELLYFIN_WEB_OPT, --webdir=/usr/share/jellyfin/web]", "[JELLYFIN_ARGS, $JELLYFIN_WEB_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT $JELLFIN_ADDITIONAL_OPTS --datadir $JELLYFIN_DATA_DIR --configdir $JELLYFIN_CONFIG_DIR --logdir $JELLYFIN_LOG_DIR --cachedir $JELLYFIN_CACHE_DIR]", "[JELLYFIN_CONFIG_DIR, /etc/jellyfin]", "[JELLYFIN_LOG_DIR, /var/log/jellyfin]", "[JELLYFIN_ADDITIONAL_OPTS, ]", "[JELLYFIN_USER, jellyfin]", "[JELLYFIN_DATA_DIR, /var/lib/jellyfin]", "[JELLYFIN_CACHE_DIR, /var/cache/jellyfin]", "[JELLYFIN_FFMPEG_OPT, --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg]"] Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Arguments: ["/usr/lib/jellyfin/bin/jellyfin.dll", "--webdir=/usr/share/jellyfin/web", "--ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg"] Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Operating system: Debian GNU/Linux 13 (trixie) Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Architecture: X64 Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] 64-Bit Process: True Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] User Interactive: True Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Processor count: 4 Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Program data path: /var/lib/jellyfin Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Log directory path: /var/log/jellyfin Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Config directory path: /etc/jellyfin Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Cache path: /var/cache/jellyfin Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Temp directory path: /tmp/jellyfin Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Web resources path: /usr/share/jellyfin/web Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Application directory: /usr/lib/jellyfin/bin/ Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Marking following migrations as applied because this is a fresh install: ["CreateNetworkConfiguration", "MigrateMusicBrainzTimeout", "MigrateNetworkConfiguration", "MigrateEncodingOptions"] Oct 05 23:55:45 corndog jellyfin[5458]: [23:55:45] [INF] Setting cache path: /var/cache/jellyfin Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Loading assemblies Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Defined LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"] Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Defined LAN exclusions: [] Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Used LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"] Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Filtered interface addresses: ["127.0.0.1", "192.168.2.60"] Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Bind Addresses ["0.0.0.0"] Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Remote IP filter is Allowlist Oct 05 23:55:46 corndog jellyfin[5458]: [23:55:46] [INF] Filtered subnets: [] Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: TMDb 10.10.7.0 Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: Studio Images 10.10.7.0 Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: OMDb 10.10.7.0 Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: MusicBrainz 10.10.7.0 Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Loaded plugin: AudioDB 10.10.7.0 Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Marking following migrations as applied because this is a fresh install: ["DisableTranscodingThrottling", "CreateLoggingConfigHeirarchy", "MigrateActivityLogDatabase", "RemoveDuplicateExtras", "MigrateUserDatabase", "MigrateDisplayPreferencesDatabase", "RemoveDownloadImagesInAdvance", "MigrateAuthenticationDatabase", "FixPlaylistOwner", "MigrateRatingLevels", "FixAudioData", "RemoveDuplicatePlaylistChildren"] Oct 05 23:55:48 corndog jellyfin[5458]: [23:55:48] [INF] Kestrel is listening on 0.0.0.0 Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [WRN] The WebRootPath was not found: /var/lib/jellyfin/wwwroot. Static files may be unavailable. Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Running startup tasks Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Daily trigger for Generate Trickplay Images set to fire at 2025-10-06 03:00:00.000 -04:00, which is 03:04:10.4743718 from now. Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Daily trigger for Extract Chapter Images set to fire at 2025-10-06 02:00:00.000 -04:00, which is 02:04:10.4668521 from now. Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Found ffmpeg version 7.1.2 Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Available decoders: ["libdav1d", "av1", "av1_cuvid", "av1_qsv", "h264", "h264_qsv", "h264_cuvid", "hevc", "hevc_qsv", "hevc_cuvid", "mpeg2video", "mpeg2_qsv", "mpeg2_cuvid", "mpeg4", "mpeg4_cuvid", "msmpeg4", "vc1_qsv", "vc1_cuvid", "vp8", "libvpx", "vp8_cuvid", "vp8_qsv", "vp9", "libvpx-vp9", "vp9_cuvid", "vp9_qsv", "aac", "ac3", "ac4", "dca", "flac", "mp3", "truehd"] Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Available encoders: ["libsvtav1", "av1_nvenc", "av1_qsv", "av1_amf", "av1_vaapi", "libx264", "h264_amf", "h264_nvenc", "h264_qsv", "h264_v4l2m2m", "h264_vaapi", "libx265", "hevc_amf", "hevc_nvenc", "hevc_qsv", "hevc_vaapi", "mjpeg_qsv", "mjpeg_vaapi", "aac", "libfdk_aac", "ac3", "alac", "dca", "flac", "libmp3lame", "libopus", "truehd", "libvorbis", "srt"] Oct 05 23:55:49 corndog jellyfin[5458]: [23:55:49] [INF] Available filters: ["bwdif_cuda", "deinterlace_qsv", "deinterlace_vaapi", "flip_vulkan", "hwupload_cuda", "hwupload_vaapi", "libplacebo", "overlay_opencl", "overlay_qsv", "overlay_vaapi", "overlay_vulkan", "overlay_cuda", "procamp_vaapi", "scale_cuda", "scale_opencl", "scale_qsv", "scale_vaapi", "scale_vulkan", "tonemapx", "tonemap_cuda", "tonemap_opencl", "tonemap_vaapi", "transpose_cuda", "transpose_opencl", "transpose_vaapi", "transpose_vulkan", "vpp_qsv", "yadif_cuda", "zscale", "alphasrc"] Oct 05 23:55:50 corndog jellyfin[5458]: [23:55:50] [INF] Available hwaccel types: ["cuda", "vaapi", "qsv", "drm", "opencl", "vulkan"] Oct 05 23:55:52 corndog jellyfin[5458]: [23:55:52] [INF] Clean Transcode Directory Completed after 0 minute(s) and 0 seconds Oct 05 23:55:52 corndog jellyfin[5458]: [23:55:52] [INF] Clean up collections and playlists Completed after 0 minute(s) and 0 seconds Oct 05 23:55:52 corndog jellyfin[5458]: [23:55:52] [INF] Update Plugins Completed after 0 minute(s) and 0 seconds Oct 05 23:55:55 corndog jellyfin[5458]: [23:55:55] [INF] FFmpeg: /usr/lib/jellyfin-ffmpeg/ffmpeg Oct 05 23:55:55 corndog jellyfin[5458]: [23:55:55] [INF] ServerId: f30fb941875e4626ad462a33999616b6 Oct 05 23:55:55 corndog jellyfin[5458]: [23:55:55] [INF] Core startup complete Oct 05 23:55:55 corndog jellyfin[5458]: [23:55:55] [INF] Startup complete 0:00:10.1201639 Oct 05 23:57:42 corndog jellyfin[5458]: [23:57:42] [INF] Saving system configuration Oct 05 23:57:42 corndog jellyfin[5458]: [23:57:42] [INF] Setting cache path: /var/cache/jellyfin Oct 05 23:57:42 corndog jellyfin[5458]: [23:57:42] [INF] Stopping NAT discovery Oct 05 23:57:42 corndog jellyfin[5458]: [23:57:42] [WRN] No users, creating one with username jellyfin ```
Author
Owner

@joshuaboniface commented on GitHub (Oct 8, 2025):

Thanks @evert that seems to rule out the potential manual dpkg issue. Can you also provide the /var/log/apt/ logs (history.log and term.log) for that same period? They may have rotated and be compressed (.X.gz extensions).

@joshuaboniface commented on GitHub (Oct 8, 2025): Thanks @evert that seems to rule out the potential manual `dpkg` issue. Can you also provide the `/var/log/apt/` logs (`history.log` and `term.log`) for that same period? They may have rotated and be compressed (`.X.gz` extensions).
Author
Owner

@evert commented on GitHub (Oct 9, 2025):

history.log:

Start-Date: 2025-10-05  23:44:11
Commandline: apt install --yes jellyfin
Requested-By: evert (1002)
Install: libxcb-present0:amd64 (1.17.0-2+b1, automatic), libwebpmux3:amd64 (1.5.0-0.1, automatic), libvpx9:amd64 (1.15.0-2.1, automatic), libsharpyuv0:amd64 (1.5.0-0.1, automatic), libzvbi-common:amd64 (0.2.44-1, automatic), libtheoraenc1:amd64 (1.2.0~alpha1+dfsg-6, automatic), libxrender1:amd64 (1:0.9.12-1, automatic), libx11-xcb1:amd64 (2:1.8.12-1, automatic), libxshmfence1:amd64 (1.3.3-1, automatic), libx264-164:amd64 (2:0.164.3108+git31e19f9-2+b1, automatic), libxcb-dri3-0:amd64 (1.17.0-2+b1, automatic), libx265-215:amd64 (4.1-2, automatic), libcairo2:amd64 (1.18.4-1+b1, automatic), libaacs0:amd64 (0.11.1-4+b1, automatic), libpciaccess0:amd64 (0.17-3+b3, automatic), libbluray2:amd64 (1:1.3.4-1+b2, automatic), libvorbisfile3:amd64 (1.3.7-3, automatic), jellyfin:amd64 (10.10.7+deb13), jellyfin-web:amd64 (10.10.7+deb13, automatic), libpixman-1-0:amd64 (0.44.0-3, automatic), libnuma1:amd64 (2.0.19-1, automatic), libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1, automatic), libfontconfig1:amd64 (2.15.0-2.3, automatic), fontconfig-config:amd64 (2.15.0-2.3, automatic), libmp3lame0:amd64 (3.100-6+b3, automatic), libudfread0:amd64 (1.1.2-1+b2, automatic), libopus0:amd64 (1.5.2-2, automatic), libxcb-render0:amd64 (1.17.0-2+b1, automatic), libzvbi0t64:amd64 (0.2.44-1, automatic), jellyfin-server:amd64 (10.10.7+deb13, automatic), libvorbisenc2:amd64 (1.3.7-3, automatic), libjemalloc2:amd64 (5.3.0-3, automatic), libwebp7:amd64 (1.5.0-0.1, automatic), fonts-dejavu-mono:amd64 (2.37-8, automatic), ocl-icd-libopencl1:amd64 (2.3.3-1, automatic), libbdplus0:amd64 (0.2.0-4+b1, automatic), libogg0:amd64 (1.3.5-3+b2, automatic), libvorbis0a:amd64 (1.3.7-3, automatic), jellyfin-ffmpeg7:amd64 (7.1.2-2-trixie, automatic), libxcb-randr0:amd64 (1.17.0-2+b1, automatic), fonts-dejavu-core:amd64 (2.37-8, automatic), libmpg123-0t64:amd64 (1.32.10-1, automatic), libtheoradec1:amd64 (1.2.0~alpha1+dfsg-6, automatic), libxcb-shm0:amd64 (1.17.0-2+b1, automatic), libopenmpt0t64:amd64 (0.7.13-1+b1, automatic), libxcb-sync1:amd64 (1.17.0-2+b1, automatic), libxcb-xfixes0:amd64 (1.17.0-2+b1, automatic)
End-Date: 2025-10-05  23:44:48

Start-Date: 2025-10-05  23:47:56
Commandline: apt install libicu76
Requested-By: evert (1002)
Install: libicu76:amd64 (76.1-4)
End-Date: 2025-10-05  23:47:57

term.log:

Log started: 2025-10-05  23:44:11
Selecting previously unselected package fonts-dejavu-mono.
(Reading database ... 38517 files and directories currently installed.)
Preparing to unpack .../00-fonts-dejavu-mono_2.37-8_all.deb ...
Unpacking fonts-dejavu-mono (2.37-8) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../01-fonts-dejavu-core_2.37-8_all.deb ...
Unpacking fonts-dejavu-core (2.37-8) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../02-fontconfig-config_2.15.0-2.3_amd64.deb ...
Unpacking fontconfig-config (2.15.0-2.3) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../03-libfontconfig1_2.15.0-2.3_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
Selecting previously unselected package libjemalloc2:amd64.
Preparing to unpack .../04-libjemalloc2_5.3.0-3_amd64.deb ...
Unpacking libjemalloc2:amd64 (5.3.0-3) ...
Selecting previously unselected package jellyfin-server.
Preparing to unpack .../05-jellyfin-server_10.10.7+deb13_amd64.deb ...
Unpacking jellyfin-server (10.10.7+deb13) ...
Selecting previously unselected package jellyfin-web.
Preparing to unpack .../06-jellyfin-web_10.10.7+deb13_all.deb ...
Unpacking jellyfin-web (10.10.7+deb13) ...
Selecting previously unselected package libudfread0:amd64.
Preparing to unpack .../07-libudfread0_1.1.2-1+b2_amd64.deb ...
Unpacking libudfread0:amd64 (1.1.2-1+b2) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../08-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u1_amd64.deb ...
Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
Selecting previously unselected package libbluray2:amd64.
Preparing to unpack .../09-libbluray2_1%3a1.3.4-1+b2_amd64.deb ...
Unpacking libbluray2:amd64 (1:1.3.4-1+b2) ...
Selecting previously unselected package libmp3lame0:amd64.
Preparing to unpack .../10-libmp3lame0_3.100-6+b3_amd64.deb ...
Unpacking libmp3lame0:amd64 (3.100-6+b3) ...
Selecting previously unselected package libmpg123-0t64:amd64.
Preparing to unpack .../11-libmpg123-0t64_1.32.10-1_amd64.deb ...
Unpacking libmpg123-0t64:amd64 (1.32.10-1) ...
Selecting previously unselected package libogg0:amd64.
Preparing to unpack .../12-libogg0_1.3.5-3+b2_amd64.deb ...
Unpacking libogg0:amd64 (1.3.5-3+b2) ...
Selecting previously unselected package libvorbis0a:amd64.
Preparing to unpack .../13-libvorbis0a_1.3.7-3_amd64.deb ...
Unpacking libvorbis0a:amd64 (1.3.7-3) ...
Selecting previously unselected package libvorbisfile3:amd64.
Preparing to unpack .../14-libvorbisfile3_1.3.7-3_amd64.deb ...
Unpacking libvorbisfile3:amd64 (1.3.7-3) ...
Selecting previously unselected package libopenmpt0t64:amd64.
Preparing to unpack .../15-libopenmpt0t64_0.7.13-1+b1_amd64.deb ...
Unpacking libopenmpt0t64:amd64 (0.7.13-1+b1) ...
Selecting previously unselected package libopus0:amd64.
Preparing to unpack .../16-libopus0_1.5.2-2_amd64.deb ...
Unpacking libopus0:amd64 (1.5.2-2) ...
Selecting previously unselected package libpciaccess0:amd64.
Preparing to unpack .../17-libpciaccess0_0.17-3+b3_amd64.deb ...
Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
Selecting previously unselected package libpixman-1-0:amd64.
Preparing to unpack .../18-libpixman-1-0_0.44.0-3_amd64.deb ...
Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
Selecting previously unselected package libxcb-render0:amd64.
Preparing to unpack .../19-libxcb-render0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../20-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../21-libxrender1_1%3a0.9.12-1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.12-1) ...
Selecting previously unselected package libcairo2:amd64.
Preparing to unpack .../22-libcairo2_1.18.4-1+b1_amd64.deb ...
Unpacking libcairo2:amd64 (1.18.4-1+b1) ...
Selecting previously unselected package libtheoradec1:amd64.
Preparing to unpack .../23-libtheoradec1_1.2.0~alpha1+dfsg-6_amd64.deb ...
Unpacking libtheoradec1:amd64 (1.2.0~alpha1+dfsg-6) ...
Selecting previously unselected package libtheoraenc1:amd64.
Preparing to unpack .../24-libtheoraenc1_1.2.0~alpha1+dfsg-6_amd64.deb ...
Unpacking libtheoraenc1:amd64 (1.2.0~alpha1+dfsg-6) ...
Selecting previously unselected package libvorbisenc2:amd64.
Preparing to unpack .../25-libvorbisenc2_1.3.7-3_amd64.deb ...
Unpacking libvorbisenc2:amd64 (1.3.7-3) ...
Selecting previously unselected package libvpx9:amd64.
Preparing to unpack .../26-libvpx9_1.15.0-2.1_amd64.deb ...
Unpacking libvpx9:amd64 (1.15.0-2.1) ...
Selecting previously unselected package libsharpyuv0:amd64.
Preparing to unpack .../27-libsharpyuv0_1.5.0-0.1_amd64.deb ...
Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...
Selecting previously unselected package libwebp7:amd64.
Preparing to unpack .../28-libwebp7_1.5.0-0.1_amd64.deb ...
Unpacking libwebp7:amd64 (1.5.0-0.1) ...
Selecting previously unselected package libwebpmux3:amd64.
Preparing to unpack .../29-libwebpmux3_1.5.0-0.1_amd64.deb ...
Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...
Selecting previously unselected package libx11-xcb1:amd64.
Preparing to unpack .../30-libx11-xcb1_2%3a1.8.12-1_amd64.deb ...
Unpacking libx11-xcb1:amd64 (2:1.8.12-1) ...
Selecting previously unselected package libx264-164:amd64.
Preparing to unpack .../31-libx264-164_2%3a0.164.3108+git31e19f9-2+b1_amd64.deb ...
Unpacking libx264-164:amd64 (2:0.164.3108+git31e19f9-2+b1) ...
Selecting previously unselected package libnuma1:amd64.
Preparing to unpack .../32-libnuma1_2.0.19-1_amd64.deb ...
Unpacking libnuma1:amd64 (2.0.19-1) ...
Selecting previously unselected package libx265-215:amd64.
Preparing to unpack .../33-libx265-215_4.1-2_amd64.deb ...
Unpacking libx265-215:amd64 (4.1-2) ...
Selecting previously unselected package libxcb-dri3-0:amd64.
Preparing to unpack .../34-libxcb-dri3-0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-present0:amd64.
Preparing to unpack .../35-libxcb-present0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-randr0:amd64.
Preparing to unpack .../36-libxcb-randr0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-randr0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-sync1:amd64.
Preparing to unpack .../37-libxcb-sync1_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-xfixes0:amd64.
Preparing to unpack .../38-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxshmfence1:amd64.
Preparing to unpack .../39-libxshmfence1_1.3.3-1_amd64.deb ...
Unpacking libxshmfence1:amd64 (1.3.3-1) ...
Selecting previously unselected package libzvbi-common.
Preparing to unpack .../40-libzvbi-common_0.2.44-1_all.deb ...
Unpacking libzvbi-common (0.2.44-1) ...
Selecting previously unselected package libzvbi0t64:amd64.
Preparing to unpack .../41-libzvbi0t64_0.2.44-1_amd64.deb ...
Unpacking libzvbi0t64:amd64 (0.2.44-1) ...
Selecting previously unselected package ocl-icd-libopencl1:amd64.
Preparing to unpack .../42-ocl-icd-libopencl1_2.3.3-1_amd64.deb ...
Unpacking ocl-icd-libopencl1:amd64 (2.3.3-1) ...
Selecting previously unselected package jellyfin-ffmpeg7.
Preparing to unpack .../43-jellyfin-ffmpeg7_7.1.2-2-trixie_amd64.deb ...
Unpacking jellyfin-ffmpeg7 (7.1.2-2-trixie) ...
Selecting previously unselected package jellyfin.
Preparing to unpack .../44-jellyfin_10.10.7+deb13_all.deb ...
Unpacking jellyfin (10.10.7+deb13) ...
Selecting previously unselected package libaacs0:amd64.
Preparing to unpack .../45-libaacs0_0.11.1-4+b1_amd64.deb ...
Unpacking libaacs0:amd64 (0.11.1-4+b1) ...
Selecting previously unselected package libbdplus0:amd64.
Preparing to unpack .../46-libbdplus0_0.2.0-4+b1_amd64.deb ...
Unpacking libbdplus0:amd64 (0.2.0-4+b1) ...
Setting up libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
Setting up libpixman-1-0:amd64 (0.44.0-3) ...
Setting up libudfread0:amd64 (1.1.2-1+b2) ...
Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
Setting up libx11-xcb1:amd64 (2:1.8.12-1) ...
Setting up libpciaccess0:amd64 (0.17-3+b3) ...
Setting up jellyfin-web (10.10.7+deb13) ...
Setting up libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
Setting up libogg0:amd64 (1.3.5-3+b2) ...
Setting up libx264-164:amd64 (2:0.164.3108+git31e19f9-2+b1) ...
Setting up libxrender1:amd64 (1:0.9.12-1) ...
Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...
Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
Setting up libjemalloc2:amd64 (5.3.0-3) ...
Setting up libmpg123-0t64:amd64 (1.32.10-1) ...
Setting up libxcb-present0:amd64 (1.17.0-2+b1) ...
Setting up libtheoraenc1:amd64 (1.2.0~alpha1+dfsg-6) ...
Setting up libxcb-sync1:amd64 (1.17.0-2+b1) ...
Setting up libopus0:amd64 (1.5.2-2) ...
Setting up fonts-dejavu-mono (2.37-8) ...
Setting up libvorbis0a:amd64 (1.3.7-3) ...
Setting up fonts-dejavu-core (2.37-8) ...
Setting up libaacs0:amd64 (0.11.1-4+b1) ...
Setting up libwebp7:amd64 (1.5.0-0.1) ...
Setting up libbdplus0:amd64 (0.2.0-4+b1) ...
Setting up libnuma1:amd64 (2.0.19-1) ...
Setting up libvpx9:amd64 (1.15.0-2.1) ...
Setting up ocl-icd-libopencl1:amd64 (2.3.3-1) ...
Setting up libxshmfence1:amd64 (1.3.3-1) ...
Setting up libxcb-randr0:amd64 (1.17.0-2+b1) ...
Setting up libx265-215:amd64 (4.1-2) ...
Setting up libwebpmux3:amd64 (1.5.0-0.1) ...
Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
Setting up libzvbi-common (0.2.44-1) ...
Setting up libmp3lame0:amd64 (3.100-6+b3) ...
Setting up libvorbisenc2:amd64 (1.3.7-3) ...
Setting up libzvbi0t64:amd64 (0.2.44-1) ...
Setting up fontconfig-config (2.15.0-2.3) ...
Setting up libvorbisfile3:amd64 (1.3.7-3) ...
Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
Setting up libbluray2:amd64 (1:1.3.4-1+b2) ...
Setting up libopenmpt0t64:amd64 (0.7.13-1+b1) ...
Setting up libcairo2:amd64 (1.18.4-1+b1) ...
Setting up jellyfin-server (10.10.7+deb13) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/jellyfin.service' → '/usr/lib/systemd/system/jellyfin.service'.
Setting up libtheoradec1:amd64 (1.2.0~alpha1+dfsg-6) ...
Setting up jellyfin-ffmpeg7 (7.1.2-2-trixie) ...
Setting up jellyfin (10.10.7+deb13) ...
Processing triggers for libc-bin (2.41-12) ...
Log ended: 2025-10-05  23:44:48

Log started: 2025-10-05  23:47:56
Selecting previously unselected package libicu76:amd64.
(Reading database ... 41902 files and directories currently installed.)
Preparing to unpack .../libicu76_76.1-4_amd64.deb ...
Unpacking libicu76:amd64 (76.1-4) ...
qSetting up libicu76:amd64 (76.1-4) ...
Processing triggers for libc-bin (2.41-12) ...
Log ended: 2025-10-05  23:47:57

Also nice to know these exist! TIL

@evert commented on GitHub (Oct 9, 2025): history.log: ``` Start-Date: 2025-10-05 23:44:11 Commandline: apt install --yes jellyfin Requested-By: evert (1002) Install: libxcb-present0:amd64 (1.17.0-2+b1, automatic), libwebpmux3:amd64 (1.5.0-0.1, automatic), libvpx9:amd64 (1.15.0-2.1, automatic), libsharpyuv0:amd64 (1.5.0-0.1, automatic), libzvbi-common:amd64 (0.2.44-1, automatic), libtheoraenc1:amd64 (1.2.0~alpha1+dfsg-6, automatic), libxrender1:amd64 (1:0.9.12-1, automatic), libx11-xcb1:amd64 (2:1.8.12-1, automatic), libxshmfence1:amd64 (1.3.3-1, automatic), libx264-164:amd64 (2:0.164.3108+git31e19f9-2+b1, automatic), libxcb-dri3-0:amd64 (1.17.0-2+b1, automatic), libx265-215:amd64 (4.1-2, automatic), libcairo2:amd64 (1.18.4-1+b1, automatic), libaacs0:amd64 (0.11.1-4+b1, automatic), libpciaccess0:amd64 (0.17-3+b3, automatic), libbluray2:amd64 (1:1.3.4-1+b2, automatic), libvorbisfile3:amd64 (1.3.7-3, automatic), jellyfin:amd64 (10.10.7+deb13), jellyfin-web:amd64 (10.10.7+deb13, automatic), libpixman-1-0:amd64 (0.44.0-3, automatic), libnuma1:amd64 (2.0.19-1, automatic), libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1, automatic), libfontconfig1:amd64 (2.15.0-2.3, automatic), fontconfig-config:amd64 (2.15.0-2.3, automatic), libmp3lame0:amd64 (3.100-6+b3, automatic), libudfread0:amd64 (1.1.2-1+b2, automatic), libopus0:amd64 (1.5.2-2, automatic), libxcb-render0:amd64 (1.17.0-2+b1, automatic), libzvbi0t64:amd64 (0.2.44-1, automatic), jellyfin-server:amd64 (10.10.7+deb13, automatic), libvorbisenc2:amd64 (1.3.7-3, automatic), libjemalloc2:amd64 (5.3.0-3, automatic), libwebp7:amd64 (1.5.0-0.1, automatic), fonts-dejavu-mono:amd64 (2.37-8, automatic), ocl-icd-libopencl1:amd64 (2.3.3-1, automatic), libbdplus0:amd64 (0.2.0-4+b1, automatic), libogg0:amd64 (1.3.5-3+b2, automatic), libvorbis0a:amd64 (1.3.7-3, automatic), jellyfin-ffmpeg7:amd64 (7.1.2-2-trixie, automatic), libxcb-randr0:amd64 (1.17.0-2+b1, automatic), fonts-dejavu-core:amd64 (2.37-8, automatic), libmpg123-0t64:amd64 (1.32.10-1, automatic), libtheoradec1:amd64 (1.2.0~alpha1+dfsg-6, automatic), libxcb-shm0:amd64 (1.17.0-2+b1, automatic), libopenmpt0t64:amd64 (0.7.13-1+b1, automatic), libxcb-sync1:amd64 (1.17.0-2+b1, automatic), libxcb-xfixes0:amd64 (1.17.0-2+b1, automatic) End-Date: 2025-10-05 23:44:48 Start-Date: 2025-10-05 23:47:56 Commandline: apt install libicu76 Requested-By: evert (1002) Install: libicu76:amd64 (76.1-4) End-Date: 2025-10-05 23:47:57 ``` term.log: ``` Log started: 2025-10-05 23:44:11 Selecting previously unselected package fonts-dejavu-mono. (Reading database ... 38517 files and directories currently installed.) Preparing to unpack .../00-fonts-dejavu-mono_2.37-8_all.deb ... Unpacking fonts-dejavu-mono (2.37-8) ... Selecting previously unselected package fonts-dejavu-core. Preparing to unpack .../01-fonts-dejavu-core_2.37-8_all.deb ... Unpacking fonts-dejavu-core (2.37-8) ... Selecting previously unselected package fontconfig-config. Preparing to unpack .../02-fontconfig-config_2.15.0-2.3_amd64.deb ... Unpacking fontconfig-config (2.15.0-2.3) ... Selecting previously unselected package libfontconfig1:amd64. Preparing to unpack .../03-libfontconfig1_2.15.0-2.3_amd64.deb ... Unpacking libfontconfig1:amd64 (2.15.0-2.3) ... Selecting previously unselected package libjemalloc2:amd64. Preparing to unpack .../04-libjemalloc2_5.3.0-3_amd64.deb ... Unpacking libjemalloc2:amd64 (5.3.0-3) ... Selecting previously unselected package jellyfin-server. Preparing to unpack .../05-jellyfin-server_10.10.7+deb13_amd64.deb ... Unpacking jellyfin-server (10.10.7+deb13) ... Selecting previously unselected package jellyfin-web. Preparing to unpack .../06-jellyfin-web_10.10.7+deb13_all.deb ... Unpacking jellyfin-web (10.10.7+deb13) ... Selecting previously unselected package libudfread0:amd64. Preparing to unpack .../07-libudfread0_1.1.2-1+b2_amd64.deb ... Unpacking libudfread0:amd64 (1.1.2-1+b2) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../08-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u1_amd64.deb ... Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ... Selecting previously unselected package libbluray2:amd64. Preparing to unpack .../09-libbluray2_1%3a1.3.4-1+b2_amd64.deb ... Unpacking libbluray2:amd64 (1:1.3.4-1+b2) ... Selecting previously unselected package libmp3lame0:amd64. Preparing to unpack .../10-libmp3lame0_3.100-6+b3_amd64.deb ... Unpacking libmp3lame0:amd64 (3.100-6+b3) ... Selecting previously unselected package libmpg123-0t64:amd64. Preparing to unpack .../11-libmpg123-0t64_1.32.10-1_amd64.deb ... Unpacking libmpg123-0t64:amd64 (1.32.10-1) ... Selecting previously unselected package libogg0:amd64. Preparing to unpack .../12-libogg0_1.3.5-3+b2_amd64.deb ... Unpacking libogg0:amd64 (1.3.5-3+b2) ... Selecting previously unselected package libvorbis0a:amd64. Preparing to unpack .../13-libvorbis0a_1.3.7-3_amd64.deb ... Unpacking libvorbis0a:amd64 (1.3.7-3) ... Selecting previously unselected package libvorbisfile3:amd64. Preparing to unpack .../14-libvorbisfile3_1.3.7-3_amd64.deb ... Unpacking libvorbisfile3:amd64 (1.3.7-3) ... Selecting previously unselected package libopenmpt0t64:amd64. Preparing to unpack .../15-libopenmpt0t64_0.7.13-1+b1_amd64.deb ... Unpacking libopenmpt0t64:amd64 (0.7.13-1+b1) ... Selecting previously unselected package libopus0:amd64. Preparing to unpack .../16-libopus0_1.5.2-2_amd64.deb ... Unpacking libopus0:amd64 (1.5.2-2) ... Selecting previously unselected package libpciaccess0:amd64. Preparing to unpack .../17-libpciaccess0_0.17-3+b3_amd64.deb ... Unpacking libpciaccess0:amd64 (0.17-3+b3) ... Selecting previously unselected package libpixman-1-0:amd64. Preparing to unpack .../18-libpixman-1-0_0.44.0-3_amd64.deb ... Unpacking libpixman-1-0:amd64 (0.44.0-3) ... Selecting previously unselected package libxcb-render0:amd64. Preparing to unpack .../19-libxcb-render0_1.17.0-2+b1_amd64.deb ... Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ... Selecting previously unselected package libxcb-shm0:amd64. Preparing to unpack .../20-libxcb-shm0_1.17.0-2+b1_amd64.deb ... Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ... Selecting previously unselected package libxrender1:amd64. Preparing to unpack .../21-libxrender1_1%3a0.9.12-1_amd64.deb ... Unpacking libxrender1:amd64 (1:0.9.12-1) ... Selecting previously unselected package libcairo2:amd64. Preparing to unpack .../22-libcairo2_1.18.4-1+b1_amd64.deb ... Unpacking libcairo2:amd64 (1.18.4-1+b1) ... Selecting previously unselected package libtheoradec1:amd64. Preparing to unpack .../23-libtheoradec1_1.2.0~alpha1+dfsg-6_amd64.deb ... Unpacking libtheoradec1:amd64 (1.2.0~alpha1+dfsg-6) ... Selecting previously unselected package libtheoraenc1:amd64. Preparing to unpack .../24-libtheoraenc1_1.2.0~alpha1+dfsg-6_amd64.deb ... Unpacking libtheoraenc1:amd64 (1.2.0~alpha1+dfsg-6) ... Selecting previously unselected package libvorbisenc2:amd64. Preparing to unpack .../25-libvorbisenc2_1.3.7-3_amd64.deb ... Unpacking libvorbisenc2:amd64 (1.3.7-3) ... Selecting previously unselected package libvpx9:amd64. Preparing to unpack .../26-libvpx9_1.15.0-2.1_amd64.deb ... Unpacking libvpx9:amd64 (1.15.0-2.1) ... Selecting previously unselected package libsharpyuv0:amd64. Preparing to unpack .../27-libsharpyuv0_1.5.0-0.1_amd64.deb ... Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ... Selecting previously unselected package libwebp7:amd64. Preparing to unpack .../28-libwebp7_1.5.0-0.1_amd64.deb ... Unpacking libwebp7:amd64 (1.5.0-0.1) ... Selecting previously unselected package libwebpmux3:amd64. Preparing to unpack .../29-libwebpmux3_1.5.0-0.1_amd64.deb ... Unpacking libwebpmux3:amd64 (1.5.0-0.1) ... Selecting previously unselected package libx11-xcb1:amd64. Preparing to unpack .../30-libx11-xcb1_2%3a1.8.12-1_amd64.deb ... Unpacking libx11-xcb1:amd64 (2:1.8.12-1) ... Selecting previously unselected package libx264-164:amd64. Preparing to unpack .../31-libx264-164_2%3a0.164.3108+git31e19f9-2+b1_amd64.deb ... Unpacking libx264-164:amd64 (2:0.164.3108+git31e19f9-2+b1) ... Selecting previously unselected package libnuma1:amd64. Preparing to unpack .../32-libnuma1_2.0.19-1_amd64.deb ... Unpacking libnuma1:amd64 (2.0.19-1) ... Selecting previously unselected package libx265-215:amd64. Preparing to unpack .../33-libx265-215_4.1-2_amd64.deb ... Unpacking libx265-215:amd64 (4.1-2) ... Selecting previously unselected package libxcb-dri3-0:amd64. Preparing to unpack .../34-libxcb-dri3-0_1.17.0-2+b1_amd64.deb ... Unpacking libxcb-dri3-0:amd64 (1.17.0-2+b1) ... Selecting previously unselected package libxcb-present0:amd64. Preparing to unpack .../35-libxcb-present0_1.17.0-2+b1_amd64.deb ... Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ... Selecting previously unselected package libxcb-randr0:amd64. Preparing to unpack .../36-libxcb-randr0_1.17.0-2+b1_amd64.deb ... Unpacking libxcb-randr0:amd64 (1.17.0-2+b1) ... Selecting previously unselected package libxcb-sync1:amd64. Preparing to unpack .../37-libxcb-sync1_1.17.0-2+b1_amd64.deb ... Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ... Selecting previously unselected package libxcb-xfixes0:amd64. Preparing to unpack .../38-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ... Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ... Selecting previously unselected package libxshmfence1:amd64. Preparing to unpack .../39-libxshmfence1_1.3.3-1_amd64.deb ... Unpacking libxshmfence1:amd64 (1.3.3-1) ... Selecting previously unselected package libzvbi-common. Preparing to unpack .../40-libzvbi-common_0.2.44-1_all.deb ... Unpacking libzvbi-common (0.2.44-1) ... Selecting previously unselected package libzvbi0t64:amd64. Preparing to unpack .../41-libzvbi0t64_0.2.44-1_amd64.deb ... Unpacking libzvbi0t64:amd64 (0.2.44-1) ... Selecting previously unselected package ocl-icd-libopencl1:amd64. Preparing to unpack .../42-ocl-icd-libopencl1_2.3.3-1_amd64.deb ... Unpacking ocl-icd-libopencl1:amd64 (2.3.3-1) ... Selecting previously unselected package jellyfin-ffmpeg7. Preparing to unpack .../43-jellyfin-ffmpeg7_7.1.2-2-trixie_amd64.deb ... Unpacking jellyfin-ffmpeg7 (7.1.2-2-trixie) ... Selecting previously unselected package jellyfin. Preparing to unpack .../44-jellyfin_10.10.7+deb13_all.deb ... Unpacking jellyfin (10.10.7+deb13) ... Selecting previously unselected package libaacs0:amd64. Preparing to unpack .../45-libaacs0_0.11.1-4+b1_amd64.deb ... Unpacking libaacs0:amd64 (0.11.1-4+b1) ... Selecting previously unselected package libbdplus0:amd64. Preparing to unpack .../46-libbdplus0_0.2.0-4+b1_amd64.deb ... Unpacking libbdplus0:amd64 (0.2.0-4+b1) ... Setting up libxcb-dri3-0:amd64 (1.17.0-2+b1) ... Setting up libpixman-1-0:amd64 (0.44.0-3) ... Setting up libudfread0:amd64 (1.1.2-1+b2) ... Setting up libsharpyuv0:amd64 (1.5.0-0.1) ... Setting up libx11-xcb1:amd64 (2:1.8.12-1) ... Setting up libpciaccess0:amd64 (0.17-3+b3) ... Setting up jellyfin-web (10.10.7+deb13) ... Setting up libxcb-xfixes0:amd64 (1.17.0-2+b1) ... Setting up libogg0:amd64 (1.3.5-3+b2) ... Setting up libx264-164:amd64 (2:0.164.3108+git31e19f9-2+b1) ... Setting up libxrender1:amd64 (1:0.9.12-1) ... Setting up libxcb-render0:amd64 (1.17.0-2+b1) ... Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ... Setting up libjemalloc2:amd64 (5.3.0-3) ... Setting up libmpg123-0t64:amd64 (1.32.10-1) ... Setting up libxcb-present0:amd64 (1.17.0-2+b1) ... Setting up libtheoraenc1:amd64 (1.2.0~alpha1+dfsg-6) ... Setting up libxcb-sync1:amd64 (1.17.0-2+b1) ... Setting up libopus0:amd64 (1.5.2-2) ... Setting up fonts-dejavu-mono (2.37-8) ... Setting up libvorbis0a:amd64 (1.3.7-3) ... Setting up fonts-dejavu-core (2.37-8) ... Setting up libaacs0:amd64 (0.11.1-4+b1) ... Setting up libwebp7:amd64 (1.5.0-0.1) ... Setting up libbdplus0:amd64 (0.2.0-4+b1) ... Setting up libnuma1:amd64 (2.0.19-1) ... Setting up libvpx9:amd64 (1.15.0-2.1) ... Setting up ocl-icd-libopencl1:amd64 (2.3.3-1) ... Setting up libxshmfence1:amd64 (1.3.3-1) ... Setting up libxcb-randr0:amd64 (1.17.0-2+b1) ... Setting up libx265-215:amd64 (4.1-2) ... Setting up libwebpmux3:amd64 (1.5.0-0.1) ... Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ... Setting up libzvbi-common (0.2.44-1) ... Setting up libmp3lame0:amd64 (3.100-6+b3) ... Setting up libvorbisenc2:amd64 (1.3.7-3) ... Setting up libzvbi0t64:amd64 (0.2.44-1) ... Setting up fontconfig-config (2.15.0-2.3) ... Setting up libvorbisfile3:amd64 (1.3.7-3) ... Setting up libfontconfig1:amd64 (2.15.0-2.3) ... Setting up libbluray2:amd64 (1:1.3.4-1+b2) ... Setting up libopenmpt0t64:amd64 (0.7.13-1+b1) ... Setting up libcairo2:amd64 (1.18.4-1+b1) ... Setting up jellyfin-server (10.10.7+deb13) ... Created symlink '/etc/systemd/system/multi-user.target.wants/jellyfin.service' → '/usr/lib/systemd/system/jellyfin.service'. Setting up libtheoradec1:amd64 (1.2.0~alpha1+dfsg-6) ... Setting up jellyfin-ffmpeg7 (7.1.2-2-trixie) ... Setting up jellyfin (10.10.7+deb13) ... Processing triggers for libc-bin (2.41-12) ... Log ended: 2025-10-05 23:44:48 Log started: 2025-10-05 23:47:56 Selecting previously unselected package libicu76:amd64. (Reading database ... 41902 files and directories currently installed.) Preparing to unpack .../libicu76_76.1-4_amd64.deb ... Unpacking libicu76:amd64 (76.1-4) ... qSetting up libicu76:amd64 (76.1-4) ... Processing triggers for libc-bin (2.41-12) ... Log ended: 2025-10-05 23:47:57 ``` Also nice to know these exist! TIL
Author
Owner

@joshuaboniface commented on GitHub (Oct 9, 2025):

Huh well the plot definitely thickens there. It definitely installed libjemalloc2, and configured it before jellyfin-server as expected. I'm curious what's your output of:

ldconfig -p | grep libjemalloc
@joshuaboniface commented on GitHub (Oct 9, 2025): Huh well the plot definitely thickens there. It definitely installed `libjemalloc2`, and configured it before `jellyfin-server` as expected. I'm curious what's your output of: ``` ldconfig -p | grep libjemalloc ```
Author
Owner

@evert commented on GitHub (Oct 9, 2025):

There ya go:

libjemalloc.so.2 (libc6,x86-64) => /lib/x86_64-linux-gnu/libjemalloc.so.2

And yeah this Debian is almost as stock as it gets. Fresh install from debian 13. Minimal OS

@evert commented on GitHub (Oct 9, 2025): There ya go: ``` libjemalloc.so.2 (libc6,x86-64) => /lib/x86_64-linux-gnu/libjemalloc.so.2 ``` And yeah this Debian is almost as stock as it gets. Fresh install from debian 13. Minimal OS
Author
Owner

@MichaIng commented on GitHub (Oct 20, 2025):

If it is a dependency for the DEB package anyway, why not link it properly in the binary instead of preloading it? It could then find the library on the default path.

This symlink generation in postinst does not work reliably, the condition in postinst failed on a test install of the jellyfin package on Debian, even that the libjemalloc2 package was installed and unpacked as dependency already. Maybe some ldconfig call is needed before ldconfig -p, to assure the cache is updated in case of a freshly installed library.

@MichaIng commented on GitHub (Oct 20, 2025): If it is a dependency for the DEB package anyway, why not link it properly in the binary instead of preloading it? It could then find the library on the default path. This symlink generation in postinst does not work reliably, the condition in postinst failed on a test install of the `jellyfin` package on Debian, even that the `libjemalloc2` package was installed and unpacked as dependency already. Maybe some `ldconfig` call is needed before `ldconfig -p`, to assure the cache is updated in case of a freshly installed library.
Author
Owner

@RichardPointon commented on GitHub (Oct 21, 2025):

I've just upgraded to 10.11 and seen the same issue. Addling the missing symlink was all that was required to fix the issue. Im running ubuntu 24.04.3 LTS server

@RichardPointon commented on GitHub (Oct 21, 2025): I've just upgraded to 10.11 and seen the same issue. Addling the missing symlink was all that was required to fix the issue. Im running ubuntu 24.04.3 LTS server
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#7290