sky62280 发表于 2008-12-2 15:39:58

求东芝libretto 5宽屏笔记本的配置文件

对BT3比较感兴趣,拿出自己的老本东芝libretto L5,按照网上的高手设置,可以通过grub从硬盘启动,输入用户名和密码之后,无论是xconf,还是startx,都是黑屏,老本配制如下:1280x600 宽屏,ATI 8M的显卡,有高手能帮我做个lzm的启动文件吗?不胜感激!!

sky62280 发表于 2008-12-2 16:52:31

估计和宽屏有关,通过网上查找资料,用gtf 1280 600 60 得到modeline,可是怎么在文本命令下复制以上命令到xorg?

jiangtao9999 发表于 2008-12-2 17:00:36

试试 vesa + 分辨率 800x600 能不能进。
估计是驱动的问题。不过 ATI 8M 的显卡应该没有官方驱动可用了。只有 xorg 自带驱动了。

sky62280 发表于 2008-12-2 17:13:46

我的显卡是ATI -- Radeon Mobility M6,在linux硬件兼容列表里有,怎样试vesa?在文本命令下说没找到这个命令

jozhu 发表于 2008-12-2 19:19:18

在xorg.conf里把driver改成vesa,这东西不是命令。

sky62280 发表于 2008-12-3 15:51:53

在xorg.conf里driver已经就是vesa,我这个老本的分辨率是1280x600的

jozhu 发表于 2008-12-3 20:43:41

ATI的老卡阿,那把vesa改成ati或者radeon试试吧,顺便把分辨率也指定一下

jiangtao9999 发表于 2008-12-3 23:14:33

vesa 应该是不支持宽屏分辨率。而且不支持检测显示器支持的分辨率,必须指定分辨率。

sky62280 发表于 2008-12-4 16:38:42

各位高手,我从日本一个网上把配置文件扒下来了,怎么做成lzm文件阿?
Section "Files"
       FontPath      "unix/:7100"                  # local font server
       # if the local font server has problems, we can fall back on these
       FontPath      "/usr/share/fonts/X11/misc"
       FontPath      "/usr/lib/X11/fonts/misc"
       FontPath      "/usr/share/fonts/X11/cyrillic"
       FontPath      "/usr/lib/X11/fonts/cyrillic"
       FontPath      "/usr/lib/X11/fonts/100dpi/:unscaled"
       FontPath      "/usr/lib/X11/fonts/75dpi/:unscaled"
       FontPath      "/usr/share/fonts/X11/Type1"
       FontPath      "/usr/lib/X11/fonts/Type1"
       FontPath      "/usr/share/fonts/X11/CID"
       FontPath      "/usr/lib/X11/fonts/CID"
       FontPath      "/usr/share/fonts/X11/100dpi"
       FontPath      "/usr/lib/X11/fonts/100dpi"
       FontPath      "/usr/share/fonts/X11/75dpi"
       FontPath      "/usr/lib/X11/fonts/75dpi"
EndSection
Section "Module"
       Load    "bitmap"
       Load    "dbe"
       Load    "ddc"
       Load    "dri"
       Load    "evdev"
       Load    "extmod"
       Load    "freetype"
       Load    "glx"
       Load    "int10"
       Load    "record"
       Load    "type1"
       Load    "vbe"
EndSection
Section "InputDevice"
       Identifier      "Generic Keyboard"
       Driver          "keyboard"
       Option          "CoreKeyboard"
       Option          "XkbRules"      "xorg"
       Option          "XkbModel"      "jp106"
       Option          "XkbLayout"   "jp106"
EndSection
Section "InputDevice"
       Identifier      "Configured Mouse"
       Driver          "mouse"
       Option          "CorePointer"
       Option          "Device"                "/dev/psaux"
       Option          "Protocol"            "ImPS/2"
       Option          "Emulate3Buttons"       "true"
       Option          "ZAxisMapping"          "4 5"
EndSection
Section "InputDevice"
       Identifier      "Synaptics Touchpad"
       Driver          "synaptics"
       Option          "SendCoreEvents"      "true"
       Option          "Device"                "/dev/psaux"
       Option          "Protocol"            "auto-dev"
       Option          "HorizScrollDelta"      "0"
EndSection
Section "Device"
       Identifier      "ATI Technologies, Inc. Radeon Mobility M6 LY"
       Driver          "ati"
       #Driver         "radeon"
       #Driver         "vesa"
       BusID         "PCI:0:4:0"
       VideoRam      8192
EndSection
Section "Monitor"
       Identifier      "Generic Monitor"
       Option          "DPMS"
       #HorizSync      28-49
       HorizSync       31.5
       #VertRefresh    43-72
       VertRefresh   50-61
       # 1280x600 for Toshiba Libretto L*
       Modeline "1280x600"    60   1280 1328 1512 1712
                                    600601603625
EndSection
Section "Screen"
       Identifier      "Default Screen"
       Device          "ATI Technologies, Inc. Radeon Mobility M6 LY"
       Monitor         "Generic Monitor"
       #DefaultDepth   24
       #DefaultDepth   16
       DefaultDepth    15
       SubSection "Display"
               Depth         1
               Modes         "1280x600" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
               Depth         4
               Modes         "1280x600" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
               Depth         8
               Modes         "1280x600" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
               Depth         15
               Modes         "1280x600" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
               Depth         16
               #Modes          "1280x600" "1024x768" "800x600" "640x480"
               #Modes          "1280x600" "1024x768"
               Modes         "1280x600"
       EndSubSection
       SubSection "Display"
               Depth         24
               Modes         "1280x600" "1024x768" "800x600" "640x480"
       EndSubSection
EndSection
Section "ServerLayout"
       Identifier      "Default Layout"
       Screen          "Default Screen"
       InputDevice   "Generic Keyboard"
       InputDevice   "Configured Mouse"
       InputDevice   "Synaptics Touchpad"
EndSection
Section "DRI"
       Mode    0666
EndSection

jozhu 发表于 2008-12-4 23:39:01

为什么要做成LZM文件??直接放到/etc/X11里面去。

jiangtao9999 发表于 2008-12-5 12:49:39

估计是用 slax 的。

sky62280 发表于 2008-12-5 13:26:54

回复 10# jozhu 的帖子

版主,能不能写个步骤,我刚玩li'nu'x 一个星期,怎么放到/etc/X11里面去? 我只能进命令行,我现在是把配制保存到windows下的txt里了

jiangtao9999 发表于 2008-12-5 16:33:14

刚玩一个星期就不要用 slax 。

sky62280 发表于 2008-12-5 17:23:04

不想帮忙就算了,琢磨slax又如何?不要当了版主就烧包,把ID砍了吧

jozhu 发表于 2008-12-6 03:28:10

slax我没有用过,不知道是怎么个回事,不过正常来说,你只要把以上内容保存为一个叫xorg.conf的文件,然后复制到/etc/X11里就没问题了。
页: [1] 2
查看完整版本: 求东芝libretto 5宽屏笔记本的配置文件