this post was submitted on 25 Aug 2025
15 points (100.0% liked)

Jellyfin: The Free Software Media System

7510 readers
2 users here now

Current stable release: 10.10.7

Community Standards

Website

Forum

GitHub

Documentation

Feature Requests

Matrix (General Information & Help)

Matrix (Announcements)

Matrix (General Development)

Matrix (Off-Topic) - Come get to know the team and blow off steam!

Matrix Space - List of all the available rooms on Matrix.

Discord - Bridged to our Matrix rooms

founded 5 years ago
MODERATORS
 

It is a synology NAS and all forum posts and tutorials say to install container managerand set up docker. Well tough luck because my model doesn't seem to be compatible with container manager.

Ok, I install the the server in a pc running linux mint, now when I try to create a library I can't point where the files are.

top 21 comments
sorted by: hot top controversial new old
[–] tvcvt@lemmy.ml 16 points 4 weeks ago (2 children)

It sounds like in your situation, you’d create a shared folder where your media lives (smb or nfs) on the Synology and mount that share to the machine running jellyfin. Then adding the folder as a library will be the same as choosing a local folder.

[–] beerclue@lemmy.world 3 points 4 weeks ago

This is what I do. Shared folder via NFS, mounted inside the VM (fstab), added to the volumes of the docker container in the compose file...

[–] quediuspayu@lemmy.dbzer0.com 3 points 4 weeks ago (2 children)

That was the idea but it comes to give it the path to the folder I don't know what path I have to give it, the one I have from the file manager (smb://nas/videos/) jellyfin says it is not a valid path.

My guess is that I need to give it the path to where it is mounted but I can't find it or even know if it is somewhere at all.

[–] tvcvt@lemmy.ml 2 points 4 weeks ago (1 children)

In the long run you’ll want to specify where it lives. Manually you could use the mount command, but really you want the share to mount every time you reboot the machine so it’s always available. If you’re after a GUI app to do that, check out smb4k. I think that has options to do automatic mounting to a directory of your choosing (the path would typically be something like /media/<your username>/<synology hostname>/<name of share>).

If you want to do this from the command line, look into autofs, which lets you define a configuration and automatically mount an SMB share whenever your system needs it.

[–] quediuspayu@lemmy.dbzer0.com 1 points 3 weeks ago* (last edited 3 weeks ago)

I agree, I will have to learn to do it. One headache now to avoid all future headaches.

I'll check them out, thanks.

[–] whyNotSquirrel@sh.itjust.works 2 points 4 weeks ago* (last edited 4 weeks ago) (2 children)

On jellyfin you have to give the local path on the server, where your SMB share is mounted

The smb path to mount from Synology is like:

smb://[NAS]/volume1/[name of your share]

if you have more than one volume you need to choose the good one

Edit: not sure if it was the question actually

[–] quediuspayu@lemmy.dbzer0.com 1 points 4 weeks ago

Oh!

Yes, I have two volumes but they never showed in the file manager, I'll try it right now.

[–] quediuspayu@lemmy.dbzer0.com 1 points 4 weeks ago

It didn't work. Is it possible that jellyfin just don't have access? if so, how do I grant it access?

[–] Zombie@feddit.uk 2 points 4 weeks ago (1 children)
[–] quediuspayu@lemmy.dbzer0.com 1 points 4 weeks ago (1 children)

It help to understand some things, I'm with the last poster:

And what do I do if I installed Jellyfin via Ubuntu software, it runs, but /etc/passwd shows no jellyfin user exists?

[–] pupbiru@aussie.zone 1 points 4 weeks ago (1 children)

you should be able to find the user jellyfin is running as with:

ps aux | grep jellyfin

the first column is the user name or ID

you’re looking for a line something like this


biru       13576  0.1  9.6 281378280 3170688 ?   Ssl  Jul09  85:05 /usr/bin/jellyfin --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg
[–] quediuspayu@lemmy.dbzer0.com 1 points 4 weeks ago (1 children)

Let's see, it returned three lines:

oriol       2759  0.0  0.0   3580  1280 ?        S    10:21   0:00 bwrap --args 38 -- jellyfin.sh
oriol       2768  0.1  1.9 275074792 323812 ?    Sl   10:21   0:09 jellyfin
oriol      11618  0.0  0.0  11804  2304 pts/0    S+   12:01   0:00 grep --color=auto jellyfin
[–] pupbiru@aussie.zone 1 points 4 weeks ago (1 children)

looks like jellyfin is running as the user “oriol”. does that sound right?

assuming you have your files mounted somewhere locally that jellyfin can access, their file permissions will need to allow access to that user

[–] quediuspayu@lemmy.dbzer0.com 1 points 3 weeks ago (1 children)

The thing is that I mount the files using the GUI and I have no idea where they are mounted.

[–] pupbiru@aussie.zone 1 points 3 weeks ago

if you want it to be permanent you’ll probably want to mount via /etc/fstab (this is the list of things that are mounted every boot, so it’ll persist after a reboot)

that said, i’d guess it’ll be in /mnt

[–] DarkDarkHouse@lemmy.sdf.org 1 points 3 weeks ago (1 children)

On my DS1522+ I have installed the Jellyfin app from the SynoCommunity repository. I used to have Jellyfin on a separate host, but using the app has been much less painful. Maybe that's an option for you?

[–] quediuspayu@lemmy.dbzer0.com 1 points 3 weeks ago (1 children)

That was my first idea, unfortunately the DS416 does not support the container manager that I read everywhere is necessary to install jellyfin.

[–] DarkDarkHouse@lemmy.sdf.org 1 points 3 weeks ago (1 children)

You might try it anyway; as far as I know Container Manager is not required for the Jellyfin app. I have several containers running, but not Jellyfin. Jellyfin is just a regular app installed through Package Center (after adding the SynoCommunity repository).

[–] quediuspayu@lemmy.dbzer0.com 1 points 2 weeks ago

I'll take a look when I get home tonight, thanks.

[–] nw8man@fosstodon.org 0 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

@quediuspayu from ubuntu i use the following command, mounts it as readonly so nothing on nas can be altered

sudo mount -t cifs -r -ro username=username,password=password,uid=root,gid=root //nasip/videos /mnt/videos

[–] quediuspayu@lemmy.dbzer0.com 1 points 3 weeks ago

From your command and the help of mount I manage to understand a few things:

cifs is the type of filesystem I've seen mentioned

-r is the read only part you mentioned, what's -ro for?

And I guess that I could change uid=root for my user name and gid=root for some of the groups I see under my user name.

Thanks

Ps: I just tried, I get a syntax error. I suspect it is because the password contains a parenthesis.