Skip to content

Instantly share code, notes, and snippets.

@denhamparry
Last active April 11, 2021 02:00
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save denhamparry/3e66641a674794e8badf7de222eb29fb to your computer and use it in GitHub Desktop.
Save denhamparry/3e66641a674794e8badf7de222eb29fb to your computer and use it in GitHub Desktop.
Hauppauge Digital TV Tuner for Xbox One - Ubuntu setup

Hauppauge Digital TV Tuner for Xbox One - Ubuntu setup

Install

Open Terminal in Ubuntu The easiest way to open terminal is to right click on desktop and select Open Terminal. You can also click Ctrl+Alt+T on your keyboard.

In Terminal, type the following or copy and paste the following lines, one by one, then click enter.

$sudo add-apt-repository ppa:b-rad/kernel+mediatree+hauppauge

After this first line, click enter when prompted to add this PPA.

$ sudo apt-get update
$ sudo apt-get install linux-image-mediatree
$ sudo apt-get install linux-headers-mediatree

Note: if you are using a Hauppauge DVB TV tuner in Europe or Australia/New Zealand, please also install the TV firmware:

$ sudo apt-get install linux-firmware-hauppauge

Rerference

http://www.hauppauge.com/pages/support/support_linux.html

Docker

version: '2'
services:
  plex:
    image: plexinc/pms-docker:plexpass
    container_name: plex
    hostname: plex-host
    restart: unless-stopped
    devices:
      - /dev/dvb:/dev/dvb
    expose:
      - 32400
    ports:
      - 32400:32400/tcp
      - 3005:3005/tcp
      - 8324:8324/tcp
      - 32469:32469/tcp
      - 1900:1900/udp
      - 32410:32410/udp
      - 32412:32412/udp
      - 32413:32413/udp
      - 32414:32414/udp
    volumes:
      - /home/path/config/plex:/config
      - /media/storage/videos/tv:/data/tv
      - /media/storage/videos/movies:/data/movies
    environment:
      - PLEX_UID=1000
      - PLEX_GID=1000
      - ADVERTISE_IP=http://192.168.1.10:32400/
      - ALLOWED_NETWORKS=192.168.1.0/24
      - TZ=EST

Reference

https://forums.plex.tv/t/getting-plex-pass-docker-and-live-tv-working-sharing-usb-devices/195392

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment