Results 1 to 8 of 8

Thread: 2nd monitor does not dispaly

  1. #1
    Join Date
    Dec 2008
    Beans
    140

    2nd monitor does not dispaly

    Hello just installed Kubuntu on a dell laptop everything is fine I attached a external monitor....and went to configure dislpay to try and enable it but it never comes on I tell it to set the VGA0 resolution and it applies the settings but it never comes on.....is there something else i need to do...

    thanks

  2. #2
    Join Date
    Jan 2009
    Location
    South Carolina
    Beans
    Hidden!
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: 2nd monitor does not dispaly

    There should be a button on your keyboard, I think F4 or something that has a picture of a monitor on it. Press fn and then press that and maybe it will work. You may have to push it a couple of times though.

  3. #3
    Join Date
    Dec 2008
    Beans
    140

    Re: 2nd monitor does not dispaly

    F8 is the CRT/LCD button but it does not work i tried that earlier.

  4. #4
    Join Date
    Mar 2006
    Location
    Saint Petersburg, FL
    Beans
    1,123

    Re: 2nd monitor does not dispaly

    Quote Originally Posted by luke0927 View Post
    Hello just installed Kubuntu on a dell laptop everything is fine I attached a external monitor....and went to configure dislpay to try and enable it but it never comes on I tell it to set the VGA0 resolution and it applies the settings but it never comes on.....is there something else i need to do...

    thanks
    Which drivers are you using?
    For those new to Ubuntu most of your answers can be found at help.ubuntu.com or ubuntuguide.org

  5. #5
    Join Date
    Dec 2008
    Beans
    140

    Re: 2nd monitor does not dispaly

    I have not loaded any other drivers i thougt it was fine since my LCD display was fine...its a standard intel integrated laptop video card......any commands i can run to show anyone to help me figure out if is should load a different driver?

  6. #6
    Join Date
    Jul 2005
    Beans
    18

    Re: 2nd monitor does not dispaly

    I got my secondary display to work (a SD TV on tv-out) on a nvidia graphics card, but it was necessary to use the nvidia-settings program first, which configured the Xorg settings for the second display (easier than doing it manually, although that works too).

    Inside KDE 4.x.x the display settings program (system settings->display) does nothing - it just crashes the whole system settings application.

    So, what programs have you tried to use to set up the secondary screen? Maybe try googling up some info on a more basic way to set up the screen with intel drivers?

    Oh and yes, one more observation - on a laptop with an old ati card, the secondary display wasn't detected if it was plugged in after the laptop booted. Only when connecting it while the laptop was powered off, did it come up while booting.

    Hope this helps somewhat.

  7. #7
    Join Date
    Mar 2009
    Beans
    4

    Re: 2nd monitor does not dispaly

    I'm using a dell Inspiron 1525 laptop with Ubuntu and ran into largely the same problem as you. The solution for me involved altering my xorg.conf file.

    The main issue seemed to be setting the virtual screen size...before I did that, the external monitor would not do anything.

  8. #8
    Join Date
    Mar 2009
    Beans
    4

    Re: 2nd monitor does not dispaly

    Code:
    Section "Device"
    	Identifier	"Configured Video Device"
    	Driver		"intel"
    	Option		"monitor-VGA" "laptop"
    	Option		"monitor-LVDS" "external"
    EndSection
    
    Section "Monitor"
    	Identifier	"laptop"
    	Option		"PreferredMode" "1024x768"
    EndSection
    
    Section "Monitor"
    	Identifier	"external"
    	Option		"PreferredMode"	"1024x768"
    	Option		"LeftOf"	"laptop"
    	#Option		"Enable"	"true"
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Monitor		"laptop"
    	Device		"Configured Video Device"
    	DefaultDepth	24
    	SubSection "Display"
    		Depth		24
    		Virtual		2048 768
    	EndSubSection
    EndSection
    This is part of the altered xorg.conf...the main section I had to fix was the "Screen" section. Set the virtual screen size to the sum of your two resolutions in both the x and y directions. Unfortunately, some issue results in my hardware only supporting 2048 X 2048... So there's the possibility that you can run into the same issue. Otherwise you should be able to go up to 4096 if I remember correctly.

Bookmarks

Posting Permissions

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