LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 11-20-2016, 01:57 PM   #1
weinerwad3000
Member
 
Registered: Aug 2013
Posts: 62

Rep: Reputation: Disabled
Nvidia tearing/cinnamon crashes


I've been having the screen tearing issue, but only on my tv when hooked up through HDMI. I followed this guide https://iwf1.com/finally-nvidia-tear...sue-fix-found/ to fix the problem.

My conf file is confusing so when I set it up like this

Code:
Section "Device"
    Identifier "intel"
    Driver "intel"
    BusID "PCI:0@0:2:0"
    Option "AccelMethod" "SNA"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce GTX 660M"
    BusID "PCI:1@0:0:0"
    Option "ConstrainCursor" "off"
    Option "RegistryDwords" "PerfLevelSrc=0x2233"
    Option "TripleBuffer" "True"
EndSection
I get no screen tearing but cinnamon desktop crashes.

When I set it up like this

Code:
Section "Device"
    Identifier "intel"
    Driver "intel"
    BusID "PCI:0@0:2:0"
    Option "AccelMethod" "SNA"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:1@0:0:0"
    Option "ConstrainCursor" "off"
EndSection
The desktop doesn't crash, but I get the tearing. Any idea how I can keep the desktop from crashing but also have no tearing?
 
Old 11-20-2016, 05:41 PM   #2
weinerwad3000
Member
 
Registered: Aug 2013
Posts: 62

Original Poster
Rep: Reputation: Disabled
I added the

Code:
    Option "RegistryDwords" "PerfLevelSrc=0x2233"
    Option "TripleBuffer" "True"
part to the end of the second device section on the second conf file and I still get tearing but no desktop crash. My guess is that I'm getting the crash when I change Identifier "nvidia" to Identifier "Device0"
 
Old 02-01-2017, 12:07 AM   #3
dave67
Member
 
Registered: Apr 2007
Posts: 419

Rep: Reputation: 67
Old post i know. But mint which i am using as a driver installer was this used for your nivdia card? If not how was this driver installed?
 
Old 02-01-2017, 12:22 AM   #4
dave67
Member
 
Registered: Apr 2007
Posts: 419

Rep: Reputation: 67
Ok try this link but first reset the configuration file above as it was before you made any changes, right column number 6. Than 6.1.

https://sites.google.com/site/easyli...visual-effects
 
Old 02-04-2017, 11:22 AM   #5
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063
Quote:
Originally Posted by dave67 View Post
Old post i know.
Yeah, just seen it here myself.

I have had the screen tearing problem myself and I only add the triplebuffer option to xorg.conf Which fixes the screen tearing problem, so I can only guess that the following *might* have something to do with it.


Code:
Option "RegistryDwords" "PerfLevelSrc=0x2233"
This is the config for my xorg.conf

Code:
# File generated by XFdrake (rev 262502)

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 352.63  (tex@localhost.localdomain)  Thu Dec 10 13:19:19 CST 2015

# File generated by XFdrake (rev 262502)
# **********************************************************************
# Refer to the xorg.conf man page for details about the format of
# this file.
# **********************************************************************

Section "ServerLayout"
    Identifier "layout1"
    InputDevice "Keyboard0" "CoreKeyboard"
    Screen "screen1" 0 0
EndSection

Section "Module"
    Load "v4l" # Video for Linux
    Load "glx"
EndSection

Section "ServerFlags"
    Option "DontZap" "False" # disable <Ctrl><Alt><BS> (server abort)
    
    # allows the server to start up even if the mouse does not work
    #DontZoom # disable <Ctrl><Alt><KP_+>/<KP_-> (resolution switching)
    Option "allowmouseopenfail"
EndSection

Section "InputDevice"
    # generated from data in "/etc/sysconfig/keyboard"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
EndSection

Section "Monitor"
    # TV fullscreen mode or DVD fullscreen output.
    # 768x576 @ 79 Hz, 50 kHz hsync
    Identifier "monitor1"
    VendorName "Plug'n Play"
    ModeLine "768x576" 50.00 768 832 846 1000 576 590 595 630
    ModeLine "768x576" 63.07 768 800 960 1024 576 578 590 616
EndSection

Section "Device"
    Identifier "device1"
    VendorName "NVIDIA Corporation"
    BoardName "NVIDIA GeForce 420 series and later"
    Driver "nvidia"
    Option "TripleBuffer" "True"
EndSection

Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultDepth 24
    
    Subsection "Display"
        Depth 24
        Modes "1366x768" "1200x720" "nvidia-auto-select"
    EndSubsection
    Option "DynamicTwinView" "false"
    Option "DPMS"
    Option "AddARGBGLXVisuals"
EndSection
 
Old 02-05-2017, 06:05 AM   #6
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
Quote:
Originally Posted by weinerwad3000 View Post
I followed this guide https://iwf1.com/finally-nvidia-tear...sue-fix-found/ to fix the problem.
every guide that promises to have found a "final" and alround "fix" for anything is to be viewed with utmost suspicion.

by now this thread is getting a little confused - 3 posters with similar problems - please each (even op) please open a new thread and start with providing some real info this time.
 
Old 02-05-2017, 08:03 AM   #7
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063
Quote:
Originally Posted by ondoho View Post
every guide that promises to have found a "final" and alround "fix" for anything is to be viewed with utmost suspicion.

by now this thread is getting a little confused - 3 posters with similar problems - please each (even op) please open a new thread and start with providing some real info this time.
I was talking about weinerwad3000's problem, I have already fixed my own screen tearing issues. I just thought given the code below, that once again *might* have something to do with weinerwad3000's problem.

Code:
Option "RegistryDwords" "PerfLevelSrc=0x2233"
I'm not sure what dave67 is talking about though? Maybe we need a mod??

Haven't read the guide but

Last edited by jsbjsb001; 02-05-2017 at 08:04 AM. Reason: forgot code
 
Old 02-05-2017, 10:25 AM   #8
dave67
Member
 
Registered: Apr 2007
Posts: 419

Rep: Reputation: 67
Lol no mod read the webpage it is all there. If you do not need it than skip it.
 
  


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
LXer: Got tearing with proprietary NVIDIA? Try this. LXer Syndicated Linux News 0 02-13-2016 10:31 PM
[SOLVED] Nvidia vs ATI and tearing bucovaina78 Linux - Desktop 17 11-15-2015 12:40 AM
Screen tearing with Nvidia FX 570M layr Linux - Laptop and Netbook 6 02-18-2012 05:53 AM
Nvidia Screen tearing with Xv kryptobs2000 Linux - Software 0 01-15-2008 09:57 AM
nVidia GL Tearing FLOODS Fedora 1 04-09-2005 10:04 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 11:20 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