Advertisement
TimerPVP

Untitled

Oct 15th, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. kelvin@mikaserver:~$ sudo apt update
  2. [sudo] password for kelvin:
  3. Hit:1 http://de.archive.ubuntu.com/ubuntu noble InRelease
  4. Get:2 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
  5. Get:3 http://de.archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
  6. Get:4 http://de.archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
  7. Get:5 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [410 kB]
  8. Get:6 https://repo.jellyfin.org/ubuntu noble InRelease [6,660 B]
  9. Get:7 http://security.ubuntu.com/ubuntu noble-security/main Translation-en [90.4 kB]
  10. Get:8 http://security.ubuntu.com/ubuntu noble-security/main amd64 c-n-f Metadata [5,788 B]
  11. Get:9 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [553 kB]
  12. Get:10 http://security.ubuntu.com/ubuntu noble-security/universe Translation-en [147 kB]
  13. Get:11 http://security.ubuntu.com/ubuntu noble-security/universe amd64 c-n-f Metadata [13.5 kB]
  14. Get:12 http://de.archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [592 kB]
  15. Get:13 http://de.archive.ubuntu.com/ubuntu noble-updates/main Translation-en [144 kB]
  16. Get:14 http://de.archive.ubuntu.com/ubuntu noble-updates/main amd64 c-n-f Metadata [10.2 kB]
  17. Get:15 http://de.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [385 kB]
  18. Get:16 http://de.archive.ubuntu.com/ubuntu noble-updates/restricted Translation-en [74.4 kB]
  19. Get:17 http://de.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [697 kB]
  20. Get:18 http://de.archive.ubuntu.com/ubuntu noble-updates/universe Translation-en [206 kB]
  21. Get:19 http://de.archive.ubuntu.com/ubuntu noble-updates/universe amd64 c-n-f Metadata [19.6 kB]
  22. Get:20 http://de.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [14.8 kB]
  23. Get:21 http://de.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 c-n-f Metadata [552 B]
  24. Get:22 http://de.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [10.6 kB]
  25. Get:23 http://de.archive.ubuntu.com/ubuntu noble-backports/universe Translation-en [10.8 kB]
  26. Get:24 http://de.archive.ubuntu.com/ubuntu noble-backports/universe amd64 c-n-f Metadata [1,104 B]
  27. Fetched 3,772 kB in 2s (2,085 kB/s)
  28. Reading package lists... Done
  29. Building dependency tree... Done
  30. Reading state information... Done
  31. 12 packages can be upgraded. Run 'apt list --upgradable' to see them.
  32. kelvin@mikaserver:~$ ls -l /etc/apt/sources.list.d/
  33. total 12
  34. -rw-r--r-- 1 root root 144 Oct 12 19:12 jellyfin.sources
  35. -rw-r--r-- 1 root root 386 Oct 8 19:59 ubuntu.sources
  36. -rw-r--r-- 1 root root 2552 Aug 27 14:21 ubuntu.sources.curtin.orig
  37. kelvin@mikaserver:~$ cat /home/kelvin/jellyfin.sh
  38. #!/bin/bash
  39. JELLYFINDIR="/opt/jellyfin"
  40. FFMPEGDIR="/usr/share/jellyfin-ffmpeg"
  41.  
  42. $JELLYFINDIR/jellyfin/jellyfin \
  43. -d $JELLYFINDIR/data \
  44. -C $JELLYFINDIR/cache \
  45. -c $JELLYFINDIR/config \
  46. -l $JELLYFINDIR/log \
  47. --ffmpeg $FFMPEGDIR/ffmpeg
  48. kelvin@mikaserver:~$ sudo cat /etc/apt/sources.list.d/jellyfin.sources
  49. Types: deb
  50. URIs: https://repo.jellyfin.org/ubuntu
  51. Suites: noble
  52. Components: main
  53. Architectures: amd64
  54. Signed-By: /etc/apt/keyrings/jellyfin.gpg
  55. kelvin@mikaserver:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement