Thanks Thanks:  0
Likes Likes:  1
Dislikes Dislikes:  0
Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 41

Thread: RSP e2 RSPv3.149 G1192

  1. #16
    RSP - TEAM zildan's Avatar
    Join Date
    05 Dec 2007
    Location
    Sudul Romaniei
    Posts
    8,510
    Mentioned
    93 Post(s)
    Rep Power
    100

    Post

    Edit
    /var/config/amnt.sh

    and replace :

    Code:
        if [ $lab == $record ] ;
          then
            if [ ! -e /hdd/movie ] ;
             then
             mkdir /hdd/movie
            fi
            mount $j /hdd/movie
        else
          lb=${j:5}
          mkdir /tmp/"$lb"
          mount $j /tmp/"$lb"
        fi
    with

    Code:
     
     if [ $lab == $record ] ; then
               if [ ! -e /hdd/movie ] ;  then
                        mkdir /hdd/movie
               fi
       mount $j /hdd/movie
       else
    
       lb=${j:5}
          if [ $lb = sdb1 ] ; then
           if [ ! -e /media/mkv ] ; then
            mkdir /media/mkv
          fi
        mount $j /media/mkv
       else
        mkdir /tmp/"$lb"
        mount $j /tmp/"$lb"
       fi
    fi
    Last edited by zildan; 03-10-10 at 13:12.
    Sh40, AML, prime focus 1,5m si altele ...

  2. #17
    Standard RSP member
    Join Date
    30 Dec 2008
    Location
    France
    Posts
    68
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default

    thanks a lot
    i tested and i found this
    BusyBox v1.11.2 (2010-09-20 10:41:33 EEST) built-in shell (ash)
    Enter 'help' for a list of built-in commands.

    Kathy_RSP:~# mount
    rootfs on / type rootfs (rw)
    /dev/root on / type ext2 (rw)
    proc on /proc type proc (rw)
    sysfs on /sys type sysfs (rw)
    tmpfs on /ram type tmpfs (rw)
    /dev/root on /dev.static type ext2 (rw)
    tmpfs on /dev type tmpfs (rw)
    devpts on /dev/pts type devpts (rw)
    tmpfs on /dev/shm type tmpfs (rw)
    usbfs on /proc/bus/usb type usbfs (rw)
    /dev/sda1 on /hdd type ext2 (rw,noatime,nodiratime)
    tmpfs on /tmp type tmpfs (rw)
    Kathy_RSP:~#
    i'll check this evening
    have a good sunday


    my file
    for j in $l
    do
    lab=`/var/config/tune2fs -l $j | grep "Filesystem volume name"`
    lab=${lab:24}
    echo $lab
    if [ $lab == $record ] ;
    then
    if [ ! -e /hdd/movie ] ;
    then
    mkdir /hdd/movie
    fi
    mount $j /hdd/movie
    else
    lb=${j:5}
    if [ $lb = sdb1 ] ; then
    if [ ! -e /media/mkv ] ; then
    mkdir /media/mkv
    fi
    mount $j /media/mkv
    else
    mkdir /tmp/"$lb"
    mount $j /tmp/"$lb"
    fi
    done
    Last edited by dreanew; 03-10-10 at 13:57. Reason: add file
    Flash : AAF2.e
    USB Stick with BA : RSP ( pkt ou AAF) with OSCAM

    5?W_13?E_19?E_28?E

  3. #18
    RSP - TEAM zildan's Avatar
    Join Date
    05 Dec 2007
    Location
    Sudul Romaniei
    Posts
    8,510
    Mentioned
    93 Post(s)
    Rep Power
    100

    Default

    Code:
    for j in $l
    do
    lab=`/var/config/tune2fs -l $j | grep "Filesystem volume name"`
    lab=${lab:24}
    echo $lab
    if [ $lab == $record ] ;
    then
    if [ ! -e /hdd/movie ] ;
    then
    mkdir /hdd/movie
    fi
    mount $j /hdd/movie
    else
    lb=${j:5}
    if [ $lb = sdb1 ] ; then
    if [ ! -e /media/mkv ] ; then
    mkdir /media/mkv
    fi
    mount $j /media/mkv
    else
    mkdir /tmp/"$lb"
    mount $j /tmp/"$lb"
    fi
    fi
    done
    Sh40, AML, prime focus 1,5m si altele ...

  4. #19
    Standard RSP member
    Join Date
    30 Dec 2008
    Location
    France
    Posts
    68
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default

    mulţumesc mult
    Flash : AAF2.e
    USB Stick with BA : RSP ( pkt ou AAF) with OSCAM

    5?W_13?E_19?E_28?E

  5. #20
    Standard RSP member
    Join Date
    22 Dec 2008
    Posts
    31
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default Incubus 1.16

    Quote Originally Posted by zildan View Post
    If your image is installed with KCC:

    edit:

    /hdd/ba/ba/e2_RSPv3.149_G1192/bootp.conf file
    or,
    /tmp/sda1/ba/ba/e2_RSPv3.149_G1192/bootp.conf file

    in e2 image.


    In this file you must replace:

    hwaddr:$ethaddr

    with

    hwaddr:00:13:18:00:01:02



    If image is installed from RSP Panel, you already have other ip in file (like hwaddr:00:50:fd:ff:78:ce)

    In this case replace existing mac with : hwaddr:00:13:18:ff:78:ce
    Thanks a lot Zildan,

    But doing this made my network very unstable. Th enetwork adapter could not be found. I reinstalled the iamage several times by formating the USB but the same problem. Finally I had to install the AAF flash image and it started working again.

    Best regards and thanks for once again your help,
    Afzal

  6. #21
    RSP - TEAM zildan's Avatar
    Join Date
    05 Dec 2007
    Location
    Sudul Romaniei
    Posts
    8,510
    Mentioned
    93 Post(s)
    Rep Power
    100

    Default

    Change of mac address does not affect network stability.

    This method is verified by many users.

    Try to edit the file with Notepad2.
    Sh40, AML, prime focus 1,5m si altele ...

  7. #22
    Member Visitor
    Join Date
    16 Apr 2010
    Posts
    1
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default Hi

    Zildan , how to change font and font size on DVB subtitle .

  8. #23
    RSP - TEAM zildan's Avatar
    Join Date
    05 Dec 2007
    Location
    Sudul Romaniei
    Posts
    8,510
    Mentioned
    93 Post(s)
    Rep Power
    100

    Default

    Font size on DVB subtitle is skin resolution dependent.
    Big size at SD skin , small size at HD.
    Sh40, AML, prime focus 1,5m si altele ...

  9. #24
    Standard RSP member
    Join Date
    30 Dec 2008
    Location
    France
    Posts
    68
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default

    bonsoir

    how can I see subtitle.srt with a file.mkv ?

    thanks for your help
    Flash : AAF2.e
    USB Stick with BA : RSP ( pkt ou AAF) with OSCAM

    5?W_13?E_19?E_28?E

  10. #25
    RSP - TEAM zildan's Avatar
    Join Date
    05 Dec 2007
    Location
    Sudul Romaniei
    Posts
    8,510
    Mentioned
    93 Post(s)
    Rep Power
    100

    Default

    Latest SH4 DuckBOX images based on STM22, works with srt external at MKV files
    Sh40, AML, prime focus 1,5m si altele ...

  11. #26
    Standard RSP member
    Join Date
    30 Dec 2008
    Location
    France
    Posts
    68
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default

    thanks for your reply, but
    i can't find the subtitle.srt ?

    I transfert it in the same directory as the mkv file, in the tmp, but i don't understand how i can select the subtitle ( no blue button same as devil image )
    Flash : AAF2.e
    USB Stick with BA : RSP ( pkt ou AAF) with OSCAM

    5?W_13?E_19?E_28?E

  12. #27
    RSP - TEAM
    Join Date
    03 May 2007
    Posts
    260
    Mentioned
    3 Post(s)
    Rep Power
    63

    Default

    Please tell us what E2 image you are using. Zildan spoke about latest images not the RSP e2 v.149 G1192.
    ... Before asking what should RSP community do for you, try to find out what did you do for the others...be generous!

  13. #28
    Standard RSP member
    Join Date
    30 Dec 2008
    Location
    France
    Posts
    68
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default

    same as this post : e2_RSPv3.149_G1192

    Latest SH4 DuckBOX images based on STM22, works with srt external at MKV files
    I'm very glad to read this , but how ?

    i'm sorry...
    Flash : AAF2.e
    USB Stick with BA : RSP ( pkt ou AAF) with OSCAM

    5?W_13?E_19?E_28?E

  14. #29
    Standard RSP member
    Join Date
    09 Jan 2010
    Posts
    75
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default External USB tuner?

    any drivers for extra tuner in development?

    I want to use USB stick tuner for DVB-T2

    http://www.dabs.com/products/pctv-sy...b-t2-77KG.html

  15. #30
    Member Visitor
    Join Date
    29 Sep 2010
    Posts
    3
    Mentioned
    0 Post(s)
    Rep Power
    0

    Default UFS-910 e2 RSPv3.149 G1192

    Hello, I installed the image in usb, UFS-910 e2 RSPv3.149 G1192. and image TDT E2 RSPv3.98 VER1749 as Jame image very pleased, but I nji problem with the clock on the screen when Kathi is in stendbay looks at the screen, how can clock disappeared from the screen, when Kathi is in stendbay s, I like to look at the screen
    Last edited by artan1; 13-01-11 at 17:53.

Page 2 of 3 FirstFirst 123 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •