LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Bodhi
User Name
Password
Bodhi This forum is for the discussion of Bodhi Linux.

Notices


Reply
  Search this Thread
Old 09-24-2018, 04:17 AM   #16
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,404

Rep: Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337

Have you mesa installed? Go the updatedb && locate libGL* route(as root). You NEED mesa for graphics.
 
Old 09-24-2018, 08:11 AM   #17
Randy4bodhi
Member
 
Registered: Jun 2018
Location: Northeastern Indiana
Distribution: Ubuntu with custom LXDE-GTK & Bodhi Linux
Posts: 83

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by business_kid View Post
Have you mesa installed? Go the updatedb && locate libGL* route(as root). You NEED mesa for graphics.
Yes it is installed and updated to latest ubuntu 18.04 package.
 
Old 09-24-2018, 10:48 AM   #18
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,404

Rep: Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337
Again, please, if you're getting the same error
Code:
sudo updatedb
sudo locate libGL*
Then grep them as described in post #2
 
Old 09-24-2018, 06:51 PM   #19
Randy4bodhi
Member
 
Registered: Jun 2018
Location: Northeastern Indiana
Distribution: Ubuntu with custom LXDE-GTK & Bodhi Linux
Posts: 83

Original Poster
Rep: Reputation: Disabled
here is the output with an extra command...

Code:
main@dell-xps-17:~$ glxinfo | grep "OpenGL version"
OpenGL version string: 3.0 Mesa 18.0.5
main@dell-xps-17:~$ sudo updatedb
[sudo] password for main: 
main@dell-xps-17:~$ sudo locate libGL*
[sudo] password for main: 
main@dell-xps-17:~$
 
Old 09-25-2018, 05:12 AM   #20
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,404

Rep: Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337
OK. You have Mesa-18.05, which is recent but _something_ is missing the symbol "glCheckFramebufferStatus" and compton appears to be puking over it. Would you agree, or is it working now?

If you can't find the Mesa libGL* libraries, it's possible compton can't find them either. What you posted in your last post makes no sense to me. With Mesa-18.05 installed, libGL should be available, and yet mesa appears to be happy without them :-o. The only thing I imagine is that compton was written with Mesa in mind, and there's a different setup in Ubuntu. You will need to ask someone who knows ubuntu. The nearest thing I have is Mint-19. This uses debian & ubuntu debs, but departs from them in graphics Here's the transaction in Mint
Code:
glxinfo |grep "OpenGL version"
OpenGL version string: 2.1 Chromium 1.9
dec@Mint19-VBox:/usr/lib$ sudo grep -r glCheckFrameBufferStatus *
dec@Mint19-VBox:/usr/lib$ sudo grep -r glCheckFrameBufferStatus /lib/*
dec@Mint19-VBox:/usr/lib$ sudo grep -r glCheckFrameBufferStatus /usr/local/lib/*
bash-4.4$
Either way, you don't have that symbol "glCheckFramebufferStatus" that Mesa supplies and compton wants. Framebuffer is old technology, and you don't want it; So I'm not surprised if modern graphics setups (Wayland & suchlike) weren't backwards compatible. Try this final test
Code:
ldd /path/to/compton |grep found
and if that scores hits, that's your problem. You should have no output. I'd search on Ubuntu's website, or this one. Someone is bound to have hit this problem before.
 
Old 09-25-2018, 07:38 AM   #21
Randy4bodhi
Member
 
Registered: Jun 2018
Location: Northeastern Indiana
Distribution: Ubuntu with custom LXDE-GTK & Bodhi Linux
Posts: 83

Original Poster
Rep: Reputation: Disabled
I'm guessing this has something to do with Bodhi, as compton works as expected in straight Ubuntu. Since the Bodhi forums are defunct, this is the place to find other Bodhi users. That is why I posted the question here. To see if other Bodhi users have any issues with compton. Then I can go from there.

I will probably convert an Ubuntu install to Bodhi, and see if it effects compton next. I'm wondering if there is a package missing in Bodhi.

As I posted earlier. I get the same results from the command above in both Bodhi and Ubuntu installs, yet compton works in the Ubuntu install.

But thanks for the help! I'll google and see if I can find the LibGL* Libraries in Ubuntu.
 
Old 09-25-2018, 07:49 AM   #22
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
now that I've seen this compton thing you're asking about, and know little about, as I just run what is installed, and have not messed with compton or anything like it in years. to give shadows and such. this is what I've found.

something called compiz-reloaded
http://www.cupoflinux.com/SBB/index.php/topic,4408.html
https://github.com/compiz-reloaded

might want to take a look at that too while you're at it.
 
Old 09-25-2018, 11:06 AM   #23
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,404

Rep: Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337Reputation: 2337
Quote:
Originally Posted by Randy4bodhi View Post
I'm guessing this has something to do with Bodhi, as compton works as expected in straight Ubuntu. Since the Bodhi forums are defunct, this is the place to find other Bodhi users. That is why I posted the question here. To see if other Bodhi users have any issues with compton. Then I can go from there.

I will probably convert an Ubuntu install to Bodhi, and see if it effects compton next. I'm wondering if there is a package missing in Bodhi.

As I posted earlier. I get the same results from the command above in both Bodhi and Ubuntu installs, yet compton works in the Ubuntu install.

But thanks for the help! I'll google and see if I can find the LibGL* Libraries in Ubuntu.
You're welcome. The things that will narrow it down is not searching for libGL*, imho although I started there. The most logical assumption is that some package was compiled against Mesa, and uses that 'glCheckFramebufferStatus' symbol. libGL* isn't on your system. To find what needs it, you can try grepping for 'glCheckFramebufferStatus', or using 'ldd /path/to/executable |grep found' and if something wants libGL*, that's your problem isolated.
 
Old 09-26-2018, 12:57 AM   #24
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
i now realise op never told us how they installed compton.
 
Old 09-26-2018, 04:00 AM   #25
Randy4bodhi
Member
 
Registered: Jun 2018
Location: Northeastern Indiana
Distribution: Ubuntu with custom LXDE-GTK & Bodhi Linux
Posts: 83

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ondoho View Post
i now realise op never told us how they installed compton.
From the Ubuntu repo, using synaptic or CL apt-get.
 
Old 01-29-2019, 03:22 AM   #26
naughtoloose
LQ Newbie
 
Registered: Feb 2012
Distribution: Bodhi
Posts: 9

Rep: Reputation: Disabled
Did you ever get Compton to work?

Recently installed BL5 resulting in video playback screen tearing problems that I have not been able to fix. I can't seem to get Compton to work on BL5.
 
Old 01-29-2019, 09:02 AM   #27
cordx
Member
 
Registered: Oct 2018
Location: texas
Distribution: bodhi 5.1.0
Posts: 797

Rep: Reputation: 184Reputation: 184
i had screen tearing watching netflix in firefox if that is part of what you are dealing with. i had to change a setting withing firefox and that fixed that particular situation. i can track down the fix if it is something you are dealing with as well.
 
Old 01-29-2019, 09:35 AM   #28
cordx
Member
 
Registered: Oct 2018
Location: texas
Distribution: bodhi 5.1.0
Posts: 797

Rep: Reputation: 184Reputation: 184
i got curious about tracking down the source of my fix so i thought i would include this just in case it might help someone else:

Quote:
So If you’re having trouble with streaming quality in Firefox try this:

In a blank location bar type: “about:config”. You’ll get a warning screen (charmingly about dragons!) and when you proceed a very long list of variables.

Scroll down to “layers.acceleration.force-enabled” and set the value to “true”.
from (15th comment down):

https://itsfoss.community/t/how-real...etflix/1406/15

Last edited by cordx; 01-29-2019 at 09:38 AM. Reason: clarity
 
Old 01-29-2019, 12:50 PM   #29
the_waiter
Bodhi Developer
 
Registered: Jun 2018
Location: Banská Bystrica, Slovakia
Distribution: Bodhi Linux
Posts: 864

Rep: Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665
I solve the tearing issue in FF or GC with compton and it helps

Stefan

EDIT:
@naughtoloose: This is my /.config/compton.conf file I use with compton. Maybe it will help. Also, I have compton enabled after boot in startup applications

https://pastebin.com/jmQPhLqz

Last edited by the_waiter; 01-29-2019 at 01:27 PM.
 
1 members found this post helpful.
Old 01-29-2019, 11:50 PM   #30
naughtoloose
LQ Newbie
 
Registered: Feb 2012
Distribution: Bodhi
Posts: 9

Rep: Reputation: Disabled
@cordx, yes Netflix in FF is part of the problem but also all other video playback options like VLC (none of the available rendering settings help) and graph intensive spreadsheets etc.
every little bit helps though

@the waiter, that helped a lot, not perfect but definitely a great improvement. At least now I see Compton is actually working whereas before there was no noticeable difference between running Compton and nothing.


Thanks a lot both of you

Last edited by naughtoloose; 01-29-2019 at 11:58 PM.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Compton freezes the desktop sevenyears Linux Mint 1 01-24-2018 07:03 PM
[SOLVED] Compton Compositions RafaBR Slackware 8 11-24-2016 07:01 AM
[SOLVED] Icewm and compton GreenFireFly Slackware 8 02-27-2015 03:28 PM
[SOLVED] Weird issue with compton moisespedro Slackware 10 04-21-2014 04:47 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Bodhi

All times are GMT -5. The time now is 04:58 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration