듀얼 모니터 관련 질문입니다.

DarkSide의 이미지

리눅스를 듀얼 모니터로 사용하려고 하는데,
윈도우즈처럼 두 개의 스크린을 독립적으로 쓰면서 윈도우가 양 스크린을 자유롭게 이동할 수 있게 하는 방법은 없나요?

separate view 에서는 윈도우가 한 스크린에만 한정되고,
twinview 나 xinerama 사용하는 separate view 에서는 윈도우가 이동은 되는데, 풀스크린으로 하면 두개의 모니터에 모두 걸쳐 풀스크린이 되고, 특정 창들이 두 화면에 걸쳐서 시작되어서 옮기기가 불편하네요.

도움 부탁드립니다.

eseo의 이미지

다음 설정으로, 아래와 같이 동작합니다. (아마 원하시는 기능 같습니다.)
- 모니터간 윈도이동 가능
- 최대화시 현재 있는 모니터에서 최대화

Fedora14 를 사용하고 있습니다.

/etc/X11/xorg.conf

Section "ServerLayout"
    Identifier     "single head configuration"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection
 
Section "Files"
    ModulePath      "/usr/lib/xorg/modules/extensions/nvidia"
    ModulePath      "/usr/lib/xorg/modules"
    FontPath        "/usr/share/fonts/default/Type1"
EndSection
 
Section "Module"
    Load           "freetype"
    Load           "glx"
    Load           "dbe"
    Load           "extmod"
EndSection
 
Section "ServerFlags"
    Option         "Xinerama" "0"
    Option         "AIGLX" "on"
EndSection
 
Section "InputDevice"
 
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/mice"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection
 
Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "XkbLayout" "us"
    Option         "XkbModel" "pc105"
EndSection
 
Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Samsung SyncMaster"
    HorizSync       30.0 - 81.0
    VertRefresh     56.0 - 75.0
    Option         "DPMS"
EndSection
 
Section "Device"
    Identifier     "Videocard0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 9500 GT"
EndSection
 
Section "Screen"
    Identifier     "Screen0"
    Device         "Videocard0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "1"
    Option         "TwinViewXineramaInfoOrder" "CRT-0"
    Option         "metamodes" "CRT: nvidia-auto-select +0+0, DFP: nvidia-auto-select +1280+0"
    Option         "AddARGBGLXVisuals" "True"
    Option         "backingstore"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
 
Section "Extensions"
    Option         "Composite" "Enable"
EndSection

---
배려하는 마음을 갖자.