Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Karmic dual monitors now assigns second monitor as primary

  1. #1
    Join Date
    Nov 2009
    Beans
    1

    Karmic dual monitors now assigns second monitor as primary

    Hi

    Jaunty set up my dual monitors out of the box without me having to lift a finger.

    In Karmic my second (vga) monitor is assigned as the primary with the launch bar and dock appearing there, which is a little annoying as i have to keep both monitors on even if I only need one.

    Anyone know what has changed between releases to cause this and know how I can solve it?

    I've seen similar problems listed for nvidia cards, the solution was to issue twinview specific commands in xorg.conf to assign the primary monitor to the dvi output. Anyone know if a way i can do this for ati?

    I tried installing fglrx and the proprietry drivers from the ati site, both resulted in blank screens after login.

    Code:
    lspci | grep VGA
    
    01:00.0 VGA compatible controller: ATI Technologies Inc RV535 [Radeon X1650 Series] (rev 9e)

  2. #2
    Join Date
    Feb 2008
    Location
    High Peak
    Beans
    1

    Re: Karmic dual monitors now assigns second monitor as primary

    I am also disappointed. Jaunty worked just fine, but now having installed Karmic, not only has my dual screen setup been forgotten, but "Configure Display Settings" does not do what it should do. Not as if I'm using any different hardware -- nothing has changed on that front. I seem to be stuck with mirrored screens.

  3. #3
    Join Date
    Apr 2008
    Beans
    11

    Re: Karmic dual monitors now assigns second monitor as primary

    Hi, I use Samsung NC10 and sometimes plug an external monitor for a dual-monitor setup. After an upgrade to Karmic my monitor switching scripts stopped working. Luckily, the fix was easy. First of all, correct names of outputs in the xrandr command, i.e. VGA to VGA1 and LVDS to LVDS1. Second, explicitly choose the external monitor as the primary one (see below).
    For dual-monitor with the external as the primary one:
    Code:
    xrandr --output VGA1 --primary
    xrandr --output VGA1 --auto --pos 0x0 --output LVDS1 --auto --below VGA1
    For going back to the laptop screen only:
    Code:
    xrandr --output VGA1 --off --output LVDS1 --auto
    For convenience I run these commands in scripts with assigned keyboard shortcuts (see how to assign shortcuts here).

  4. #4
    Join Date
    Apr 2006
    Beans
    1

    Re: Karmic dual monitors now assigns second monitor as primary

    Thanks seventeener!

    I was wondering how to do exactly that!

  5. #5
    Join Date
    Oct 2009
    Beans
    27

    Re: Karmic dual monitors now assigns second monitor as primary

    Thanks for the instructions. This worked PERFECTLY for me.

  6. #6
    Join Date
    May 2008
    Beans
    6

    Re: Karmic dual monitors now assigns second monitor as primary

    I had a similar problem with my dual monitor setup that I solved. One screen was connected to DVI and the other to VGA. Use the following to figure out what each screen is called:

    Code:
    xrandr --prop
    You should see something like VGA-1 or DVI-D-1. Do the following to set the primary screen:

    Code:
    xrandr --output DVI-D-1 --primary
    Replacing DVI-D-1 with whichever screen you want as the primary.

  7. #7
    Join Date
    Oct 2009
    Beans
    14

    Smile Re: Karmic dual monitors now assigns second monitor as primary

    Thanks, the solution is great. Putting this in the monitor control panel is a registered idea here: http://brainstorm.ubuntu.com/idea/17526/ and can be voted for.

  8. #8
    Join Date
    Sep 2009
    Location
    Bangkok, Thailand
    Beans
    228
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Karmic dual monitors now assigns second monitor as primary

    Quote Originally Posted by seventeener View Post
    Hi, I use Samsung NC10 and sometimes plug an external monitor for a dual-monitor setup. After an upgrade to Karmic my monitor switching scripts stopped working. Luckily, the fix was easy. First of all, correct names of outputs in the xrandr command, i.e. VGA to VGA1 and LVDS to LVDS1. Second, explicitly choose the external monitor as the primary one (see below).
    For dual-monitor with the external as the primary one:
    Code:
    xrandr --output VGA1 --primary
    xrandr --output VGA1 --auto --pos 0x0 --output LVDS1 --auto --below VGA1
    For going back to the laptop screen only:
    Code:
    xrandr --output VGA1 --off --output LVDS1 --auto
    For convenience I run these commands in scripts with assigned keyboard shortcuts (see how to assign shortcuts here).
    That worked fine for me in Maverick. Thanks!

  9. #9
    Join Date
    Jan 2011
    Beans
    2

    Question Re: Karmic dual monitors now assigns second monitor as primary

    How can one make this permanent. After I execute this, it works, but after logging out and back in, it's back to how it was.

    Until Ubuntu coders pull their heads out of their, ummm, ASCII terminals and see that at least 98% of computer users use GUI and put this into the monitor setup, we'll have to do it the hard way.

  10. #10
    Join Date
    Nov 2005
    Location
    Manitoba, Canada
    Beans
    457
    Distro
    Ubuntu 13.10 Saucy Salamander

    Re: Karmic dual monitors now assigns second monitor as primary

    Quote Originally Posted by seventeener View Post
    Hi, I use Samsung NC10 and sometimes plug an external monitor for a dual-monitor setup. After an upgrade to Karmic my monitor switching scripts stopped working. Luckily, the fix was easy. First of all, correct names of outputs in the xrandr command, i.e. VGA to VGA1 and LVDS to LVDS1. Second, explicitly choose the external monitor as the primary one (see below).
    For dual-monitor with the external as the primary one:
    Code:
    xrandr --output VGA1 --primary
    xrandr --output VGA1 --auto --pos 0x0 --output LVDS1 --auto --below VGA1
    For going back to the laptop screen only:
    Code:
    xrandr --output VGA1 --off --output LVDS1 --auto
    For convenience I run these commands in scripts with assigned keyboard shortcuts (see how to assign shortcuts here).
    good on ya mate wrote my scripts worked great

    also promoted the solution to this problem on ubuntu brain storm

    http://brainstorm.ubuntu.com/idea/17526/

Page 1 of 2 12 LastLast

Tags for this Thread

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
  •