Question / Help [Self-Solved]Problems with latest Linux build on Linux Mint 19...

MrRenegade

New Member
Ok so here we go...

Running the NVIDIA 390 driver on 2x GTX 1050 TI cards with Linux Mint 19.

If i run though the standard install process (add the PPA and then just run apt-get install obs-studio) the program installs and runs just fine. It even has NVENC H.264 support which is great!. However there is no Window Capture and no Game Capture option. 2 weeks ago I had both of these installed with a compiled version on a Custom Kernel with Debian Jessie. Granted Game Capture didn't do anything (as expected) but it was an option. Down side was I didn't have NVENC support at all and could only do Software Encoding.

Now we fast forward to this problem. So If i just do Screen Capture (which I do have) then the video just Strobes and pegs both my 1050 TIs to 100% gpu.

So I decided to just do another Compiled version like I did before and even fully compiled ffmpeg as i did before(had no issues there). However this time I can't get it to finish the compile and it gives me an error as follows.

*****************************************
**** Debian package creation selected ***
*****************************************

This package will be built according to these values:

0 - Maintainer: [ root@#######]
1 - Summary: [ Package created with checkinstall 1.6.2 ]
2 - Name: [ obs-studio ]
3 - Version: [ 20190224 ]
4 - Release: [ 1 ]
5 - License: [ GPL ]
6 - Group: [ checkinstall ]
7 - Architecture: [ amd64 ]
8 - Source location: [ build ]
9 - Alternate source location: [ ]
10 - Requires: [ ]
11 - Provides: [ obs-studio ]
12 - Conflicts: [ ]
13 - Replaces: [ ]

Enter a number to change any of them or press ENTER to continue:

Installing with --pkgversion=20190224-git --deldoc=yes...

========================= Installation results ===========================
/var/tmp/tmp.b40AfaphZV/installscript.sh: 4: /var/tmp/tmp.b40AfaphZV/installscript.sh: --pkgversion=20190224-git: not found

**** Installation failed. Aborting package creation.


So the question is either do we fix the compile problem or do we fix the main build on the PPA that doesn't have Window Capture?

Thanks,


UPDATE: I got it working.....


So by Default all versions of Linux Mint 19 and 19.1 have Xcomposite Disabled by default... for what reason i have no idea.. but to enable it its pretty easy.

goto your /etc/X11/xorg.conf

At the bottom you find this..
Code:
Section "Extensions"
    Option         "Composite" "Disabled"
EndSection

Change it to this..

Code:
Section "Extensions"
    Option         "Composite" "Enabled"
EndSection

then run " xdpyinfo | grep -i composite " to confirm its enabled. if it is it will respond with a single line just saying "Composite" and then OBS will pick it up...

I just re-installed directly from the PPA and also had a compiled version of ffmpeg that included NVENC and all is well in the world....

Hope this helps anyone who has an issue with it.
 
Last edited:
Top