Page 168 of 178 FirstFirst ... 68118158166167168169170 ... LastLast
Results 3,341 to 3,360 of 3542

Thread: Enigma 2 by The_ripper - TEST -

  1. #3341
    Junior Member
    Join Date
    May 2009
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by hfmls View Post
    well, i've watched over 30 .avi movies now and all worked out great.
    mkv i only tested 2.
    Most movies are not in 16:9 format, so the picture iz deformed. Did you watch it like that, with long faces?

  2. #3342
    V.I.P hfmls's Avatar
    Join Date
    May 2009
    Location
    Portugal
    Posts
    1,819
    Thanks
    0
    Thanked 0 Times in 0 Posts
    well, they appear ok here,but i noticed that black bars dont appear :( image is stretched.

  3. #3343
    Junior Member
    Join Date
    May 2009
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I only watch tv shows because they are in 16:9 format, they play ok and I tested both .avi and .mkv.

  4. #3344
    Junior Member
    Join Date
    Jul 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts
    can we waiting anything tonight?? something new???? congratulations to the team for the good work.I WISH TO ALL MERRY CHRISTMAS AND ALL THE BEST! :respect-051:

  5. #3345
    Member
    Join Date
    Sep 2010
    Posts
    86
    Thanks
    0
    Thanked 0 Times in 0 Posts

    making 2 mapped drives

    Quote Originally Posted by lucky13 View Post
    ok i tried this by adding the following line to the rcS file:

    #!/bin/sh
    #
    # rcS Call all S??* scripts in /etc/rcS.d in
    # numerical/alphabetical order.
    #
    # Version: @(#)/etc/init.d/rcS 2.76 19-Apr-1999 miquels@cistron.nl
    #

    PATH=/sbin:/bin:/usr/sbin:/usr/bin
    runlevel=S
    prevlevel=N
    umask 022
    export PATH runlevel prevlevel

    # Make sure proc is mounted
    #
    [ -d "/proc/1" ] || mount /proc

    #
    # See if system needs to be setup. This is ONLY meant to
    # be used for the initial setup after a fresh installation!
    #
    if [ -x /sbin/unconfigured.sh ]
    then
    /sbin/unconfigured.sh
    fi

    #
    # Source defaults.
    #
    . /etc/default/rcS

    #
    # Trap CTRL-C &c only in this shell so we can interrupt subprocesses.
    #
    trap ":" INT QUIT TSTP

    #
    # Do we have /proc/progress and set VERBOSE to "no" ?
    # If so, calculate the number of scripts and the incremental step
    #

    # HACK: progress needs LCD to create /proc device entry
    if [ -f /lib/modules/$(uname -r)/modules.dep ] && [ $(cat /lib/modules/$(uname -r)/modules.dep | grep dreambox_rc2 | wc -l) -gt 0 ]; then
    /bin/true;
    else
    echo "regenerate module dependencies";
    depmod -ae;
    fi

    [ $(cat /lib/modules/$(uname -r)/modules.dep | grep lcd | wc -l) -gt 0 ] && modprobe lcd

    if [ "$VERBOSE" = no ]; then
    if [ -e /proc/progress ]; then
    set `ls -1 /etc/rc$runlevel.d/S* | wc`
    numscripts=$1
    # bootup, the first script, increments until 25.
    # the userspace then picks up at 50
    PROGRESS_incstep=`expr 25 / $1`
    PROGRESS_value=25
    PROGRESS=yes
    export PROGRESS_value PROGRESS_incstep
    fi
    fi
    export VERBOSE PROGRESS

    #
    # Call all parts in order.
    #
    for i in /etc/rcS.d/S??*
    do
    # Ignore dangling symlinks for now.
    [ ! -f "$i" ] && continue

    # Handle verbosity
    [ "$VERBOSE" = very ] && echo "INIT: Running $i..."
    if [ "$PROGRESS" = yes ]; then
    export PROGRESS_value=`expr $PROGRESS_value + $PROGRESS_incstep`
    echo "$PROGRESS_value Starting $i..." >/proc/progress
    fi

    case "$i" in
    *.sh)
    # Source shell script for speed.
    (
    trap - INT QUIT TSTP
    set start
    . $i
    )
    ;;
    *)
    # No sh extension, so fork subprocess.
    $i start
    ;;
    esac

    #
    # Report status based on result code
    #
    result=$?
    if [ "$PROGRESS" = yes ]; then
    if [ "$result" = 0 ]; then
    echo "=s" >/proc/progress
    else
    echo "=f" >/proc/progress
    fi
    fi
    done

    #
    # For compatibility, run the files in /etc/rc.boot too.
    #
    [ -d /etc/rc.boot ] && run-parts /etc/rc.boot

    #
    # Finish setup if needed. The comment above about
    # /sbin/unconfigured.sh applies here as well!
    #
    if [ -x /sbin/setup.sh ]
    then
    /sbin/setup.sh
    fi

    mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password


    but on reboot the azbox failed to reboot and I've just spent the last hr rebuilding it....am i putting the sytax in the right place at the end of the file ?
    ok this is working fine now with the above line for mapping a network drive, how would I edit this file to add two mapped drives instead of one...i've tried adding another line

    mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password

    and

    mount -t cifs \\\\IPofWINDOWS\\sharename /media/net2 -o username=user,pass=password

    or even the same line again mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password


    but these dont seem to do anything, the first line works fine but the second seems to be ignored

  6. #3346
    Banned
    Join Date
    Aug 2010
    Posts
    79
    Thanks
    0
    Thanked 0 Times in 0 Posts
    i got this to work by useing this config

    mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password
    mount -t cifs \\\\IPofWINDOWS\\sharename /media/cf -o username=user,pass=password

    this then shows the second share as compactflash in the media player
    Last edited by BIGIFA; 28-12-2010 at 03:42 PM.

  7. #3347
    Member
    Join Date
    Sep 2010
    Posts
    86
    Thanks
    0
    Thanked 0 Times in 0 Posts
    awesome thanks BIGIFA shame we can't rename these mounts to something more meaningfull but that is great thanks

  8. #3348
    Member
    Join Date
    Sep 2009
    Posts
    43
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by lucky13 View Post
    awesome thanks BIGIFA shame we can't rename these mounts to something more meaningfull but that is great thanks
    Hi,
    you can name your mounts as you want.
    I.E. you can name your 1st mount as harddisk1
    and your 2nd as harddisk2.

    First you have to create the mount point:

    mkdir /media/harddisk1
    mkdir /media/harddisk2
    (you should do that by hand only the 1st time)

    and then you mount your disks as usual:
    mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk1 -o username=user,pass=password
    mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk2 -o username=user,pass=password


    Of course you can choose a meaningfull name!

    Bye,

  9. #3349
    Senior Member
    Join Date
    Sep 2010
    Posts
    104
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by Cirio View Post
    Hi,
    you can name your mounts as you want.
    I.E. you can name your 1st mount as harddisk1
    and your 2nd as harddisk2.

    First you have to create the mount point:

    mkdir /media/harddisk1
    mkdir /media/harddisk2
    (you should do that by hand only the 1st time)

    and then you mount your disks as usual:
    mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk1 -o username=user,pass=password
    mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk2 -o username=user,pass=password


    Of course you can choose a meaningfull name!

    Bye,

    I have a USB external storage on my PC how can i let the azbox read that one?

  10. #3350
    Member
    Join Date
    Sep 2009
    Posts
    43
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by kooleracer View Post
    I have a USB external storage on my PC how can i let the azbox read that one?
    Well, you should share the folder on your external hd and the use the command above to mount it.
    Give permissions to "everyone".
    Last edited by Cirio; 28-12-2010 at 06:16 PM.

  11. #3351
    Senior Member
    Join Date
    Sep 2010
    Posts
    104
    Thanks
    0
    Thanked 0 Times in 0 Posts
    As soon i alter rcS de Azbox wont bootup?

  12. #3352
    Member
    Join Date
    Sep 2009
    Posts
    43
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by kooleracer View Post
    As soon i alter rcS de Azbox wont bootup?
    Be sure to use a unix compatible editor like Notepad++

    DO NOT use windows notepad it will screw up your rcS file.

    Bye,

  13. #3353
    Member
    Join Date
    Sep 2010
    Posts
    86
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by kooleracer View Post
    As soon i alter rcS de Azbox wont bootup?
    i had the same issue even when I used a compatible editor, I then added the extra line below and that seemed to sort it...dont ask me why


    CCcam

  14. #3354
    Member
    Join Date
    Sep 2010
    Posts
    86
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by Cirio View Post
    Hi,
    you can name your mounts as you want.
    I.E. you can name your 1st mount as harddisk1
    and your 2nd as harddisk2.

    First you have to create the mount point:

    mkdir /media/harddisk1
    mkdir /media/harddisk2
    (you should do that by hand only the 1st time)

    and then you mount your disks as usual:
    mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk1 -o username=user,pass=password
    mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk2 -o username=user,pass=password


    Of course you can choose a meaningfull name!

    Bye,
    thanks Cirio do I need to be in a specific dir when I use the mkdir command after I ssh in ? also would these directorys appear in the root of the media player file list window like the network mount and compact flash directorys I already have ?

  15. #3355
    Member
    Join Date
    Sep 2009
    Posts
    43
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by lucky13 View Post
    thanks Cirio do I need to be in a specific dir when I use the mkdir command after I ssh in ?
    I usually type the mkdir command from root directory. I'm not so expert in linux so i'm not sure if you type the command from other directories the result will be the same.

    Quote Originally Posted by lucky13 View Post
    also would these directorys appear in the root of the media player file list window like the network mount and compact flash directorys I already have ?
    Same as above: i'm not so expert to help you in this case..:001_07:

    Bye,

  16. #3356
    Senior Member
    Join Date
    Apr 2010
    Posts
    191
    Thanks
    0
    Thanked 0 Times in 0 Posts
    @Team

    RC2 it's coming today or tomorow as it was posted?

    Some very critical bugs to solve, like no wakeup from sleep, still some HD and SD drag image, newer w_izzard.py, video clear or video_off on exiting tv.

    About recording and timishifting, it's working good in your test's?

    Great work to all the Team and happy new year.

  17. #3357
    Senior Member
    Join Date
    Apr 2010
    Posts
    191
    Thanks
    0
    Thanked 0 Times in 0 Posts
    @Team

    RC2 it's coming today or tomorow as it was posted?

    Some very critical bugs to solve, like no wakeup from sleep, VFD option isn't showing in menu, still some HD and SD drag image, newer w_izzard.py, video clear or video_off on exiting tv, can't initialize any disc in Hardisk menu ( always gives error ).

    About recording and timishifting, it's working good in your test's?

    Great work to all the Team and happy new year.

  18. #3358
    Senior Member massimo1167's Avatar
    Join Date
    Sep 2009
    Posts
    249
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I'm sorry, but I'm lost ...
    I do not remember if the function for selecting a second audio in TV mode is active and fully working.
    I remember, maybe one of the earlier versions, I have changed the sound, but now, the tests done on some movie channels on Sly Italy, it seems to me that the second language is not operated.

    Same goes for the subtitles in TV mode, are already active or is one of the functions that will be implemented in RC2?

  19. #3359
    Member
    Join Date
    Dec 2010
    Posts
    70
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I think it is an issue at this moment and the only info I found is from chat-box on main site.

    mr3p on Thursday 30 December 2010 - 12:50:27
    still missing audio on several channels. issues appears to be AC3 audio PID not being correctly recognized during transponder scan. if correct AC3 audio PID is manually entered using Dreambox edit, AC3 audio is fine.
    but I don't exacly how to correct the settings.

    SNL

  20. #3360
    Member
    Join Date
    Sep 2010
    Posts
    54
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by sectorNOlimits View Post
    I think it is an issue at this moment and the only info I found is from chat-box on main site.



    but I don't exacly how to correct the settings.

    SNL
    It says with Dreamboxedit, what do you not understand?

Page 168 of 178 FirstFirst ... 68118158166167168169170 ... LastLast

Bookmarks

Posting Permissions

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