Jump to content


Photo

opera browser dont start after update


  • Please log in to reply
47 replies to this topic

#1 janejak

  • Senior Member
  • 284 posts

+11
Neutral

Posted 28 April 2014 - 02:00

when i do a opdate and it downloaded vuplus-opera-browser - 1.0-r7_20140421_0 - vuplus-opera-browser version 1.0-r7_20140421_0
 Opera HbbTV browser

it dont start to run i get this error: opera browser whas not running. i have try to start it but no it dont

 

opera have worked before this update

Attached Files



Re: opera browser dont start after update #2 Frenske

  • Forum Moderator
    PLi® Core member
  • 27,395 posts

+394
Excellent

Posted 28 April 2014 - 07:35

It would be convenient for other users to know what STB you're talking about.

You could log some things to see what goes wrong by killing enigma (init 4) and then start enigma with 'enigma2'. Perhaps, then you can see what goes wrong.

Mijn schotel is een T90 met 10 LNB's. Daarnaast voor de fun nog een draaibaar systeem met een Triax TD 78.

Dreamboxen heb ik niet meer echt actief. Verder heb ik ook nog een een VU+ duo2 met 500Gb harddisk + een VU+ Uno, Zero, Solo 4K, Ultimo 4K, Zero 4K, Uno 4Kse. + ook nog een Xtrend ET7x00. Daarnaast heb ik ook nog diverse andere modellen w.o. een Formuler F4, ET8500, ET7500, Mut@nt 2400HD, Xsarius Fusion HD se en verder nog wel het e.e.a. waarmee op verzoek vanalles wordt getest. Iemand moet het tenslotte doen. ;) :)
Los van de eerder genoemde modellen heb ik nog wel een rits aan testsamples als Mut@nt 2400HD, HD60, GB UE4K, GB Trio4K, Maxitec Multibox combo en Twin, Octagon sf8008, sf8008 mini en last but nog least enkele modellen van het Grieks Duitse Edision.

Voor centrale opslag van media gebruik ik een Qnap 219P 
met tweemaal 2 Tb harddisks + een Synology DS414 met 12 Tb Totale opslag.

-------------------------------------------------------------------------------------------
Many answers to your question can be found in our wiki: Just one click away from this "solutioncentre".

Als ik alles al wist hoefde ik ook niets te vragen. If I had all the knowledge I had no questions at all.


Re: opera browser dont start after update #3 Trial

  • Senior Member
  • 1,127 posts

+34
Good

Posted 28 April 2014 - 08:04

Hi,

the latest update from VU behaves strange. I tried to start the browser manually with telnet but it was not started and there was no error. The file laucher in /usr/local/hbbtv is responsible and I tried ./launcher start with no reaction whatsoever.

 

ciao



Re: opera browser dont start after update #4 Erik Slagter

  • PLi® Core member
  • 46,957 posts

+541
Excellent

Posted 28 April 2014 - 08:30

I updated the hbbtv browser last week. Something seems to have gone wrong. I'll have to sort it out, it may take a few days.


* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: opera browser dont start after update #5 Erik Slagter

  • PLi® Core member
  • 46,957 posts

+541
Excellent

Posted 28 April 2014 - 11:37

Problem confirmed.

 

I suspected a library/dependency problem, but it works if you start the browser by hand. For those who're interested, look here how to start the browser manually:

 

/usr/local/hbb-browser/launcher

 

So something goes wrong in the automated starting process. I'll have to look into it. I am gone the next few days so please be patient.


* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: opera browser dont start after update #6 macnuts

  • Senior Member
  • 420 posts

+14
Neutral

Posted 28 April 2014 - 16:39

 Thank you Erik for your hint:

/usr/local/hbb-browser/launcher

 

 

 

For those who do not want to wait for the ultimate solution, I found that removing libfaketime.so from LD_PRELOAD did the trick (two lines in the aforementioned file).

 

I have no idea what is the impact on the hbbtv and/or browser functionality though.

 

The file should read like this then:

# 1.0-rev_17, 20140108_p0

 

#!/bin/sh

 

