Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 18
I just installed Debian stable on my desktop computer and when I start it up I get a blank screen that says cannot display video in this mode. How can ...
  1. #1
    Just Joined!
    Join Date
    Mar 2010
    Posts
    9

    Cannot Display Video In this Mode



    I just installed Debian stable on my desktop computer and when I start it up I get a blank screen that says cannot display video in this mode. How can I fix this problem?

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

    Display is not configured correctly. Which Graphics Card do you have? Press Alt+Ctrl+F3. Does it switch to command line mode?
    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
    Mar 2010
    Posts
    9
    I have a ATI Radeon 4350 HD video card. I can switch to the command line.

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,308
    You have to install ATI Proprietary driver. First of all, try Generic Driver to load GUI correctly.
    Press Alt+Ctrl+F3, login there and execute this
    Code:
    su -
    dpkg-reconfigure xserver-xorg
    Reconfigure display settings and execute shutdown -r now to 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
    Mar 2010
    Posts
    9
    when I type in that code I just get keyboard settings nothing to do with the video card.

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,308
    Check the contents of /etc/X11/xorg.conf file. Is there Section Video Device configure or its an empty file?
    Code:
    less /etc/X11/xorg.conf
    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
    Mar 2010
    Posts
    9
    There is a section that says configured video device

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,308
    Alright. Edit xorg.conf file and set Driver "vesa" in that section. Save file and reboot machine.
    Code:
    su -
    nano /etc/X11/xorg.conf
    Code:
    Section Device
    Identifier "Configured Video Card"
    Driver "vesa"
    EndSection
    Press Ctrl+X, Y and hit Enter key to save file. You can use any other editor instead of nano.

    Reboot machine.
    Code:
    shutdown -r now
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  9. #9
    Just Joined!
    Join Date
    Mar 2010
    Posts
    9
    After I did that I still get the same error.

  10. #10
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,308
    Replace xorg.conf file with this :
    Code:
    Section "Device"
    	Identifier	"Configured Video Device"
    	Driver		"vesa"
    EndSection
    
    Section "Monitor"
    	Identifier	"Generic Monitor"
    	Option		"DPMS"
    	HorizSync	30-71
    	VertRefresh	50-160
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Device		"Configured Video Device"
    	Monitor		"Generic Monitor"
    	DefaultDepth	24
    	SubSection "Display"
    		Depth		24
    		Modes		"1280x1024" "1024x768" 
    	EndSubSection
    EndSection
    
    Section "ServerLayout"
    	Identifier	"Default Layout"
    	Screen		"Default Screen"
    	InputDevice	"Generic Keyboard"
    	InputDevice	"Generic Mouse"
    EndSection
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Page 1 of 2 1 2 LastLast

Posting Permissions

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