Find the answer to your Linux question:
Results 1 to 7 of 7
Hey, When I try to play video (or run the video part of the test in "Hardware Testing"), I get red flashing on the screen, either being the whole screen ...
  1. #1
    Just Joined!
    Join Date
    Jul 2009
    Location
    Canberra, Australia
    Posts
    4

    red flashing when playing video

    Hey,

    When I try to play video (or run the video part of the test in "Hardware Testing"), I get red flashing on the screen, either being the whole screen flashing or flashing in blocks. I a using a GeForce 9600M GT.

    Any ideas? I have tried reinstalling drivers, as well as video players / codecs and nothing seems to have any affect. Sometimes I think it has stopped, then the next time I reboot it will start doing it again. I don't have the problem in Windows so I assume its not a hardware issue.

    Cheers,

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi and Welcome !

    Execute this
    Code:
    sudo lspci | grep -i  vga
    Post output here.
    Post the contents of /etc/X11/xorg.conf file here.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Jul 2009
    Location
    Canberra, Australia
    Posts
    4
    Thanks for the welcome and the quick reply! I've only been using linux a few months, but definitely enjoying the change, albeit the minor growing pains

    Here is the lspci output:
    01:00.0 VGA compatible controller: nVidia Corporation GeForce 9600M GT (rev a1)

    Here is the data from X11:
    # xorg.conf (X.Org X Window System server configuration file)
    #
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    #
    # Edit this file with caution, and see the xorg.conf manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    #
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    #
    # Note that some configuration settings that could be done previously
    # in this file, now are automatically configured by the server and settings
    # here are ignored.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    # sudo dpkg-reconfigure -phigh xserver-xorg

    Section "Monitor"
    Identifier "Configured Monitor"
    EndSection

    Section "Screen"
    Identifier "Default Screen"
    Monitor "Configured Monitor"
    Device "Configured Video Device"
    DefaultDepth 24
    EndSection

    Section "Module"
    Load "glx"
    EndSection

    Section "Device"
    Identifier "Configured Video Device"
    Driver "nvidia"
    Option "NoLogo" "True"
    EndSection


    Cheers for the help!

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Edit xorg.conf file :
    Code:
    Section "Module"
    Load "glx"
    EndSection
    
    Section "Device"
    Identifier "Configured Video Device"
    Driver "nvidia"
    Option "NoLogo" "True"
    EndSection
    
    Section "Monitor"
    	Identifier	"Configured Monitor"
    	Option		"DPMS"
    	HorizSync	30-71
    	VertRefresh	50-160
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Device		"Configured Video Device"
    	Monitor		"Configured Monitor"
    	DefaultDepth	24
    	SubSection "Display"
    		Depth		24
    		Modes		"1280x1024" "1024x768" 
    	EndSubSection
    EndSection
    Save file and reboot machine.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Jul 2009
    Location
    Canberra, Australia
    Posts
    4
    Hi, thanks for the help, but now my screen is permanently in 1024x768, when it is meant to be in 1440x900, basically it looks like ****! Every time I reboot it resets to 1024x768. What should I change?

    Cheers

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Add 1440x900 resolution in Modes line.

    Code:
    		Modes		"1440x900" "1280x1024" "1024x768"
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  7. #7
    Just Joined!
    Join Date
    Jul 2009
    Location
    Canberra, Australia
    Posts
    4
    Cheers, I thought thats what I might need to do!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...