縦長1200x1600のモニタがすこぶる便利な件

こんな感じ:

チョベリベ。あーもっとはやくこの環境にしとけばよかったー

ディストリはDesktop版のUbuntu 8.04.1 Hardy

UXGA (1600x1200) でピボット (縦回転) 可能なモニタがあんま見つけられなく、DELL, 2007FP以外の候補はこの程度でした。

xorg.confは末尾の通り。

回転は~/.xinitrcでxrandr -o leftでしてます。gdmとか使ってるなら/etc/gdm/Init/Defaultに書いておけばよさげ。

Section "Module"
#    Load    "GLcore"
    Load    "bitmap"
    Load    "dbe"
    Load    "ddc"
    Load    "dri"
    Load    "extmod"
    Load    "freetype"
    Load    "glx"
    Load    "int10"
    Load    "record"
#    Load    "speedo"
    Load    "type1"
    Load    "vbe"
EndSection

Section "ServerFlags"
    Option    "DontZap"
EndSection


Section "InputDevice"
    Identifier    "Generic Keyboard"
    Driver        "kbd"
    Option        "CoreKeyboard"

    Option        "AutoRepeat"  "250 30"
    Option        "LeftAlt"     "Meta"
    Option        "RightAlt"    "Meta"
    Option        "XkbDisable"
    Option        "XkbModel"    "pc101"
    Option        "XkbLayout"    "us"
    Option        "XkbVariant"    ""
    Option        "XkbOptions"    ""
EndSection

Section "InputDevice"
  Identifier  "Configured Mouse"
  Driver    "mouse"
  Option    "CorePointer"
EndSection

Section "Device"
  Identifier  "Configured Video Device"
EndSection

Section "Device"
  Identifier  "Videocard0"
  Driver      "radeon"
  ChipID      0x515a # for enable DRI
EndSection

Section "Device"
  Identifier  "nv"
  Driver      "nvidia"
  VendorName  "NVIDIA Corporation"
  BoardName   "GFX5200-P128C"
  Option      "RandRRotation" "True"
EndSection

Section "Monitor"
  Identifier  "Configured Monitor"
EndSection

Section "Monitor"
  Identifier  "Monitor0"
  VendorName  "DELL"
  ModelName   "2007FP"
  ModeLine    "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
  HorizSync   30.0 - 81.0
  VertRefresh 60.0 - 60.0
  Option      "dpms"
EndSection

Section "Screen"
  Identifier  "Default Screen"
#  Monitor     "Configured Monitor"
  Monitor     "Monitor0"
#  Device      "Configured Video Device"
#  Device      "Videocard0"
  Device      "nv"
  DefaultDepth  24

  SubSection "Display"
    Depth  16
    Modes  "1600x1200" "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
  EndSubSection
  SubSection "Display"
    Depth  24
    Modes  "1600x1200" "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
  EndSubSection
EndSection

Section "ServerLayout"
  Identifier  "Default Layout"
  Screen      "Default Screen"
EndSection

Section "DRI"
    Mode    0666
EndSection