Single screen KVM with dual screen setup

So here's the deal. I have dual 20" cinema displays hooked up to my Quad. I took one of the displays and hooked it up to my IOGear DVI KVM (http://www.iogear.com/main.php?loc=product&Item=GCS1764) so that that display could be shared with my Powerbook G4 and my Core Duo MacMini. However, when I change ports on the KVM, the secondary display "disappears" from the PowerMac and it starts freaking out. Sometimes it will just try to detect the screen (constant signal flickering) for a minute and then give up and operate as a single screen system but most of the time it tries to detect the screen for 2+ minutes until it just crashes the whole computer and then I have to reboot the PowerMac.
Any ideas?

Removing pin 16 on the DVI cable to the PoweMac might help. See the last item in: <http://www.gefen.com/kvm/support/faq/>

Similar Messages

  • Full screen mode with dual screen

    I have a Macbook Pro and use a second screen. I do like the new full screen feature but the app (safari, chrome, opera, firefox etc...) will only full screen with the primary screen (macbook screen). Really defeats the point of having two screens and having the full screen feature combined.
    Any resolutions or is there a new update coming?
    In Summary:
    Full screen mode will only work on your primary monitor  and not a separate screen. Please help.

    Known issue.
    Hopefully, it'll be fixed in a future update.

  • Is it possible to connect my mid 2010 Macbook Pro with my 21.5" iMac 11,2 so that I can work with dual screens?

    Is it possible to connect my mid 2010 Macbook Pro with my 21.5" iMac 11,2 so that I can work with dual screens?

    try xxx - may work
    _may_ work.

  • Xmonad with dual screen strange bug or feature !

    Hi,
    I am running xmonad with dual screen. The strange thing (bug or feature) I noticed that when I move a window to another screen and then try to change the workspace, the window moves along to the same workspace but lands on the other screen.
    Is there any way to switch off this feature. I googled a bit and replaced the greedyView parameter with view but it didn't help.
    regards,
    Hardik

    Here is my  xmonad.hs
    import XMonad
    import System.Exit
    import qualified XMonad.StackSet as W
    import qualified Data.Map as M
    import XMonad.Util.Run
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.ManageDocks
    import XMonad.Layout.NoBorders
    import XMonad.Hooks.SetWMName
    import XMonad.Hooks.ManageHelpers (isFullscreen, doFullFloat, doCenterFloat)
    import XMonad.Layout.Tabbed
    import System.IO
    -- -xos4-terminus-medium-r-*-*-14-*-*-*-*-*-*-*
    myLauncher :: String
    myLauncher = "`dmenu_path | dmenu -fn '-xos4-terminus-medium-r-*-*-14-*-*-*-*-*-*-*' -nb '#303030' -nf '#959595' -sf '#FFFFFF' -sb '#606060'`"
    myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
    [ ((modMask .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
    , ((modMask, xK_p ), spawn myLauncher)
    , ((modMask .|. shiftMask, xK_c ), kill)
    , ((mod4Mask .|. controlMask, xK_Down ), spawn "/home/hardik/bin/decrease-aumix-vol.sh")
    , ((0 , 0x1008ff11 ), spawn "/home/hardik/bin/decrease-aumix-vol.sh")
    , ((mod4Mask .|. controlMask, xK_Up ), spawn "/home/hardik/bin/increase-aumix-vol.sh")
    , ((0 , 0x1008ff13 ), spawn "/home/hardik/bin/increase-aumix-vol.sh")
    , ((mod4Mask .|. controlMask, xK_m ), spawn "/home/hardik/bin/toggle-aumix-mute.sh")
    , ((0 , 0x1008ff12 ), spawn "/home/hardik/bin/toggle-aumix-mute.sh")
    , ((modMask, xK_space ), sendMessage NextLayout)
    , ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
    , ((modMask, xK_n ), refresh)
    , ((modMask, xK_Tab ), windows W.focusDown)
    , ((modMask, xK_j ), windows W.focusDown)
    , ((modMask, xK_k ), windows W.focusUp )
    , ((modMask, xK_m ), windows W.focusMaster )
    , ((modMask, xK_Return), windows W.swapMaster)
    , ((modMask .|. shiftMask, xK_j ), windows W.swapDown )
    , ((modMask .|. shiftMask, xK_k ), windows W.swapUp ) , ((modMask, xK_h ), sendMessage Shrink) , ((modMask, xK_l ), sendMessage Expand)
    , ((modMask, xK_t ), withFocused $ windows . W.sink)
    , ((modMask , xK_comma ), sendMessage (IncMasterN 1))
    , ((modMask , xK_period), sendMessage (IncMasterN (-1)))
    , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
    -- , ((modMask , xK_q ), restart "xmonad" True)
    , ((modMask , xK_q ), spawn "killall conky dzen2 && xmonad --recompile && xmonad --restart")
    , ((modMask .|.shiftMask .|. controlMask , xK_c ), spawn "emacs ~/.xmonad/xmonad.hs")
    , ((modMask .|. controlMask , xK_l ), spawn "xscreensaver-command -lock")
    , ((modMask .|. controlMask , xK_k ), spawn "python ~/pythonScripts/SwitchKbLayoutDesk/src/setNextKbLayout.py")
    , ((modMask , xK_b ), sendMessage ToggleStruts)
    ++
    [((m .|. controlMask, k), windows $ f i)
    | (i, k) <- zip (XMonad.workspaces conf) [xK_F1 .. xK_F4]
    , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
    -- , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
    ++
    -- mod-{w,e,r}, Switch to physical/Xinerama screens 1, 2, or 3
    -- mod-shift-{w,e,r}, Move client to screen 1, 2, or 3
    [((m .|. modMask, key), screenWorkspace sc >>= flip whenJust (windows . f))
    | (key, sc) <- zip [xK_w, xK_e] [0..]
    , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
    myMouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList $
    [ ((modMask, button1), (\w -> focus w >> mouseMoveWindow w))
    , ((modMask, button2), (\w -> focus w >> windows W.swapMaster))
    , ((modMask, button3), (\w -> focus w >> mouseResizeWindow w))
    myLayouts = tiled ||| Mirror tiled ||| noBorders Full ||| simpleTabbedBottom
    where
    tiled = Tall 1 (2/100) (1/2)
    myManageHook = composeAll
    [ className =? "MPlayer" --> doFloat
    , className =? "Gimp" --> doFloat
    , className =? "Gimp" --> doFloat
    , className =? "IDEA" --> doFloat
    , resource =? "desktop_window" --> doIgnore
    , isFullscreen --> doFullFloat ]
    myStartupHook :: X ()
    myStartupHook = do
    setWMName "LG3D"
    spawn "xset -b"
    spawn "xrdb -load ~/.Xdafaults"
    spawn "xscreensaver -no-splash"
    spawn "numlockx on"
    spawn "eval `cat $HOME/.fehbg`"
    spawn "conky -c ~/.conkyrc_dzen | dzen2 -ta r -x 600 -bg '#303030' -fn '-*-lucida-*-*-normal-*-12-*-*-*-*-*-*-*' &"
    spawn "conky &"
    -- spawn "conky -c ~/.conkyrc_time &"
    shortened :: Int -> String -> String
    shortened n xs | length xs < n = xs
    | otherwise = (take ( n - length end) xs) ++ end
    where
    end = "..."
    main = do
    h <- spawnPipe "dzen2 -w 600 -ta l -fn ' -*-lucida-*-*-normal-*-12-*-*-*-*-*-*-*' -bg '#303030' -fg '#FFFFFF'"
    xmonad $ defaultConfig {
    terminal = "urxvt",
    focusFollowsMouse = True,
    borderWidth = 1,
    modMask = mod1Mask,
    workspaces = [" console "," dev "," misc "," browser "],
    normalBorderColor = "#303030",
    focusedBorderColor = "#55BBFF",
    keys = myKeys,
    mouseBindings = myMouseBindings,
    layoutHook = avoidStruts $ smartBorders myLayouts,
    manageHook = myManageHook <+> manageDocks,
    startupHook = myStartupHook,
    logHook = dynamicLogWithPP $ defaultPP {
    ppCurrent = wrap "^fg(#FFFFFF)^bg(#606060)" "^fg()^bg()"
    ,ppVisible = wrap "^fg(#FFFFFF)^bg()" "^fg()^bg()"
    ,ppHidden = wrap "^fg(#55BBFF)^bg()" "^fg()^bg()"
    ,ppHiddenNoWindows = wrap "^fg(#808080)^bg()" "^fg()^bg()"
    ,ppUrgent = wrap "^fg(#FF0000)^bg()" "^fg()^bg()"
    ,ppTitle = \x -> if null x
    then ""
    else "< ^fg(#FFFFFF)^bg()" ++ shortened 23 x ++ "^fg()^bg() >"
    ,ppLayout = \x -> "^fg(#FFBB00)^bg()"
    ++ case x of
    "Tall" -> "Tiled"
    "Full" -> "Full"
    "Mirror Tall" -> "Tiled Bottom"
    "Tabbed Bottom Simplest" -> "Tabbed"
    _ -> x
    ++ "^fg()^bg()"
    ,ppSep = " "
    ,ppWsSep = ""
    ,ppOutput = hPutStrLn h
    Last edited by rangalo (2010-04-22 14:52:13)

  • How do I play a video in full-screen mode on one screen of a dual-screen Windows 7 system without blanking out the other screen?

    How do I play a video in full-screen mode on one screen of a dual-screen Windows 7 system without blanking out the other screen?  Not losing the other screen would be useful as I would like to, for example, monitor my emails whilst watching a video or to work on a project whilst watching an instructional video.
    Note : Resizing a window to fill the screen is not acceptable as it still leaves unsightly borders.

    bump

  • Problems with dual screens

    I am running an iMac 3.06 GHz, 4 GB RAM, 512 VRAM. I also use an external monitor connected via HDMI. When I run Color using dual screens the picture shows almost only black, and what isn't black is so saturated I can barely discern what the picture is. Does anyone know why this is happening and/or how I can fix it?

    I'm not sure Color works properly with monitors connected in that manner. Color isn't accurate without proper monitoring, and you can't get proper monitoring with an iMac. By proper monitoring I mean an HDTV or broadcast monitor being fed a VIDEO signal via a hardware capture card (AJA, Decklink, Matrox). You can't get capture cards to work on iMacs, therefore you cannot properly monitor a video signal.
    The display in the Color interface is not accurate at all. It is just a reference to see what frame you are on. It isn't designed to be used to judge the quality of the image. It has a much higher gamma (midrange) than is seen on the external monitor.
    I'm assuming the monitor you are using is being fed a converted HDMI signal...converted from the DVI or Mini Display port on the computer. Well, that is a computer signal...not a video one. There's a difference. So this setup will not work...not with Color.
    Sorry,
    Shane

  • Any one help me with dual screen?

    I am trying to get my LCD monitor work, which is plugged in VGA.
    However, when i using "xrandr --output VGA --auto" to set it up, i get this failure "xrandr: cannot find crtc for output VGA"
    i am using intel graphic card, and the result of "xrandr -q --verbose" is as follows,
    Screen 0: minimum 320 x 200, current 1440 x 900, maximum 2960 x 1024
    VGA connected (normal left inverted right x axis y axis)
    Identifier: 0x3b
    Timestamp: 1278799
    Subpixel: unknown
    Clones:
    CRTCs: 0 1
    1360x768 (0x41) 84.8MHz -HSync +VSync
    h: width 1360 start 1432 end 1568 total 1776 skew 0 clock 47.7KHz
    v: height 768 start 771 end 781 total 798 clock 59.8Hz
    1152x864 (0x48) 81.6MHz -HSync +VSync
    h: width 1152 start 1216 end 1336 total 1520 skew 0 clock 53.7KHz
    v: height 864 start 865 end 868 total 895 clock 60.0Hz
    1024x768 (0x4c) 65.0MHz -HSync -VSync
    h: width 1024 start 1048 end 1184 total 1344 skew 0 clock 48.4KHz
    v: height 768 start 771 end 777 total 806 clock 60.0Hz
    800x600 (0x51) 40.0MHz +HSync +VSync
    h: width 800 start 840 end 968 total 1056 skew 0 clock 37.9KHz
    v: height 600 start 601 end 605 total 628 clock 60.3Hz
    640x480 (0x56) 25.2MHz -HSync -VSync
    h: width 640 start 656 end 752 total 800 skew 0 clock 31.5KHz
    v: height 480 start 490 end 492 total 525 clock 59.9Hz
    1440x900 (0x3f) 101.6MHz
    h: width 1440 start 1488 end 1520 total 1824 skew 0 clock 55.7KHz
    v: height 900 start 903 end 909 total 926 clock 60.2Hz
    LVDS connected 1440x900+0+0 (0x3f) normal (normal left inverted right x axis y axis) 0mm x 0mm
    Identifier: 0x3c
    Timestamp: 1278799
    Subpixel: horizontal rgb
    Clones:
    CRTC: 1
    CRTCs: 1
    PANEL_FITTING: full
    supported: center full_aspect full
    BACKLIGHT_CONTROL: kernel
    supported: native legacy combination kernel
    BACKLIGHT: 15 (0x0000000f) range: (0,15)
    1440x900 (0x3f) 101.6MHz *current +preferred
    h: width 1440 start 1488 end 1520 total 1824 skew 0 clock 55.7KHz
    v: height 900 start 903 end 909 total 926 clock 60.2Hz
    1440x900 (0x40) 106.5MHz -HSync +VSync
    h: width 1440 start 1520 end 1672 total 1904 skew 0 clock 55.9KHz
    v: height 900 start 903 end 909 total 934 clock 59.9Hz
    1360x768 (0x41) 84.8MHz -HSync +VSync
    h: width 1360 start 1432 end 1568 total 1776 skew 0 clock 47.7KHz
    v: height 768 start 771 end 781 total 798 clock 59.8Hz
    1152x864 (0x42) 143.5MHz -HSync +VSync
    h: width 1152 start 1232 end 1360 total 1568 skew 0 clock 91.5KHz
    v: height 864 start 865 end 868 total 915 clock 100.0Hz
    1152x864 (0x43) 121.5MHz +HSync -VSync
    h: width 1152 start 1216 end 1344 total 1568 skew 0 clock 77.5KHz
    v: height 864 start 865 end 868 total 911 clock 85.1Hz
    1152x864 (0x44) 119.7MHz -HSync +VSync
    h: width 1152 start 1224 end 1352 total 1552 skew 0 clock 77.1KHz
    v: height 864 start 865 end 868 total 907 clock 85.0Hz
    1152x864 (0x45) 108.0MHz +HSync +VSync
    h: width 1152 start 1216 end 1344 total 1600 skew 0 clock 67.5KHz
    v: height 864 start 865 end 868 total 900 clock 75.0Hz
    1152x864 (0x46) 105.0MHz -HSync +VSync
    h: width 1152 start 1224 end 1352 total 1552 skew 0 clock 67.6KHz
    v: height 864 start 865 end 868 total 902 clock 75.0Hz
    1152x864 (0x47) 96.8MHz -HSync +VSync
    h: width 1152 start 1224 end 1344 total 1536 skew 0 clock 63.0KHz
    v: height 864 start 865 end 868 total 900 clock 70.0Hz
    1152x864 (0x48) 81.6MHz -HSync +VSync
    h: width 1152 start 1216 end 1336 total 1520 skew 0 clock 53.7KHz
    v: height 864 start 865 end 868 total 895 clock 60.0Hz
    1024x768 (0x49) 94.5MHz +HSync +VSync
    h: width 1024 start 1072 end 1168 total 1376 skew 0 clock 68.7KHz
    v: height 768 start 769 end 772 total 808 clock 85.0Hz
    1024x768 (0x4a) 78.8MHz +HSync +VSync
    h: width 1024 start 1040 end 1136 total 1312 skew 0 clock 60.0KHz
    v: height 768 start 769 end 772 total 800 clock 75.0Hz
    1024x768 (0x4b) 75.0MHz -HSync -VSync
    h: width 1024 start 1048 end 1184 total 1328 skew 0 clock 56.5KHz
    v: height 768 start 771 end 777 total 806 clock 70.1Hz
    1024x768 (0x4c) 65.0MHz -HSync -VSync
    h: width 1024 start 1048 end 1184 total 1344 skew 0 clock 48.4KHz
    v: height 768 start 771 end 777 total 806 clock 60.0Hz
    832x624 (0x4d) 57.3MHz -HSync -VSync
    h: width 832 start 864 end 928 total 1152 skew 0 clock 49.7KHz
    v: height 624 start 625 end 628 total 667 clock 74.6Hz
    800x600 (0x4e) 56.3MHz +HSync +VSync
    h: width 800 start 832 end 896 total 1048 skew 0 clock 53.7KHz
    v: height 600 start 601 end 604 total 631 clock 85.1Hz
    800x600 (0x4f) 50.0MHz +HSync +VSync
    h: width 800 start 856 end 976 total 1040 skew 0 clock 48.1KHz
    v: height 600 start 637 end 643 total 666 clock 72.2Hz
    800x600 (0x50) 49.5MHz +HSync +VSync
    h: width 800 start 816 end 896 total 1056 skew 0 clock 46.9KHz
    v: height 600 start 601 end 604 total 625 clock 75.0Hz
    800x600 (0x51) 40.0MHz +HSync +VSync
    h: width 800 start 840 end 968 total 1056 skew 0 clock 37.9KHz
    v: height 600 start 601 end 605 total 628 clock 60.3Hz
    800x600 (0x52) 36.0MHz +HSync +VSync
    h: width 800 start 824 end 896 total 1024 skew 0 clock 35.2KHz
    v: height 600 start 601 end 603 total 625 clock 56.2Hz
    640x480 (0x53) 36.0MHz -HSync -VSync
    h: width 640 start 696 end 752 total 832 skew 0 clock 43.3KHz
    v: height 480 start 481 end 484 total 509 clock 85.0Hz
    640x480 (0x54) 31.5MHz -HSync -VSync
    h: width 640 start 664 end 704 total 832 skew 0 clock 37.9KHz
    v: height 480 start 489 end 492 total 520 clock 72.8Hz
    640x480 (0x55) 31.5MHz -HSync -VSync
    h: width 640 start 656 end 720 total 840 skew 0 clock 37.5KHz
    v: height 480 start 481 end 484 total 500 clock 75.0Hz
    640x480 (0x56) 25.2MHz -HSync -VSync
    h: width 640 start 656 end 752 total 800 skew 0 clock 31.5KHz
    v: height 480 start 490 end 492 total 525 clock 59.9Hz
    720x400 (0x57) 35.5MHz -HSync +VSync
    h: width 720 start 756 end 828 total 936 skew 0 clock 37.9KHz
    v: height 400 start 401 end 404 total 446 clock 85.0Hz
    640x400 (0x58) 31.5MHz -HSync +VSync
    h: width 640 start 672 end 736 total 832 skew 0 clock 37.9KHz
    v: height 400 start 401 end 404 total 445 clock 85.1Hz
    640x350 (0x59) 31.5MHz +HSync -VSync
    h: width 640 start 672 end 736 total 832 skew 0 clock 37.9KHz
    v: height 350 start 382 end 385 total 445 clock 85.1Hz
    HDMI-1 connected 1360x768+0+0 (0x41) normal (normal left inverted right x axis y axis) 0mm x 0mm
    Identifier: 0x3d
    Timestamp: 1278799
    Subpixel: unknown
    Clones: HDMI-2
    CRTC: 0
    CRTCs: 0 1
    1360x768 (0x41) 84.8MHz -HSync +VSync *current
    h: width 1360 start 1432 end 1568 total 1776 skew 0 clock 47.7KHz
    v: height 768 start 771 end 781 total 798 clock 59.8Hz
    1152x864 (0x48) 81.6MHz -HSync +VSync
    h: width 1152 start 1216 end 1336 total 1520 skew 0 clock 53.7KHz
    v: height 864 start 865 end 868 total 895 clock 60.0Hz
    1024x768 (0x4c) 65.0MHz -HSync -VSync
    h: width 1024 start 1048 end 1184 total 1344 skew 0 clock 48.4KHz
    v: height 768 start 771 end 777 total 806 clock 60.0Hz
    800x600 (0x51) 40.0MHz +HSync +VSync
    h: width 800 start 840 end 968 total 1056 skew 0 clock 37.9KHz
    v: height 600 start 601 end 605 total 628 clock 60.3Hz
    640x480 (0x56) 25.2MHz -HSync -VSync
    h: width 640 start 656 end 752 total 800 skew 0 clock 31.5KHz
    v: height 480 start 490 end 492 total 525 clock 59.9Hz
    HDMI-2 disconnected (normal left inverted right x axis y axis)
    Identifier: 0x3e
    Timestamp: 1278799
    Subpixel: unknown
    Clones: HDMI-1
    CRTCs: 0 1
    xorg.conf is here
    Section "ServerFlags"
    Option "AutoAddDevices" "false"
    EndSection
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Touchpad" "SendCoreEvents"
    Option "AIGLX" "true"
    EndSection
    Section "Files"
    # RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "GLcore"
    Load "xtrap"
    Load "extmod"
    Load "glx"
    Load "dri"
    # Load "record"
    Load "dbe"
    Load "freetype"
    Load "synaptics"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "thinkpad60"
    Option "XkbLayout" "us"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "SendCoreEvents" "true"
    Option "VertEdgeScroll" "true"
    Option "HorizEdgeScroll" "true"
    Option "Device" "/dev/psaux" #/dev/input/mouse0
    Option "Protocol" "auto-dev"
    # Option "TouchpadOff" "1" #Uncomment if you just want to disable the touchpad and use only the trackpoint
    # Option "HorizScrollDelta" "0" #Why is this in here by default. By Gods, it kill horizontal scrolling!
    Option "RightEdge" "5500" #This is a little bigger than the default narrowing the scroll region
    Option "BottomEdge" "4500" #This is a little bigger than the default narrowing the scroll region
    Option "RTCornerButton" "0" #disable Right Top corner "button"
    Option "RBCornerButton" "0" #disable Right Bottom corner "button"
    Option "SHMConfig" "on" #this allows configuration of the touchpad using qsynaptics, synclient, or what have you.
    EndSection
    Section "Monitor"
    DisplaySize 304.8 190.5 # 120 dpi @1440x900
    Identifier "Monitor0"
    Option "DPMS"
    EndSection
    Section "Device"
    Option "NoDDC" "true" # [<bool>]
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "xaa"
    Option "XAANoOffscreenPixmaps" "true"
    Option "DRI" "true"
    Option "FramebufferCompression" "false"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1440x900" "1280x800" "1024x768" "800x600"
    Virtual 2960 1024
    EndSubSection
    EndSection
    Section "DRI"
    Group "video"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    and now i am using awesome wm. any ideas? Thank you!!

    konni wrote:
    how many monitors do you want to plugin? three? like damjan said, not sure if that works at all.
    or are the hdmi outputs idle and you're just trying to plug in a second screen?
    whats the exact problem? no output on that screen at all? or mirroring the internal one? in that case, try
    xrandr --output VGA --right-of LVDS
    (or left-of...)
    can you plug that monitor in with hdmi? (adapter/etc) you might try that as well, maybe just the vga fails.
    wow.. thank you konni... and thank damjan
    i turned off HDMI-1, then I could get VGA work!
    now i have dual screens, pretty cool.

  • Problem with dual screen (24" imac 2006 ver)

    hi
    i've got a 24" intel imac (2006 ver) and i've connected it using apple's mini-dvi => vga adapter to my 2nd 22" lcd monitor, a samsung 2232GW, which is set to 1680 x 1050.
    however, the samsung lcd displays (when i'm using as dual screen) is quite blur and double imaged. quality is readable but very irritating. i'm also using the same monitor for my ps3 (uses the DVI side) and have no problem with any visual aspect. I've tried playing around with the settings like resolution and calibration and tuning but didn't help at all.
    anyone might have any ideas and enlighten me on this issue?
    thanks
    Message was edited by: Treon

    Did you get any resolution to your question? I have the Samsung monitor almost like yours, and I posted two seconds ago. I think I have a similar problem. I had been using my Samsung with my PC, and just switched to Mac. I loved my Samsung, but now ,for the first time using as a second. Hooked up to mini dvi to dvi, and reported a glow, or tinge coming around any window that I may place on the Samsung.Also, when Ilook at the background around the window I can see that the resolution is not perfect and is breaking up a little. Did you try VGA? and did it help? Curious to know

  • [AwesomeWM] Applications locked to one screen in a dual monitor setup

    Perhaps the title should be "Multiple Screens with multiple video cards." I imagine  my confusion here is the reason I am unable to move clients from one screen to the other in awesome. Though the cursor moves fluidly between Screen1 and 2,  MOD4+drag traps the cursor and the client on the current screen. MOD4+o brings the cursor to the upper left corner of the current screen. Openbox and fluxbox are similarly limited.
    With my Xorg.conf I have $DISPLAY as :0.0 or :0.1 depending on which screen the terminal is open.
    The closest I've come to a solution is xpra from the parti-all aur package. But, I haven't found a way to make it useful. I'm hoping there is an alternative configuration. Maybe something like xinerama or Zaphod?
    I'd like to use xrandr but it seems thats a no go for multiple boards as of the the previous version. I cannot find documentation for 1.3.
    http://wiki.debian.org/XStrikeForce/HowToRandR12 wrote:VI.5. Multi-board support broken - RandR 1.2 does not support multiple boards yet (it's planned for RandR 1.3). It means that any RandR 1.2 aware driver will crash the server if you have 2 boards. Even one board with a RandR 1.2 driver and another board with a classic driver does not work. It just crashes the X server.
    Any ideas?
    > grep -v "^\s*#" /etc/X11/xorg.conf|grep -v ^$ |xclip wrote:Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        Screen      1  "Screen1" RightOf "Screen0"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
        Load  "glx"
        Load  "dri2"
        Load  "extmod"
        Load  "dbe"
        Load  "dri"
        Load  "record"
    EndSection
    Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
    EndSection
    Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option        "Protocol" "auto"
        Option        "Device" "/dev/input/mice"
        Option        "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
    EndSection
    Section "Monitor"
        Identifier   "Monitor1"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
    EndSection
    Section "Device"
        Identifier  "Card0"
        Driver      "nv"
        VendorName  "nVidia Corporation"
        BoardName   "NV25 [GeForce4 Ti 4200]"
        BusID       "PCI:3:0:0"
    EndSection
    Section "Device"
        Identifier  "Card1"
        Driver      "radeon"
        VendorName  "ATI Technologies Inc"
        BoardName   "Radeon RV100 QY [Radeon 7000/VE]"
        BusID       "PCI:1:7:0"
    EndSection
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
            Viewport   0 0
            Depth     1
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     4
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     8
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     15
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     16
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     24
        EndSubSection
    EndSection
    Section "Screen"
        Identifier "Screen1"
        Device     "Card1"
        Monitor    "Monitor1"
        SubSection "Display"
            Viewport   0 0
            Depth     1
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     4
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     8
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     15
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     16
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     24
        EndSubSection
    EndSection

    Err. My confusion is indeed the culprit. For anyone who might find themselves in a similar situation the nomenclature is as follows.
    "Zaphod mode" on wikipedia is listed as a multi-seat configuration, however, I think it more often describes the set up in my posted xorg.conf. That is, the server has two independent screens associated with their respective device. Titling window managers seem to present multiple screens a la Zaphod. At least in awesome, each screen has its own set of tags.  Xinerama is a soon to be deprecated extension merging multiple physical displays into a singular virtual one. It will be replaced with RandR. But, as of the current version of RandR, multi-board setups are not supported.
    ATI and nVidia have proprietary implementations for multi-head configurations (Big Desktop and Twinview respectively). I assumed both cards would have to be same brand and either ATI or nv. So, I didn't look into this.
    By the nature of Zaphod mode, applications exist only on one screen. They cannot easily be moved. Because the Xinerama extension implements one large virtual display, X clients can be displayed anywhere. This is apparently at the cost of direct rendering on both screens. Xinerama is also limited in that all screens have to have the same depth.
    Having the Zaphod mode xorg config, enabling Xinerama just requires one line in the ServerLayout section:
    Section "ServerLayout"
    Option "Xinerama" "on"
    However, if the resolution differs on the screens, screens with lower resolutions will have "dead space" where the rectangle of the virtual resolution is not displayed by the physical resolution of a screen.  Moving the cursor into this area will pan the screen to show the previously hidden area and hiding what was previously visible. This means an application fullscreened on the screen with the lower resolution will never be completely visible.
    To enforce physical resolutions in the virtual screen also only requires one line. In the display subsection of the lower resolution screen section, setting the virtual display to the same as the mode will remove the dead area.
    Section "Screen"
    Identifier "Screen1"
    SubSection "Display"
    Modes "1280x1024"
    Virtual 1280 1024
    EndSubSection
    Please reply if I've gotten anything wrong!
    Last edited by _will (2009-10-07 22:08:19)

  • How to darken only one screen in a dual screen setup ??

    Hi All,
    I have a dual screen set-up probably like many of you and sometimes I prefer to use LR only on 1 screen. That allows me to work on Photoshop or read my emails or whatever else I'd prefer to do on the other screen. My dilemma is when in Lightroom & I press the letter L to darken the screen around my image, for better viewing, it also darkens the other screen that I'm working with. Is there a way to prevent both screens from darkening?? Thanks Ron
    PS: Apologies if this has been addressed previously as I could not locate it

    Thank you digitaldog, I didn't think so either

  • TooltipText used with dual screen problem

    Hi,
    In my application I use a dual screen, so JComponent may be either on one screen or the other.
    My problem is when the mouse rolls over a JComponent on the right screen, the Tooltiptext associated is displayed onto the left screen.
    Any idea if I could display it automatically on the good screen or if I have to implement myself the display ?
    Thx for advance

    Did you get any resolution to your question? I have the Samsung monitor almost like yours, and I posted two seconds ago. I think I have a similar problem. I had been using my Samsung with my PC, and just switched to Mac. I loved my Samsung, but now ,for the first time using as a second. Hooked up to mini dvi to dvi, and reported a glow, or tinge coming around any window that I may place on the Samsung.Also, when Ilook at the background around the window I can see that the resolution is not perfect and is breaking up a little. Did you try VGA? and did it help? Curious to know

  • Screen sharing with dual monitors

    I have a user on the network with a 13" MBP w/ 10.6.8 with an external display (23" Dell LED) set up to its right.  The user typically leaves Mail open on the 13" display and runs her other apps on the external display.  I'm running a 17" MBP w/ 10.8.1 with a 27" LED Cinema Display set up to its right.
    When I try to share her screen, things go strange.  It used to show the two displays correctly in a large window on my LED, but at some point when I was running Lion, and for no apparent reason (I didn't notice it immediately after an update, for example), the whole thing seemed to shift to the right by one screen width.  Honestly, I can't think of a way to describe it, but I can simultaneously give you a screen shot and show off my amazing 'Shop skrillz.  Behold:
    Please forgive the atrocity that is this pixel homocide.  If you tell me what's wrong with the screen sharing and how to fix it, I promise never to destroy harmless pixels again.  Anytime soon, anyway.

    Hi,
    They could of course set the screen/Monitor to Mirror for a while as well
    Also in the arrangement part of the Displays they could set it to have on on top of the other which might display slightly better if your Screen is 4 X 4 ratio
    8:20 PM Saturday; December 5, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • How to keep slideshow on one screen in a dual monitor setup

    The slideshow shows on my laptop screen which is fine, but iPhoto '09 commandeers my external monitor as well, making it black/blank and unusable during the slide show. How can I continue to work and use my external monitor while playing a slideshow on my laptop screen?

    iPhoto doesn't support dual screens. Send a feature request to http://www.apple.com/feedback/iphoto.html.

  • IChat screen sharing with dual monitors on client

    Hello,
    I'm trying to help a buddy out via screen sharing. The problem is he has two monitors. When I connect, they both appear as one display on my monitor resulting in a very small & hard to view image.
    Is there a way to only show one monitor at a time? I know this works with regular screen sharing when Macs are on the same LAN, but I can't figure out how to do it via iChat.
    thanks,
    Shaun

    Hi,
    They could of course set the screen/Monitor to Mirror for a while as well
    Also in the arrangement part of the Displays they could set it to have on on top of the other which might display slightly better if your Screen is 4 X 4 ratio
    8:20 PM Saturday; December 5, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Frozen system when booting with dual-head setup (updates)

    Hi guys,
    I made a fresh install a couple of weeks ago and I configured my system for a dual-head setup following the wiki. I activated KMS and added radeon to the kernel parameters.
    My xorg.conf looks like this:
    Section "Monitor"
    Identifier "DVI-0"
    Option "PreferredMode" "1920x1080"
    Option "Position" "0 0"
    EndSection
    Section "Monitor"
    Identifier "HDMI-0"
    Option "PreferredMode" "1920x1080"
    Option "Position" "1920 0"
    EndSection
    I was having random freezes for a couple of days, but I didn't pay too much attention to it. I hard rebooted my computer when it froze and it could boot normally that second time.
    But after yesterday, last update to the open source drivers xf86-video-ati (1:7.5.0-2) and lib32-mesa-libgl (10.5.2-1), my system doesn't boot unless I disconnect one of the screens. When only one screen it's connected everything is fine. If I plug the second screen, it pops up the KDE service to configurate the second screen but as soon I press 'apply the chages' my system freezes and I had to hard reboot.
    I've tried all possible combinations usingt different outputs from the screens, getting the same results. Two of them connected --> freezes after grub loading. One connected --> boot Ok, but as soon as I plug the second one and I apply changes, freezes.
    I found one configuration that doesn't freeze my system. When I plug the second screen, as I said, KDE service automatically pops up. Before I was changing the positions of the screen, one beside the other one, and my system freezes when I apply the changes. If I just left the default configuration (one screen in top of the other), it doesn't freeze my system. After that, I can rearrange the screens, as I need them, and it doesn't freeze.
    Here it is my grub.cfg
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 e36984ca-21d8-4191-ba2f-a09bf8ce6f88
    else
    search --no-floppy --fs-uuid --set=root e36984ca-21d8-4191-ba2f-a09bf8ce6f88
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-e36984ca-21d8-4191-ba2f-a09bf8ce6f88' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 128c8e95-9496-49d1-9a9e-bc886662258d
    else
    search --no-floppy --fs-uuid --set=root 128c8e95-9496-49d1-9a9e-bc886662258d
    fi
    echo 'Loading Linux linux ...'
    linux /vmlinuz-linux root=UUID=e36984ca-21d8-4191-ba2f-a09bf8ce6f88 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-e36984ca-21d8-4191-ba2f-a09bf8ce6f88' {
    menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-e36984ca-21d8-4191-ba2f-a09bf8ce6f88' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 128c8e95-9496-49d1-9a9e-bc886662258d
    else
    search --no-floppy --fs-uuid --set=root 128c8e95-9496-49d1-9a9e-bc886662258d
    fi
    echo 'Loading Linux linux ...'
    linux /vmlinuz-linux root=UUID=e36984ca-21d8-4191-ba2f-a09bf8ce6f88 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-e36984ca-21d8-4191-ba2f-a09bf8ce6f88' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 128c8e95-9496-49d1-9a9e-bc886662258d
    else
    search --no-floppy --fs-uuid --set=root 128c8e95-9496-49d1-9a9e-bc886662258d
    fi
    echo 'Loading Linux linux ...'
    linux /vmlinuz-linux root=UUID=e36984ca-21d8-4191-ba2f-a09bf8ce6f88 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###
    And my fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    # /dev/sda2 resto del disco
    UUID=e36984ca-21d8-4191-ba2f-a09bf8ce6f88 / ext4 defaults,noatime,discard 0 1
    # /dev/sda1 100MB
    UUID=128c8e95-9496-49d1-9a9e-bc886662258d /boot ext4 defaults,noatime,discard 0 2
    # /dev/sdc2 10GB
    UUID=3959515c-30e4-4749-bc30-5babba3311e8 /var ext4 defaults 0 2
    # /dev/sdc3 resto del disco
    UUID=8ccc2ed9-35e5-4a4f-81f1-98cc8bfc4ed1 /home ext4 defaults,noatime 0 2
    # /dev/sdc1
    UUID=35e39da9-c942-434d-bbfc-deb5e40ee8be none swap defaults 0 0
    #montaje de temp en ram
    tmpfs /tmp tmpfs nodev,nosuid,size=3G 0 0
    # External HDD
    UUID=0ae5eb6a-8c4c-480c-8efe-609ae83f2bdc /media/External\040HDD ext4 defaults 0 0
    # Seagate Expansion Drive
    UUID=16668D4B668D2C95 /media/Seagate\040Expansion\040Driventfs-3g defaults,nofail 0 0
    What else should I check?
    Thanks in advance.
    Edit: added info
    Edit2: more tests.
    Last edited by doblerone (2015-03-31 08:12:38)

    Rexilion wrote:Maybe try looking at /var/log/pacman.log and see if you can downgrade packages (start with the kernel). See if that works around the problem.
    Downgrading catalyst to 14.3 seems to have done the job. Thanks for the suggestion, marking as solved.
    Inxsible wrote:bheinks, you have been on the forums long enough to be aware of the forum rules. Make use of an image hosting site.
    Sorry, I don't post often and wasn't aware of the rules on images. I'll keep that in mind next time.

Maybe you are looking for

  • Possible to allow any traffic from a certain IP?

    Basic question: I'm using Snow Leopard and want to be able to allow any incoming traffic from a certain IP. I'm not concerned about what ports because it's a local device (PS3) behind the router. Is there a way to accomplish this without resorting to

  • Itunes has stopped working on windows 8 - 64 bit

    Itunes works fine until I try to access the store.  Then I get the message and windows of course fails to find a solution.

  • Flat file with soap adapter

    Hi,   Can anybody tell me is it possible to send flat file as an atttachment via soap adapter. Regards, Dhill

  • RV_BELEG - Number Range Buffering

    Hi All:  I implemented parallel number range buffering for my client via transaction SNUM for object RV_BELEG which includes orders, deliveries, invoices, contracts, etc.  We did this because with the amount of users they have, when entering orders,

  • Lens Correction in LR 5

    How do I set Lens Correction Profile so that my make of camera and the lens used is the default setting please