Beiträge von anis_ber

    hello
    i already changed my password in DM800HD, my port 80 is open to control my DM remotely
    when i try to ftp, it asks me what is the user and password, but when i try to http (web interface), it goes directly to the webpage without any warning, with enigma1 it was always asking a password
    it's very bad since anyone can go to the http and play with the dreambox, change channels, volume, turn off....
    any clue about this issue

    i opened this thread long time ago before even i found out that my SW1 was faulty, i was suspecting everything including the script, my dm800, SW1....
    now everything is good

    I have dm8000 and everything works perfect for me with all HD and SD skins


    me as well


    once i use dvb-s usb tuner (B) with vtuner (virtual tuner) of HOMEY, i get lagging on zapping with hd skins, but not on sd skins


    anyway the vtunner project is beta and it needs some tweaking



    thanks anyways

    looks wonderful


    i just test it out and works perfect


    i perefer your infinity hd skin though


    i feel like your hd skins slow down the zapping, do you think if you do such clean up, it will improve the zapping?


    thx


    well it's not the best place to talk about free TV


    read the rules...


    pm me if you want to know why

    looks corect
    (vtuner and usbtuner are similar things, first use tuner from another dreambox second from usb)


    maybe your image isnt enough fresh
    or some executable file(usbtuner;enigma2.sh) havent atributes 755


    what looks good?you mean the script i posted?


    it looks different than the one you posted


    could you tell me how many files do you have for the lan tuner, and their names

    maybe enough is add some lines to enigma2.sh before enigma2 starts, to start vtunerct(client) i have added that lines

    Code
    chmod 755 /usr/bin/vtuner* 
    /usr/bin/vtunerct & 
    sleep 10


    before presented lines

    Code
    cd /home/root 
    LD_PRELOAD=/usr/lib/libopen.so.0.0 /usr/bin/enigma2 
    ... 
    .. 
    .


    only one bad thing, enigma2.sh is time at time owerwroten by default enigma2.sh when run onlineupdate


    thx for the answer


    Im talking about usbtuner not the vtunnerct, is the vtunerct the virtual lan tuner? i dont have any idea what is vtunerct about




    as you see in the tutorial enigma2.sh was modified like that, so the red lines are between cd /home/root and LD_PRELOAD=/usr/lib/libopen.so.0.0 /usr/bin/enigma2, does that matter?



    anyway, did you mean i just need to use the same script but put usbtuner instead of vtunerct?


    how about modprobe genpix (genpix is the usb tuner driver)?




    thx for helping me out

    hello


    im trying to get Genpix Skywalker-1 USB DVB-S tuner to work aith DM800HD using usbtuner of Homey


    i didnt see any tutorial how to make it work and specially how to make the new tuner appear after each restart


    in another forum, i found a tutorial but had no luck with it


    im attaching here the tutorial and the files as well


    please for expert people in making scripts, can you post any script to make the new tuner recognizable each time dm800 restarts




    thx

    regarding support to dish network scan support
    the scanning is smooth and got all channels as TV in the channel list
    HOWEVER, all channels are recognized as Data when using DreamBoxEdit even if they are TV in the dreambox
    here what updatelee said about that, he knows what he is saying since he modify Pli image to scan well


    Zitat von updatelee

    That's because I bet their using python to tell enigma what types are video insted of reasigning them to service type 1 apon scan like we did in pli. For that same dbedit reason.

    sorry but the color in the EPG List can not be changed separatly.
    There only one color can be defined for all infos

    weird, i remember my self seeing an image with channels in white and epg in yellow, maybe it's an image-related and not a skin-reated
    one more thing, i sent you a pm about SNR, i saw a Homey post with a screenshot showing the SNR in % and not in dB, can you modify your skin to show it like that or it doesnt depend on the skin as well?

    Indeed, the new kernel will solve most of the problems with drivers and not supported tuners. But it might take a very long time until those versions are stable and released to the public. Right now ... it's not useable and nothing really works :winking_face:

    hello
    i saw in the picture attached above that you it shows SNR in % in KerniHD, how did you do? almost all skins and images show SNR in dB
    is there any hint to do?
    thx a lot

    hello Kerni
    i love your skin, is there anyway to make the epg (next to the channel name) in the brilliant yellow like original images, so we will see them clearly
    thanks a lot

    maybe you need something like:



    Replace line in scan.cpp

    Code
    ref.setServiceType(d.getServiceType())


    with


    Code
    if (d.getServiceType() == 128 || d.getServiceType() == 133 || d.getServiceType() == 137 || d.getServiceType() == 140 || d.getServiceType() == 144 || d.getServiceType() == 145 || d.getServiceType() == 150 || d.getServiceType() == 154 || d.getServiceType() == 160 || d.getServiceType() == 163 || d.getServiceType() == 164 || d.getServiceType() == 165 || d.getServiceType() == 166 || d.getServiceType() == 167 || d.getServiceType() == 168 || d.getServiceType() == 173 || d.getServiceType() == 174) 
    { 
    ref.setServiceType(1); 
    } 
    else 
    ref.setServiceType(d.getServiceType());