2

OBS crashes (segfault) when I tap the trackpad while the mouse is over the OBS window. Using the mouse does not cause this crash.

The guy on this forum post ran into issues with OBS, specifically mouse and crashing issues.

My installation ran into the same problem running on an XPS 13, x64 Ubuntu 14.04.5 LTS.

[1]    17198 segmentation fault (core dumped)  obs

Here is the output of gdb ods... seems to be a qt5 problem.

Program received signal SIGSEGV, Segmentation fault.
0x00007fffda837cbb in ?? () from /usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so

Additional info

$ lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation Broadwell-U Integrated Graphics (rev 09)

OBS studio was installed using apt-get install obs-studio.

$ sudo apt-cache policy obs-studio libqt5gui5
obs-studio:
  Installed: 0.16.2.1-544~trusty
  Candidate: 0.16.2.1-544~trusty
  Version table:
 *** 0.16.2.1-544~trusty 0
        500 http://ppa.launchpad.net/obsproject/obs-studio/ubuntu/ trusty/main amd64 Packages
        100 /var/lib/dpkg/status
libqt5gui5:
  Installed: 5.2.1+dfsg-1ubuntu14.3
  Candidate: 5.2.1+dfsg-1ubuntu14.3
  Version table:
 *** 5.2.1+dfsg-1ubuntu14.3 0
        500 http://archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages
        500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 Packages
        100 /var/lib/dpkg/status
     5.2.1+dfsg-1ubuntu14 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
Jamie
  • 319

1 Answers1

1

That was same version used to build the obs, here is the related build log. You better go with bug report against obs.

But before reporting, test the last unstable build from OBS Studio Unstable PPA

sudo apt-add-repository ppa:obsproject/obs-studio-unstable
sudo apt-get update
sudo apt-get install obs-studio

The Linux version of OBS is still under development and contains many bugs, but if you're feeling brave, and can install Ubuntu PPAs, then you can give this a try.

Source: OBS Project, Ubuntu PPA Installation Instructions

user.dz
  • 49,176