Jellyfin Forum
Issues Installing - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: Issues Installing (/t-issues-installing--8425)

Pages: 1 2 3 4 5


RE: Issues Installing - Timer - 2024-10-15

I just typed apt-get install Jellyfin
https://pastebin.com/g1BG0DBt


RE: Issues Installing - TheDreadPirate - 2024-10-15

So you did have a generic jellyfin instance.

Is that running right now?

Code:
sudo ps -aux | grep -i jellyfin
sudo ss -tulpn | grep 8096



RE: Issues Installing - Timer - 2024-10-15

No its not running. Or if you mean if i have that installed right now yes i have

https://pastebin.com/74muJQMz


RE: Issues Installing - TheDreadPirate - 2024-10-15

Can you run that apt purge command, but don't run it from your home directory. I'm wondering if it isn't parsing the command properly because you are in your home directory where jellyfin.sh is present.


RE: Issues Installing - Timer - 2024-10-15

have i done it correct?

kelvin@mikaserver:~$ cd /etc/
kelvin@mikaserverConfused-faceetc$ sudo purge jellyfin
sudo: purge: command not found
kelvin@mikaserverConfused-faceetc$ sudo apt purge jellyfin
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
alsa-topology-conf alsa-ucm-conf ffmpeg i965-va-driver intel-media-va-driver jellyfin-ffmpeg6 jellyfin-server
jellyfin-web libaacs0 libasound2-data libasound2t64 libass9 libasyncns0 libavc1394-0 libavcodec60 libavdevice60
libavfilter9 libavformat60 libavutil58 libbdplus0 libblas3 libbluray2 libbs2b0 libcaca0 libcdio-cdda2t64
libcdio-paranoia2t64 libcdio19t64 libchromaprint1 libcjson1 libcodec2-1.2 libdav1d7 libdc1394-25 libdecor-0-0
libdecor-0-plugin-1-gtk libfftw3-double3 libflac12t64 libflite1 libgfortran5 libgme0 libgomp1 libgsm1 libhwy1t64
libiec61883-0 libigdgmm12 libjack-jackd2-0 libjxl0.7 liblapack3 liblilv-0-0 libmbedcrypto7t64 libmp3lame0
libmpg123-0t64 libmysofa1 libnorm1t64 libogg0 libopenal-data libopenal1 libopenjp2-7 libopenmpt0t64 libopus0
libpgm-5.3-0t64 libplacebo338 libpocketsphinx3 libpostproc57 libpulse0 librabbitmq4 librav1e0 libraw1394-11 librist4
librubberband2 libsamplerate0 libsdl2-2.0-0 libserd-0-0 libshine3 libsnappy1v5 libsndfile1 libsndio7.0 libsord-0-0
libsoxr0 libspeex1 libsphinxbase3t64 libsratom-0-0 libsrt1.5-gnutls libssh-gcrypt-4 libsvtav1enc1d1 libswresample4
libswscale7 libtheora0 libtwolame0 libudfread0 libunibreak5 libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1
libvorbis0a libvorbisenc2 libvorbisfile3 libvpl2 libvpx9 libwebpmux3 libx264-164 libx265-199 libxss1 libxvidcore4
libzimg2 libzix-0-0 libzmq5 libzvbi-common libzvbi0t64 mesa-va-drivers mesa-vdpau-drivers ocl-icd-libopencl1
pocketsphinx-en-us va-driver-all vdpau-driver-all
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
jellyfin*
0 upgraded, 0 newly installed, 1 to remove and 12 not upgraded.
2 not fully installed or removed.
After this operation, 9,216 B disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 103874 files and directories currently installed.)
Removing jellyfin (10.9.11+ubu2404) ...
Setting up jellyfin-server (10.9.11+ubu2404) ...
mkdir: cannot create directory ‘/var/lib/jellyfin’: File exists
dpkg: error processing package jellyfin-server (--configure):
installed jellyfin-server package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
jellyfin-server
needrestart is being skipped since dpkg has failed
E: Sub-process /usr/bin/dpkg returned an error code (1)


RE: Issues Installing - TheDreadPirate - 2024-10-15

Something is still broke, but progress.

Code:
sudo dpkg -P jellyfin-server
sudo apt list --installed | grep jellyfin



RE: Issues Installing - Timer - 2024-10-15

kelvin@mikaserver:~$ sudo dpkg -P jellyfin-server
(Reading database ... 103871 files and directories currently installed.)
Removing jellyfin-server (10.9.11+ubu2404) ...
Stopping Jellyfin!
Warning: The unit file, source configuration file or drop-ins of jellyfin.service changed on disk. Run 'systemctl daemon-reload' to reload units.
Purging configuration files for jellyfin-server (10.9.11+ubu2404) ...
dpkg: warning: while removing jellyfin-server, directory '/usr/lib/jellyfin/bin' not empty so not removed
dpkg: warning: while removing jellyfin-server, directory '/etc/systemd/system/jellyfin.service.d' not empty so not removed
Processing triggers for libc-bin (2.39-0ubuntu8.3) ...
kelvin@mikaserver:~$ sudo apt list --installed | grep jellyfin

WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

jellyfin-ffmpeg6/unknown,now 6.0.1-8-noble amd64 [installed,auto-removable]
jellyfin-web/unknown,now 10.9.11+ubu2404 all [installed,auto-removable]


RE: Issues Installing - TheDreadPirate - 2024-10-15

More progress

Code:
sudo dpkg -P jellyfin-web
sudo dpkg -P jellyfin-ffmpeg6
sudo rm -rf /etc/jellyfin /var/lib/jellyfin /var/cache/jellyfin /usr/lib/jellyfin /usr/share/jellyfin /etc/systemd/system/jellyfin.service.d
sudo rm -f /etc/default/jellyfin
curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash



RE: Issues Installing - Timer - 2024-10-15

Thats great to hear!

https://pastebin.com/HALyT24B


RE: Issues Installing - TheDreadPirate - 2024-10-15

Can you reboot and then "sudo systemctl status jellyfin"?