• Zitat von "BranMarkussen"

    Hi


    Is there anyone in here that can help me installing HD homerun on my OMV. ( http://www.silicondust.com/products/models/hdhr3-eu/ )
    I have been googling, and i came across this: http://sourceforge.net/apps/trac/dvbhdhomerun/wiki/Building
    Is that what i have to do, and then install tv-headend?
    Thanks for answer.


    Brian


    I haven't tried to install HDhomerun on OMV but i am using it on Ubuntu for my Mythtv backend server.
    Basically you need to install the Hdhomerun config util on some machine in your network. You can use your OMV for this.
    If you have a GUI on OMV you can install it by:

    Code
    apt-get install hohomerun-config-gui


    This version needs GTK and will install it if needed.


    If you run OMV headless you can install the CLi version:

    Code
    apt-get install hdhomerun-config


    My preferrence on a system as OMV.


    An alterntive is to run hdhomerun-config on another machine (Otherlinux or Win) as the configuration is done within the HDHR3EU it self.


    Run the config util. It will find your HDHR3EU by broadcasting. There you can set the input type and scan for MUX'es/channels etc.


    Remember to update to the lastest firmware from silicon dust since there have been issues with the firmware on some shipping units.

  • I've tried to install the drivers of the HdHomerun on OMV but something went wrong. I've made a walkthrough for me but I don't know how to implement the compiled drivers into the kernel. Because yes you have to compile a new kernel

  • Here my walkthrough :


    install dependences dvbhdhomerun

    Code
    apt-get install cvs build-essential cmake libhdhomerun-dev hdhomerun-config g++ libqt4-dev


    get the linux headers

    Code
    apt-get install linux-headers-$(uname -r)


    go to the directory where you store all your sources for me is /opt

    Code
    cd /opt/


    get the linux sources

    Code
    apt-get source linux-2.6


    Download the latest dvbhdhomerun

    Code
    wget http://downloads.sourceforge.net/project/dvbhdhomerun/dvbhdhomerun_0.0.15.tar.gz
    tar -xvf dvbhdhomerun_0.0.15.tar.gz
    rm -r dvbhdhomerun_0.0.15.tar.gz


    Edit the Makefile

    Code
    cd /opt/linux-2.6-2.6.32/
    nano Makefile


    and edit this ligne EXTRAVERSION = to EXTRAVERSION = -5-amd64
    to know your extra version just

    Code
    uname -r


    Then finish the preparing the source tree:

    Code
    cp /boot/config-2.6.32-5-amd64 .config
    make oldconfig
    cp /usr/src/linux-headers-2.6.32-5-amd64/Module.symvers .
    make prepare scripts


    Edit the dvbhdhomerun kernel makefile

    Code
    cd /opt/dvbhdhomerun-0.0.15/kernel/
    nano Makefile


    Edit this ligne

    Code
    KERNEL_DIR    := /opt/linux-2.6-2.6.32


    then make

    Code
    make
    make install


    after I try

    Code
    modprobe dvb_hdhomerun


    but I've got an error....

  • Thx i will try and look into to it, i dont know anything about linux, but i would like to have the tv-headend direct on my nas, sinse it is already running 24/7 :) (Dont think i can manage to compile a new kernel though, but will seach for answers)
    Thx for your replys.


    Brian

  • I built a doc so I can remember what I need to get new systems able to see the HDHR. See attached file.


    Its written for Ubuntu but I used it last night on the linuxmint 15 install on my OMV nas. LM15 is 'raring' so I needed to change that (instead of precise) on the repo connection.
    You will need to find the id's of your HDHR and insert them instead of mine!


    The above is for the low-level DVB drivers. I used http://www.silicondust.com/sup…dhomerun/downloads/linux/ for the GTK gui app. I will check out the other instructions in this thread that relate to that as well.


    Hope this doc helps.


    P.S. I wrote a script that takes the channel scan output and builds it into a VLC playlist so its EASY to watch tv. If anyone is interested in that then let me know.

  • Hi again.
    Sorry for wait, iam not so fast in Linux.
    I am trying to build a kernel using this: (Using Debian)
    http://sourceforge.net/apps/trac/dvbhdhomerun/wiki/Building


    When i write : apt-get source linux-2.6
    root@NAS:~# apt-get source linux-2.6
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    E: Unable to find a source package for linux-2.6


    So i can find linux-3.10.7 instead..


    But when i write: uname -r
    2.6.32-5-amd64 (how when i just installed 3.10.7)


    I change the EXTRAVISION in 3.10.7 to
    EXTRAVERSION = -5-amd64



    cp /boot/config-3.10.7-5-amd64 .config


    root@NAS:~/linux-3.10.7# cp /boot/config-3.10.7-5-amd64 .config
    cp: cannot stat ‘/boot/config-3.10.7-5-amd64’: No such file or directory


    Now iam lost, hope anyone can help me :)

  • There must be something wrong with your package sources. (just tested, "apt-get source linux-2.6" works fine for me)


    Please post the output of

    Code
    cat /etc/apt/sources.list


    And to be clear, which kernel do you have installed? 2.6, 3.2 or 3.10?


    Greetings
    David

    "Well... lately this forum has become support for everything except omv" [...] "And is like someone is banning Google from their browsers"


    Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.

    Upload Logfile via WebGUI/CLI
    #openmediavault on freenode IRC | German & English | GMT+1
    Absolutely no Support via PM!

  • i dont know how to se that, i just installed the omv :( just trying.. :)


    output:


  • What does


    Code
    uname -r


    really show?


    Your apt-sources are misconfigured. You are using the testint repository which would be "Jessie" right now.


    Open the source via the following command:


    Code
    nano /etc/apt/sources.list


    add "#" in front of the testing repository lines, remove "#" in front of the squeeze sources so it looks like that



    save via ctrl+o, exit via ctrl+x



    Then do

    Code
    apt-get update
    apt-get upgrade


    and you should be able to install your sources.


    Greetings
    David

    "Well... lately this forum has become support for everything except omv" [...] "And is like someone is banning Google from their browsers"


    Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.

    Upload Logfile via WebGUI/CLI
    #openmediavault on freenode IRC | German & English | GMT+1
    Absolutely no Support via PM!

  • Reading package lists... Done
    root@NAS:~# apt-get upgrade
    Reading package lists... Done
    E: The value 'testing' is invalid for APT::Default-Release as such a release is not available in the sou
    rces
    root@NAS:~#


    I have to change some where to squeeze somewhere..


    I had a little help following another gudie, they guide me to the testing mode

  • Can you send me that guide? I've never seen somebody change apt to testing mode other than to change the sources themselves.


    PS: You used apt-get update before upgrade?


    Greetings
    David

    "Well... lately this forum has become support for everything except omv" [...] "And is like someone is banning Google from their browsers"


    Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.

    Upload Logfile via WebGUI/CLI
    #openmediavault on freenode IRC | German & English | GMT+1
    Absolutely no Support via PM!

    • Offizieller Beitrag

    It is asking for a lot of trouble switching to testing. Those are unstable packages and it is on an old Squeeze base. Probably not going to end up good...

    omv 7.0.5-1 sandworm | 64 bit | 6.8 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.13 | compose 7.1.4 | k8s 7.1.0-3 | cputemp 7.0.1 | mergerfs 7.0.4


    omv-extras.org plugins source code and issue tracker - github - changelogs


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

  • it wasent in the guide, it was the guy helping me, that changed it somewhere, the guide told me to use some italian sources in test mode. (will see if i can find it again)


    Yes i did.


    root@NAS:~# apt-get update
    Ign file: InRelease
    Ign file: Release.gpg
    Ign file: Release
    Ign file: Translation-en_GB
    Ign file: Translation-en
    Hit http://shell.ninthgate.se squeeze InRelease
    Hit http://packages.openmediavault.org fedaykin InRelease
    Hit http://security.debian.org squeeze/updates InRelease
    Hit http://shell.ninthgate.se squeeze/main amd64 Packages
    Hit http://packages.openmediavault.org fedaykin/main amd64 Packages
    Hit http://security.debian.org squeeze/updates/main Sources
    Hit http://packages.omv-plugins.org fedaykin InRelease
    Hit http://security.debian.org squeeze/updates/contrib Sources
    Hit http://security.debian.org squeeze/updates/non-free Sources
    Hit http://security.debian.org squeeze/updates/main amd64 Packages
    Hit http://security.debian.org squeeze/updates/contrib amd64 Packages
    Ign http://shell.ninthgate.se squeeze/main Translation-en_GB
    Hit http://security.debian.org squeeze/updates/non-free amd64 Packages
    Hit http://packages.omv-plugins.org fedaykin/main amd64 Packages
    Ign http://packages.openmediavault.org fedaykin/main Translation-en_GB
    Ign http://shell.ninthgate.se squeeze/main Translation-en
    Ign http://packages.openmediavault.org fedaykin/main Translation-en
    Ign http://packages.omv-plugins.org fedaykin/main Translation-en_GB
    Ign http://security.debian.org squeeze/updates/contrib Translation-en_GB
    Ign http://security.debian.org squeeze/updates/contrib Translation-en
    Ign http://packages.omv-plugins.org fedaykin/main Translation-en
    Ign http://security.debian.org squeeze/updates/main Translation-en_GB
    Ign http://security.debian.org squeeze/updates/main Translation-en
    Ign http://security.debian.org squeeze/updates/non-free Translation-en_GB
    Ign http://security.debian.org squeeze/updates/non-free Translation-en
    Reading package lists... Done
    root@NAS:~# apt-get upgrade
    Reading package lists... Done
    E: The value 'testing' is invalid for APT::Default-Release as such a release is not available in the sources
    root@NAS:~#


    I know its irretating, but the guy isnt in today, so iam looking at it myself, so i asked for a little help :)

    • Offizieller Beitrag

    If you want newer packages, I would install them manually using dpkg. I would not add the testing repository. You can use the backports 3.2 kernel if you want a newer kernel.

    omv 7.0.5-1 sandworm | 64 bit | 6.8 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.13 | compose 7.1.4 | k8s 7.1.0-3 | cputemp 7.0.1 | mergerfs 7.0.4


    omv-extras.org plugins source code and issue tracker - github - changelogs


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

  • Did you setup /etc/apt/apt.conf?


    Greetings
    David

    "Well... lately this forum has become support for everything except omv" [...] "And is like someone is banning Google from their browsers"


    Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.

    Upload Logfile via WebGUI/CLI
    #openmediavault on freenode IRC | German & English | GMT+1
    Absolutely no Support via PM!

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!