Aktuelles
Digital Eliteboard - Das Digitale Technik Forum

Registriere dich noch heute kostenlos, um Mitglied zu werden! Sobald du angemeldet bist, kannst du auf unserer Seite aktiv teilnehmen, indem du deine eigenen Themen und Beiträge erstellst und dich über deinen eigenen Posteingang mit anderen Mitgliedern unterhalten kannst! Zudem bekommst du Zutritt zu Bereichen, welche für Gäste verwehrt bleiben

Registriere dich noch heute kostenlos, um Mitglied zu werden! Sobald du angemeldet bist, kannst du auf unserer Seite aktiv teilnehmen, indem du deine eigenen Themen und Beiträge erstellst und dich über deinen eigenen Posteingang mit anderen Mitgliedern unterhalten kannst! Zudem bekommst du Zutritt zu Bereichen, welche für Gäste verwehrt bleiben

iCam @ dm800se v2

Hallo Leute, ich bekomme die Streamingsender mittels iCam auf meiner DM800hd se v2 nicht zum laufen.
Die Senderliste wird mir angezeigt jedoch kommt kein Bild bei mir an... die oscam scheint sonst korrekt konfiguriert zu sein, andere Sender funktionieren.

Oder ist meine Box ohnehin zu schwach dafür?

Vielen Dank!
Moin
meine 900 had se v2 läuft damit.
schau dir mal die userbouquet.SKYICAM.tv an hinter tv muss noch .del
 
hm schwach? aber so geht !!!

Requirements
    • It is recommended to start with a fresh image on flash, preferably the latest image from opendeambox, as it will fit without problems in flash and has all the tools necessary. You can find it .
    • You also need to prepare the BIOS to be able to boot from the USB device (pendrive, card reader, USB SSD, etc).
      The process is explained here:
    [*]

Installation

  1. Transfer the rootfs image with OpenATV 7.0 to /tmp directory in the receiver, using SCP, FTP, etc.
  2. Insert USB device in the receiver
  3. SSH into the receiver[/URL]
  4. Find out device name of the USB device



  5. Code:
    sfdisk -l
    It'll be usually sda or sdb, in my case it was sdb, just replace with yours in the following commands
  6. Prepare the USB device (WARNING: this will ERASE all data)

    Code:
    dd if=/dev/zero of=/dev/sdb bs=512 count=1
  7. Create partitions (boot, swap and root)

    Code:
    sfdisk --force -uM /dev/sdb << EOF
    0,16,b,*
    ,512,82
    ,,83
    ;
    ;
    y
    EOF
  8. Format partitions

    Code:
    mkdosfs -n BOOT /dev/sdb1
    mkswap -L SWAP /dev/sdb2
    mkfs.ext4 -L ROOT /dev/sdb3
  9. Mount root and boot partitions

    Code:
    mkdir /mnt/new_boot
    mount /dev/sdb1 /mnt/new_boot
    mkdir /mnt/new_root
    mount /dev/sdb3 /mnt/new_root
  10. Extract image into root partition

    Code:
    cd /mnt/new_root
    tar xvf /tmp/openatv-7.0-dm800se-20210826.rootfs.tar.xz
  11. Move boot files into boot partition

    Code:
    mv /mnt/new_root/boot/* /mnt/new_boot/
  12. Modify autoexec_dm800se.bat

    Code:
    echo "/boot/bootlogo-dm800se.elf.gz filename=/boot/bootlogo-dm800se.jpg" > /mnt/new_boot/autoexec_dm800se.bat
    echo "/boot/vmlinux-3.2-dm800se.gz root=/dev/sdb3 rootdelay=5 rw console=ttyS0,115200" >> /mnt/new_boot/autoexec_dm800se.bat
  13. Add mountpoints for boot and swap by editing /mnt/new_root/etc/fstab and adding (at the very end)

    Code:
    /dev/sdb1 /boot vfat ro 0 0
    /dev/sdb2 none swap sw 0 0
  14. Umount and reboot

    Code:
    cd
    sync
    umount /mnt/new_boot
    umount /mnt/new_root
    reboot
The box should now boot OpenATV 7.x from the USB device!
 

Anhänge

Du musst angemeldet sein, um die Anhangsliste zu sehen.
Zuletzt bearbeitet:
Zurück
Oben