Jump to content


patjebroos

Member Since 3 Jan 2012
Offline Last Active 05 Feb 2017 10:46
-----

Posts I've Made

In Topic: opera browser dont start after update

5 May 2014 - 17:57

 

Sorry, some editing problems.

 

The file again, changes in lines 11 & 28: 

# 1.0-rev_17, 20140108_p0

#!/bin/sh
 
PNAME=hbbtv.app
BROWSER_ROOT=/usr/local/hbb-browser
 
se $1 in
        "start")
                export LD_LIBRARY_PATH=$BROWSER_ROOT/lib:$LD_LIBRARY_PATH
                LD_PRELOAD="liboperamalloc.so" $BROWSER_ROOT/lib/$APPNAME --hbbtv $2 $3 &
                ;;
        "stop")
                killall -2 $APPNAME
                if [ -f /tmp/.sock.hbbtv.cmd ]; then
                        rm -f /tmp/.sock.hbbtv.cmd
                fi
                ;;
        "check")
                echo `ps | grep $APPNAME | grep -v grep | wc -l`
                ;;
        "restart")
                killall -2 $APPNAME
                if [ -f /tmp/.sock.hbbtv.cmd ]; then
                        rm -f /tmp/.sock.hbbtv.cmd
                fi
                export LD_LIBRARY_PATH=$BROWSER_ROOT/lib:$LD_LIBRARY_PATH
                LD_PRELOAD="liboperamalloc.so" $BROWSER_ROOT/lib/$APPNAME --hbbtv $2 $3 &
                ;;
esac

it worked :-) ps i use Crimson Editor SVN286M to change the file,  my system is VU+ Duo

Ok thx ... succesful this time.


In Topic: opera browser dont start after update

29 April 2014 - 16:36

Sorry, some editing problems.

 

The file again, changes in lines 11 & 28: 

# 1.0-rev_17, 20140108_p0

#!/bin/sh
 
PNAME=hbbtv.app
BROWSER_ROOT=/usr/local/hbb-browser
 
se $1 in
        "start")
                export LD_LIBRARY_PATH=$BROWSER_ROOT/lib:$LD_LIBRARY_PATH
                LD_PRELOAD="liboperamalloc.so" $BROWSER_ROOT/lib/$APPNAME --hbbtv $2 $3 &
                ;;
        "stop")
                killall -2 $APPNAME
                if [ -f /tmp/.sock.hbbtv.cmd ]; then
                        rm -f /tmp/.sock.hbbtv.cmd
                fi
                ;;
        "check")
                echo `ps | grep $APPNAME | grep -v grep | wc -l`
                ;;
        "restart")
                killall -2 $APPNAME
                if [ -f /tmp/.sock.hbbtv.cmd ]; then
                        rm -f /tmp/.sock.hbbtv.cmd
                fi
                export LD_LIBRARY_PATH=$BROWSER_ROOT/lib:$LD_LIBRARY_PATH
                LD_PRELOAD="liboperamalloc.so" $BROWSER_ROOT/lib/$APPNAME --hbbtv $2 $3 &
                ;;
esac

system crashes after this change was adapted