APPNAME=hbbtv.app
BROWSER_ROOT=/usr/local/hbb-browser

 

case $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


Edited by macnuts, 28 April 2014 - 16:44.


Re: opera browser dont start after update #7 macnuts

  • Senior Member
  • 420 posts

+14
Neutral

Posted 28 April 2014 - 16:49

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

Edited by macnuts, 28 April 2014 - 16:49.


Re: opera browser dont start after update #8 patjebroos

  • Member
  • 2 posts

0
Neutral

Posted 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



Re: opera browser dont start after update #9 macnuts

  • Senior Member
  • 420 posts

+14
Neutral

Posted 29 April 2014 - 17:16

It is a pity it did not work for you. I works very well on my duo2. I wonder what that libfaketime.so do (the one which I removed).

Anyway, you need to wait for ultimate solution then.



Re: opera browser dont start after update #10 Trial

  • Senior Member
  • 1,127 posts

+34
Good

Posted 29 April 2014 - 19:05

Hi,

system crashes after this change was adapted

did you use an editor which keep linux line endings like UltraEdit?

 

ciao



Re: opera browser dont start after update #11 janejak

  • Senior Member
  • 284 posts

+11
Neutral

Posted 30 April 2014 - 02:21

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



Re: opera browser dont start after update #12 Rob van der Does

  • Senior Member
  • 7,766 posts

+184
Excellent

Posted 30 April 2014 - 06:12

New update today: http://code.vuplus.c...ef366fb6eaceeb5

Re: opera browser dont start after update #13 Trial

  • Senior Member
  • 1,127 posts

+34
Good

Posted 1 May 2014 - 07:38

Hi macnuts,

you trick worked for me to. Thanks. I reported it to VU and asked about faketime. I have my doubts but perhaps they alighten me:-)

 

ciao



Re: opera browser dont start after update #14 Rob van der Does

  • Senior Member
  • 7,766 posts

+184
Excellent

Posted 1 May 2014 - 07:50

Yep, trick works fine here as well.

Re: opera browser dont start after update #15 MiLo

  • PLi® Core member
  • 14,045 posts

+298
Excellent

Posted 1 May 2014 - 08:09

"#!/bin/sh" must be the FIRST line in a script to have any effect.
Real musicians never die - they just decompose

Re: opera browser dont start after update #16 Rob van der Does

  • Senior Member
  • 7,766 posts

+184
Excellent

Posted 1 May 2014 - 08:18

"#!/bin/sh" must be the FIRST line in a script to have any effect.

So that would be the only change that is needed?

Re: opera browser dont start after update #17 macnuts

  • Senior Member
  • 420 posts

+14
Neutral

Posted 1 May 2014 - 10:56

"#!/bin/sh" must be the FIRST line in a script to have any effect.



I was surprised by that current construct too (always thought that #! must be in 1st line). I left it as it was, the script is runnable on enigma2 somehow.

Re: opera browser dont start after update #18 Erik Slagter

  • PLi® Core member
  • 46,957 posts

+541
Excellent

Posted 2 May 2014 - 18:19

Thanks macnuts for diving into this. I think this is a fine workaround for the moment. I'll update the browser once again and check if it works then, otherwise I'll probably add this workaround.


* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: opera browser dont start after update #19 delavega

  • Senior Member
  • 377 posts

+2
Neutral

Posted 2 May 2014 - 19:37

macnuts tricky nut trick worked!


<p><span style="font-size:18px;"><span style="font-family:'lucida sans unicode', 'lucida grande', sans-serif;"><strong>Vu+ DUO 2</strong></span></span></p>
<p><span style="font-size:18px;"><span style="font-family:'lucida sans unicode', 'lucida grande', sans-serif;"><strong>Vu+ SOLO</strong></span></span>

Re: opera browser dont start after update #20 Erik Slagter

  • PLi® Core member
  • 46,957 posts

+541
Excellent

Posted 5 May 2014 - 13:44

I have updated the opera hbbtv browser plugin. I didn't yet test it ;) It's in the feed tomorrow, let's see.


* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.



0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users