Skip to content

/dev/dvb has incorrect permissions #44

@cgrossde

Description

@cgrossde

/dev/dvb is owned by root and can't be read by tvheadend which resulted in tvheadend not finding my DVB-C card. Changing permissions of /dev/dvb fixed that for me.

docker create \
  --name=tvheadend \
  --net=bridge \
  -v /xxx/config:/config \
  -v /xxx/recordings:/recordings \
  -e PGID=1010 -e PUID=1010  \
  -p 9981:9981 \
  -p 9982:9982 \
  --device=/dev/dvb \
  linuxserver/tvheadend

Fixed it by:

chown -R abc /dev/dvb
pkill tvheadend

Running docker 17.03.0-ce with zfs on Ubuntu 14.04.

Is that the way to go or did I miss something?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions