LinuxSir.cn,穿越时空的Linuxsir!

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

[已解决]不能进Xwindow,分辨率,15寸液晶显示器,共享内存

[复制链接]
发表于 2006-12-28 22:40:53 | 显示全部楼层 |阅读模式
标题写了这么多是为了以后大家方便搜索
我是dell的15寸液晶,机器是dell 170L,集成显卡,共享显存
我在Windows下是1024*768@60
但是在Linux下却有很多的问题
1.装过很多Linux,但是只有RH AS3能正常显示(我只有AS3及以上版本)
2.装了Debian(x-window-system-core,gnome-core,gdm,ttf-arphic-uming)
装完后重启提示错误。。。。
显示是no screens found....
我编辑/etc/X11/XFconf...-4这个文件
去掉了1024*768的显示模式剩下800*600 640*800
现在不知道怎么编辑 HorizSync VertRefresh数值,有用15寸液晶的linuxer嘛?
或者如果不是HorizSync VertRefresh数值那是什么呢?
本机器装不起Magic Linux,一装就说 no screens found(连安装界面都进不去)
-------------------------------以下新增----
我是用gnome的,gdm控制的
i810是默认的驱动,我也用过vesa驱动的
新增了config和出错信息。sarge的
----最终发现-----
是我共享现存不够。。。
没用过这样的机器,困扰我1年多了。终于解决了。
发表于 2006-12-28 22:59:17 | 显示全部楼层
sid吧

我前几天安装也是no screen found,可能是这几天他的包有问题


索性先装stable,再升级testing,然后装testing的xorg,然后dist-upgrade到sid,再装sid的gnome什么的,成功


你没有错,是这个包最近有问题
回复 支持 反对

使用道具 举报

发表于 2006-12-28 23:13:30 | 显示全部楼层
没什么问题就是要下载一个驱动包no screen是没装显卡驱动,我的是集成intel845的所以apt-get install xserver-xorg-video-i810就解决了,不知道你的显卡是什么型号的。如果不知道的话可以apt-get install xserver-xorg-video-all然后重新配置。昨晚刚在google找的解决方案,可能以后都要自己下驱动吧。
回复 支持 反对

使用道具 举报

发表于 2006-12-28 23:17:23 | 显示全部楼层
至于屏幕的水平和垂直数值可以到网上搜索机器型号。但是这个不影响进X,你这个是没找到驱动的缘故。我昨天更惨鼠标键盘显示器都没找到,就是这样解决的。
键盘 xserver-xorg-input-kbd
鼠标 xserver-xorg-input-mouse
回复 支持 反对

使用道具 举报

发表于 2006-12-29 08:46:08 | 显示全部楼层
最好 贴出来 x86config,大家 看看 哪里 配置问题 。
你用 的kde吧?
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-12-29 09:27:48 | 显示全部楼层
我装31r4的盘来装的。
i810驱动是默认有的
XF86Config-4文件
Section "Files"
        FontPath        "unix/:7100"                    # local font server
        # if the local font server has problems, we can fall back on these
        FontPath        "/usr/lib/X11/fonts/misc"
        FontPath        "/usr/lib/X11/fonts/cyrillic"
        FontPath        "/usr/lib/X11/fonts/100dpi/:unscaled"
        FontPath        "/usr/lib/X11/fonts/75dpi/:unscaled"
        FontPath        "/usr/lib/X11/fonts/Type1"
        FontPath        "/usr/lib/X11/fonts/CID"
        FontPath        "/usr/lib/X11/fonts/Speedo"
        FontPath        "/usr/lib/X11/fonts/100dpi"
        FontPath        "/usr/lib/X11/fonts/75dpi"
EndSection

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 "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "keyboard"
        Option          "CoreKeyboard"
        Option          "XkbRules"      "xfree86"
        Option          "XkbModel"      "pc104"
        Option          "XkbLayout"     "us"
EndSection

Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mice"
        Option          "rotocol"              "ImPS/2"
        Option          "Emulate3Buttons"       "true"
        Option          "ZAxisMapping"          "4 5"
EndSection

Section "Device"
        Identifier      "Intel Corporation 82865G Integrated Graphics Device"
        Driver          "i810"
EndSection

Section "Monitor"
        Identifier      "Generic Monitor"

        HorizSync       30-80
        VertRefresh     50-160
        Option          "DPMS"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Intel Corporation 82865G Integrated Graphics Device"
        Monitor         "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes            "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "800x600" "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
EndSection

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

使用道具 举报

 楼主| 发表于 2006-12-29 09:29:20 | 显示全部楼层
出错信息..........
JaminDebian:/var/log# startx
Using authority file /root/.Xauthority
Writing authority file /root/.Xauthority
Using authority file /root/.Xauthority
Writing authority file /root/.Xauthority
XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-14sarge1 20050901212727 fjp@localhost.localdomain)
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.8-16.0508-2 i686 [ELF]
Build Date: 02 September 2005

This version of XFree86 has been extensively modified by the Debian
Project, and is not supported by the XFree86 Project, Inc., in any
way.  Bugs should be reported to the Debian Bug Tracking System; see
<URL: http://www.debian.org/Bugs/Reporting >.

We strongly encourage the use of the "reportbug" package and command
to ensure that bug reports contain as much useful information as
possible.

Before filing a bug report, you may want to consult the Debian X FAQ:
       XHTML version: file:///usr/share/doc/xfree86-common/FAQ.xhtml
  plain text version: file:///usr/share/doc/xfree86-common/FAQ.gz

Module Loader present
OS Kernel: Linux version 2.6.8-3-386 (pbuilder@dl360-g3) (gcc version 3.3.5 (Debian 1:3.3.5-13)) #1 Thu Sep 7 05:39:52 UTC 2006
Markers: (--) probed, (**) from config file, (==) default setting,
         (++) from command line, (!!) notice, (II) informational,
         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Fri Dec 29 09:31:24 2006
(==) Using config file: "/etc/X11/XF86Config-4"

Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_vertex.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/fonts/libspeedo.a:spencode.o":  No symbols found
(EE) I810(0): No Video BIOS modes for chosen depth.
(EE) Screen(s) found, but none have a usable configuration.

Fatal server error:
no screens found

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file "/var/log/XFree86.0.log".
Please report problems to submit@bugs.debian.org.

XIO:  fatal IO error 104 (Connection reset by peer) on X server ":0.0"
      after 0 requests (0 known processed) with 0 events remaining.
回复 支持 反对

使用道具 举报

发表于 2006-12-29 10:20:21 | 显示全部楼层
我帮楼上顶一个``我也是同样的报错。
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o": No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o": No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o": No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_vertex.o": No symbols found
Skipping "/usr/X11R6/lib/modules/fonts/libspeedo.a:spencode.o": No symbols found
但是我是在depth选择在非24的时候`
我还发现我的xinitc没有``在x11/下只有个xinit文件,而且是空的,i进去的时候显示的是数字`
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-12-29 10:59:01 | 显示全部楼层
解决了。。。。。
我把DefaultDepth    改成8就可以进入了,所以我怀疑是现存问题
一看。。。原来现存共享只有1m,天哪。。。
改成最大8m,DefaultDepth    24
Depth 24
Modes "1024x768"  "800x600" "640x480"
这样就可以了
回复 支持 反对

使用道具 举报

发表于 2006-12-29 17:07:12 | 显示全部楼层
楼上的说说怎么改的现存~
我还没有改过`
回复 支持 反对

使用道具 举报

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

本版积分规则

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