martindell

Members
  • Posts

    16
  • Joined

  • Last visited

Posts posted by martindell

  1. On 10/3/2019 at 12:44 PM, rix said:

    This could be due to the verbose logging of the container.

     

    Try and add

    
    --log-opt max-size=50m

    as Extra parameters in the container's advanced settings.

     

    This should drastically limit the container size due to docker logs.

    Thanks, I've modified the docker (I think) and will see what happens to the container size.  I'm configuring this via the Unraid docker interface and I get this when it restarts.  Does this look right (sorry, am at the limit of my tech abilities here ..)

     

    root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='Ripper' --net='host' --privileged=true -e TZ="Europe/London" -e HOST_OS="Unraid" -e 'log-opt max-size'='50m' -v '/dev/sr0':'/dev/sr0':'rw' -v '/mnt/user/Potter/':'/out':'rw' -v '/mnt/cache/.appdata/ripper':'/config/':'rw' --device=/dev/sr0:/dev/sr0 'rix1337/docker-ripper' 

    b06d9a14bfcd3ba5d13ed35403c817b2e05b02a5b803b5ea7dc992335820180d
     

    An add-on question if I may.  Is there a way to only rip audio CD's to MP3 via the docker config (no flac or wav)?

     

  2. Ripper container increasing in size while not in use.  I got an UNRAID about disk utilisation and noticed that the Ripper container had grown to 5Gb.  I uninstalled and reinstalled but it's grown from 2.7Gb to 3.2Gb in a couple of days.  I'm not actively using Ripper at the moment and the log doesn't show anything untoward.  Any idea what I can do to diagnose / resolve this?  Thanks in advance for any help.

    Screenshot 2019-09-19 at 14.17.59.png

  3. Hi, I upgraded to 6.3.0 and 6.3.1 but neither registered my DVB-T USB tuners (working finer prior to 6.3.0 upgrade).  MediaTreeCheck confirms that Media tree is detected but no DVB adaptors.  When I hot plug one of them, I see:

     

    New device PCTV Systems 290e

    chip ID is em28174

    Identified as PCTV nanoStick T2 290e (card=78)

     

    Any suggestions how to get tuners working again?

     

    00000235.png

  4. This is my boot/config/go - not sure it helps tho?

     

     

    #!/bin/bash

    # Start the Management Utility

    /usr/local/sbin/emhttp &

    modprobe dvb_hdhomerun && sleep 3 && /usr/bin/userhdhomerun &

     

    cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c

     

    # install crashplan

    tar -C / -xvf /boot/packages/crashplan.tar

    /usr/local/crashplan/bin/CrashPlanEngine start

     

    # something to do with making ssh work

    cp --preserve=timestamps /boot/custom/etc/ssh/ssh*key* /etc/ssh

    chmod 600 /etc/ssh/ssh*key*

    /etc/rc.d/rc.sshd start

     

    unraid_notify start

    /boot/unmenu/uu

    /usr/local/sbin/cache_dirs -w -B -u -m1 -M10 -d9999

     

    Where do you get the option for EPG grabber?  I don't see that option anywhere inside UnRAID or TvH

  5. Great procedure, thanks for documenting it - I'd have been lost without it.  A couple of things which I had to tweak as I'm connecting from a mac (no putty)

     

    The command you'll need to enter in the terminal programme to do the port forwarding will look something like this:

     

    ssh -L 4200:localhost:4243 user@server

     

    I also had to install Jre - Java 2 Platform Standard Edition Runtime Environment from UnMENU - for some reason, the bundled JRE with CrashPlan didn't do the trick for me.

     

    Aside from that, all working like a charm now.

  6. Almost got everything working with TVHeadEnd and UnRAID - except some HD channels missing from XMLTV.

     

    My tv_grab_file is looking at this location to grab epg data: rytec.sifteam.eu/rytecxmltvuk.gz - and that seems to work more or less OK.

     

    However, this file doesn't include listings for BBC One HD, Channel 4 HD and ITV1 HD (although it does have BBC HD)

     

    I think I could do with getting data from tv_grab_uk_rt to fix the problem: http://supplement.xmltv.org/tv_grab_uk_rt/channel_ids

     

    But I'm at the bleeding edge of my understanding and ability here ..

     

    I'd really appreciate some help getting BBC One HD working if anyone has any tips please?

     

    Cheers

    Martin