LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 774|回复: 4

echo crt_enable > /proc/acpi/ibm/video仍然无法启动外接CRT

[复制链接]
发表于 2007-4-24 16:58:46 | 显示全部楼层 |阅读模式
cat /proc/acpi/ibm/video
status:         supported
lcd:            enabled
crt:            disabled
dvi:            disabled
auto:           enabled
commands:       lcd_enable, lcd_disable
commands:       crt_enable, crt_disable
commands:       dvi_enable, dvi_disable
commands:       auto_enable, auto_disable
commands:       video_switch, expand_toggle
输入命令:
echo crt_enable > /proc/acpi/ibm/videl
之后外接CRT没有任何反应,还要设置什么地方吗?求助。
内核中有什么特殊的选项要打开的吗?
 楼主| 发表于 2007-4-27 13:47:34 | 显示全部楼层
要使用外接CRT,是否需要Xinerama的支持,要加USE在哪个包吗?
回复 支持 反对

使用道具 举报

发表于 2007-4-27 15:52:40 | 显示全部楼层
看看 你的 xorg.conf
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-4-27 23:16:45 | 显示全部楼层
下面的是我的xorg.conf配置文件,谢谢
Section "Module"
       Load            "dbe"          # Double buffer extension
       Load            "type1"
       Load            "freetype"
       Load            "glx"
       Load            "dri"
       Load            "drm"
       SubSection "extmod"
       #  Option    "omit xfree86-dga"    # don't initialise the DGA extension
       EndSubSection
EndSection

Section "Files"
       FontPath        "/usr/share/fonts/misc"
       FontPath        "/usr/share/fonts/75dpi"
       FontPath        "/usr/share/fonts/100dpi"
       FontPath        "/usr/share/fonts/corefonts"
       FontPath        "/usr/share/fonts/ttf-bitstream-vera"
       FontPath        "/usr/share/fonts/Type1"
       FontPath        "/usr/share/fonts/yahei"
       FontPath        "/usr/local/share/fonts"
EndSection

Section "InputDevice"
       Identifier      "KeyBoard"
       Driver               "kbd"
       Option          "AutoRepeat"            "500 30"
       Option          "XkbRules"               "xorg"
       Option          "XkbModel"               "pc105"
       Option          "XkbLayout"               "us"
EndSection

Section "InputDevice"
       Identifier      "TrackPoint"
       Driver          "mouse"
       Option          "CorePointer"
       Option          "Device"                "/dev/input/mice"
       Option          "rotocol"              "S/2"
       Option          "Emulate3Buttons"       "on"
       Option          "Emulate3Timeout"       "50"
       Option          "EmulateWheel"          "on"
       Option          "EmulateWheelButton"    "2"
EndSection

Section "InputDevice"
       Identifier      "UsbMouse"
       Driver          "mouse"
       Option          "Device"                "/dev/input/mice"
       Option          "rotocol"              "auto"
       Option          "Emulate3Buttons"       "on"
       Option          "Emulate3Timeout"       "50"
       Option          "EmulateWheel"          "on"
       Option          "EmulateWheelButton"    "2"
       Option          "ZAxisMapping"          "4 5"
EndSection

Section "Device"
       Identifier      "GMA950"
       VendorName      "Intel Corporation Mobile Integrated Graphics Controller"
       Driver          "i810"
       BusID           "CI:0:2:0"
       Option          "XAANoOffscreenPixmaps" "true"
       Option          "XaaNoScanlineImageWriteRect"
       Option          "XaaNoScanlineCPUToScreenColorExpandFill"
       Option               "NoAccel"               "false"
       Option          "MonitoLayout"          "CRT, LFP"
       Option          "DevicePresence"        "true"
       Option          "DRI"                   "true"
       VideoRam        131072
       Screen          0
EndSection

Section "Device"
       Identifier      "GMA950 External CRT"
       VendorName      "Intel Corportation Mobile Integrated Graphics Controller"
       Driver          "i810"
       BusID           "IC:0:2:0"
       Option          "XAANoOffscreenPixmaps" "true"
       Option          "XaaNoScanlineImageWriteRect"
       Option          "XaaNoScanlineCPUToScreenColorExpandFill"
       Option               "NoAccel"               "false"
       Option          "MonitoLayout"          "CRT, LFP"
       Option          "DevicePresence"        "true"
       Option          "DRI"                   "true"
       VideoRam        131072
       Screen          1
EndSection


Section "Monitor"
       Identifier      "LCD"
       HorizSync       31.5 - 64.3
       VertRefresh     50-70
       DisplaySize     250 181
       Option          "DPMS"
EndSection

Section "Monitor"
       Identifier      "CRT"
       Option          "DPMS"
EndSection

Section "Screen"
       Identifier      "Default Screen"
       Device          "GMA950"
       Monitor         "LCD"
       DefaultDepth    24
       SubSection "Display"
               Depth           8
               Modes           "1024x768" "800x600" "640x480"
               ViewPort        0 0
               Virtual         1024 768
       EndSubSection
       SubSection "Display"
               Depth           16
               Modes           "1024x768" "800x600" "640x480"
               ViewPort        0 0
               Virtual         1024 768
       EndSubSection
       SubSection "Display"
               Depth           24
               Modes           "1024x768" "800x600" "640x480"
               ViewPort        0 0
               Virtual         1024 768
       EndSubSection
EndSection


Section "Screen"
       Identifier     "External Screen"
       Device         "GMA950 External CRT"
       Monitor        "CRT"
       DefaultDepth   24
       SubSection "Display"
               Depth           8
               Modes           "1024x768" "800x600" "640x480"
               ViewPort        0 0
               Virtual         1024 768
       EndSubSection
       SubSection "Display"
               Depth           16
               Modes           "1024x768" "800x600" "640x480"
               ViewPort        0 0
               Virtual         1024 768
       EndSubSection
       SubSection "Display"
               Depth           24
               Modes           "1024x768" "800x600" "640x480"
               ViewPort        0 0
               Virtual         1024 768
       EndSubSection
EndSection

Section "ServerLayout"
       Identifier      "Server Layout"
       Screen          0 "Default Screen" 0 0
       Screen          1 "External Screen" RightOf "DefaultScreen"
       InputDevice     "TrackPoint"
       InputDevice     "UsbMouse"
       InputDevice     "KeyBoard"
       Option          "AIGLX" "true"
       Option          "Xinerama"
EndSection

Section "Extensions"
       Option          "Composite" "enable"
EndSection

Section "DRI"
       Mode            0666
EndSection
回复 支持 反对

使用道具 举报

发表于 2007-4-28 01:11:49 | 显示全部楼层
一个小错误,你的MonitorLayout少了一个r。

如果要外接显示器,接好线后,你要按一下导出视频信号的那个组合键:Fn+(什么键)。你看看键盘就知道了。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表