个人工具

UbuntuHelp:USB2VGA

来自Ubuntu中文

跳转至: 导航, 搜索

Setup

Insert the SISUSBVGA into xorg.conf

Insert this in the bottom of the xorg.conf file:


Section "Device"
 Identifier "Device[SISUSBVGA]"
 VendorName "SiS" # Value does not matter
 BoardName "SiS" # Value does not matter
 Driver "sisusb"
EndSection

Section "Monitor"
 Identifier "Monitor[SISUSBVGA]"
 VendorName "Monitor Vendor" # value does not matter
 ModelName "Monitor Model" # value does not matter
 VertRefresh 50-75
 HorizSync 30-90
EndSection

Section "Screen"
 Identifier "Screen[SISUSBVGA]"
 Device "Device[SISUSBVGA]"
 Monitor "Monitor[SISUSBVGA]"
 DefaultDepth 16
 SubSection "Display"
  Depth 16
  Modes "1024x768" "800x600" "640x480"
 EndSubSection
 SubSection "Display"
  Depth 8
  Modes "1024x768" "800x600" "640x480"
 EndSubSection
 SubSection "Display"
  Depth 24
  Modes "1024x768" "800x600" "640x480"
 EndSubSection
EndSection

And edit your ServerLayout to look like this:

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen 0 "Default Screen"
        Screen 1 "Screen[SISUSBVGA]" RightOf "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
EndSection

If it doesn't work, please use this thread on ubuntuforums: http://ubuntuforums.org/showthread.php?t=260863