Plex in OMV Docker how to recognize tuner card

We pushed an update to the Plex image so it should handle the permissions automatically. When you get a chance, child you update it, and restart to test?

The --device=/dev/dvb option should always be in the docker run/create

I rebooted the PC Checked plex update and got the new container, The tuner cards were not recognized ran chmod and restarted the container to make it work. the folder /dev/dvb did not have all permissions granted by chmod -R 777 /dev/dvb.
Greg

The new image doesn’t make permissions wide open, it adds the container user to the video group which /dev/dvb should be owned by.
What do these commands show on the host?
ls -al /dev/dvb
and
id video

This the permission from the container
root@Plex:~# ls -al /dev/dvb
total 0
drwxr-xr-x 10 root root 200 Jul 12 13:53 .
drwxr-xr-x 19 root root 3640 Jul 12 13:54 …
drwxr-xr-x 2 root root 120 Jul 12 13:53 adapter0
drwxr-xr-x 2 root root 120 Jul 12 13:53 adapter1
drwxr-xr-x 2 root root 120 Jul 12 13:53 adapter2
drwxr-xr-x 2 root root 120 Jul 12 13:53 adapter3
drwxr-xr-x 2 root root 120 Jul 12 13:53 adapter4
drwxr-xr-x 2 root root 120 Jul 12 13:53 adapter5
drwxr-xr-x 2 root root 120 Jul 12 13:53 adapter6
drwxr-xr-x 2 root root 120 Jul 12 13:53 adapter7
root@Plex:~# id video
id: ‘video’: no such user
root@Plex:~#
This after I run chmod -R 777 /dev/dvb
root@Plex:~# chmod -R 777 /dev/dvb
root@Plex:~# ls -al /dev/dvb
total 0
drwxrwxrwx 10 root root 200 Jul 12 13:53 .
drwxr-xr-x 19 root root 3640 Jul 12 13:54 …
drwxrwxrwx 2 root root 120 Jul 12 13:53 adapter0
drwxrwxrwx 2 root root 120 Jul 12 13:53 adapter1
drwxrwxrwx 2 root root 120 Jul 12 13:53 adapter2
drwxrwxrwx 2 root root 120 Jul 12 13:53 adapter3
drwxrwxrwx 2 root root 120 Jul 12 13:53 adapter4
drwxrwxrwx 2 root root 120 Jul 12 13:53 adapter5
drwxrwxrwx 2 root root 120 Jul 12 13:53 adapter6
drwxrwxrwx 2 root root 120 Jul 12 13:53 adapter7
root@Plex:~# id video
id: ‘video’: no such user
Greg

Alright, that’s why.

Most linux distributions have those devices owned by the video group but I guess omv is an exception. You’ll have to fix the permissions manually every time you reboot. Omv might have a way to set start up scripts, you can contact them about it.

I have only one user User1 and I use the PUID and PGID. This user is in the video group.
I’m looking into the groups to see if there’s a problem.

the folder /etc/group has
video:x:44:User1,plex

I would like to thank everyone especially aptalca and saarg my plex server is working great. For those who want a headless sever, open media vault is debian with a webgui that simplifies all the task ssh, samba shares even NIC bonding and much more. Docker is run through the docker plugin. Trouble free hands off server!!