NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Linux v
« Previous 1 30 31 32 33 34 Next »
Install issue

 
  • 0 Vote(s) - 0 Average
Install issue
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 106,653
Threads: 767
Joined: Nov 2003
#31
2019-06-18, 02:12 AM
It's still fairly early days for me understanding the best way to approach these sorts of issues when users have them on Linux.

A couple of options:
1) you temporarily allow me to remote in to this Linux box via ssh, adding port 22 port forwarding in your router to whatever the Linux machine is, with this I can run the debug session from here, and watch where it crashes. I'd only need access for 20 minutes or so.
2) or you try running:
Code:
gdb ./DeviceHostLinux -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB
run
and when it segfaults try typing 'backtrace'.

The first of those would be the most straight forward. For the second, it might give us a bit more to go on, but we may have to repeat the process with a debug build to get better info.
shspvr
Offline

Senior Member

Posts: 419
Threads: 32
Joined: Jan 2004
#32
2019-06-18, 02:29 AM
sub Wrote:It's still fairly early days for me understanding the best way to approach these sorts of issues when users have them on Linux.

A couple of options:
1) you temporarily allow me to remote in to this Linux box via ssh, adding port 22 port forwarding in your router to whatever the Linux machine is, with this I can run the debug session from here, and watch where it crashes. I'd only need access for 20 minutes or so.
2) or you try running:
Code:
gdb ./DeviceHostLinux -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB
run
and when it segfaults try typing 'backtrace'.

The first of those would be the most straight forward. For the second, it might give us a bit more to go on, but we may have to repeat the process with a debug build to get better info.
Well this what got back
gdb: unrecognized option '-device:adapter0'
Use `gdb --help' for a complete list of options.
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 106,653
Threads: 767
Joined: Nov 2003
#33
2019-06-18, 02:32 AM
Sorry, try:

gdb --args ./DeviceHostLinux -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

run

backtrace
shspvr
Offline

Senior Member

Posts: 419
Threads: 32
Joined: Jan 2004
#34
2019-06-18, 02:43 AM
sub Wrote:Sorry, try:

gdb --args ./DeviceHostLinux -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

run

backtrace

Program received signal SIGSEGV, Segmentation fault.
__GI___libc_free (mem=0x4) at malloc.c:3109
3109 malloc.c: No such file or directory.
(gdb) backtrace
#0 __GI___libc_free (mem=0x4) at malloc.c:3109
#1 0x000055555557fa23 in dvb_file_free ()
at /usr/include/libdvbv5/dvb-file.h:265
#2 run_scan () at /home/graeme/projects/DeviceHostLinux/scanv5.cpp:517
#3 scanmain () at /home/graeme/projects/DeviceHostLinux/scanv5.cpp:778
#4 0x0000555555559fd7 in scanStart ()
at /home/graeme/projects/DeviceHostLinux/main.cpp:492
#5 0x0000555555558bb2 in main ()
at /home/graeme/projects/DeviceHostLinux/main.cpp:756
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 106,653
Threads: 767
Joined: Nov 2003
#35
2019-06-18, 03:21 AM
Can you try replacing your DeviceHostLinux with this newer version, and run:

./DeviceHostLinux -verbose -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

This version should generate more logging. Hopefully something useful.
shspvr
Offline

Senior Member

Posts: 419
Threads: 32
Joined: Jan 2004
#36
2019-06-18, 03:43 AM
sub Wrote:Can you try replacing your DeviceHostLinux with this newer version, and run:

./DeviceHostLinux -verbose -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

This version should generate more logging. Hopefully something useful.

come before as so run gdb
Program received signal SIGSEGV, Segmentation fault.
__GI___libc_free (mem=0x4) at malloc.c:3109
3109 malloc.c: No such file or directory.
(gdb) backtrace
#0 __GI___libc_free (mem=0x4) at malloc.c:3109
#1 0x000055555557fb33 in dvb_file_free () at /usr/include/libdvbv5/dvb-file.h:265
#2 run_scan () at /home/graeme/projects/DeviceHostLinux/scanv5.cpp:517
#3 scanmain () at /home/graeme/projects/DeviceHostLinux/scanv5.cpp:785
#4 0x0000555555559ff9 in scanStart () at /home/graeme/projects/DeviceHostLinux/main.cpp:493
#5 0x0000555555558bd9 in main () at /home/graeme/projects/DeviceHostLinux/main.cpp:761
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 106,653
Threads: 767
Joined: Nov 2003
#37
2019-06-18, 03:50 AM
Running outside of gdb, did it produce more logging?
shspvr
Offline

Senior Member

Posts: 419
Threads: 32
Joined: Jan 2004
#38
2019-06-18, 04:10 AM
sub Wrote:Running outside of gdb, did it produce more logging?

Nope just some old message as before
shspvr
Offline

Senior Member

Posts: 419
Threads: 32
Joined: Jan 2004
#39
2019-06-18, 09:17 PM
I tested reg Ubuntu 19.04 it was the same as PoP_OS any way the Command ./DeviceHostLinux -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB seem be working under 18.0.4.2 just fine so what ever the problem is with 19.04 as both PoP_OS and Ubuntu are doing it which a real drag as is less bugg at leases for me.
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 106,653
Threads: 767
Joined: Nov 2003
#40
2019-06-18, 09:40 PM
shspvr Wrote:I tested reg Ubuntu 19.04 it was the same as PoP_OS any way the Command ./DeviceHostLinux -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB seem be working under 18.0.4.2 just fine so what ever the problem is with 19.04 as both PoP_OS and Ubuntu are doing it which a real drag as is less bugg at leases for me.
Ok good to know. I'll try PoP_OS when I get a chance.

I was thinking about it last night, and I suspect it'll come down to the version of libdvbv5. It possible this distribution is using an older version.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (13): « Previous 1 2 3 4 5 6 … 13 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Linux install failed -- permission denied? FrogFan 4 412 2025-03-26, 12:39 AM
Last Post: FrogFan
  Guide data issue using NextPVR in a Proxmox LXC njc 10 804 2025-03-23, 01:40 PM
Last Post: njc
  Recording Plyback Timeline Issue JeffH 11 598 2025-01-17, 03:20 PM
Last Post: mvallevand
  Install NexPVR backend in Buildroot based Linux Tnix 3 974 2024-03-14, 11:50 AM
Last Post: mvallevand
  Wake after Suspend issue with dvbt devices (LE12 Kodi 21) ShadowMask 41 4,479 2024-02-09, 07:11 AM
Last Post: ShadowMask
  Can't Remember How to Install Hauppauge Firmware Mark_S 2 1,077 2023-09-03, 12:18 PM
Last Post: Mark_S
  NextPVR won't install Paul_G 4 1,141 2023-07-26, 03:34 PM
Last Post: mvallevand
  EPG Not Updating on Fresh Ubuntu Install Frustrated Aussie 4 1,402 2023-03-24, 12:12 AM
Last Post: Frustrated Aussie
  Yay! DST issue :-( TheRealRoland 3 718 2023-03-12, 04:45 PM
Last Post: mvallevand
  Recent streaming issue with Matt Huisman Aus TV streams ballfam 74 10,721 2023-03-08, 10:35 PM
Last Post: mvallevand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode