QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 920|回复: 13

kanker救命!!!

[复制链接]
发表于 2005-12-13 21:18:49 | 显示全部楼层 |阅读模式
我下了你的包了,我也成功的-Uvh了那些包
但重新启动后X启动不了了!
救命啊!!!!!!!
我也修改了menu.lst拉,证明可以引导内核,可就是起不来X
发表于 2005-12-13 21:43:16 | 显示全部楼层
nvidia 的驱动需要重新安装一下。
回复

使用道具 举报

 楼主| 发表于 2005-12-13 21:59:53 | 显示全部楼层
关键是装不上,无法安装NV的核心~
回复

使用道具 举报

发表于 2005-12-13 22:01:49 | 显示全部楼层
先修改 xorg.conf ,你是nv的显卡吗
回复

使用道具 举报

 楼主| 发表于 2005-12-13 22:04:15 | 显示全部楼层
是啊,xorg.conf已经修改好了啊,因为以前安装过显卡驱动!
但升级了内核就启动不了,我现在知道就是显卡驱动的问题,手头有两个.run的显卡驱动,但用sh ........run命令来安装,装不上去,是不是要驱动???还是先要有什么操作???
回复

使用道具 举报

发表于 2005-12-13 22:09:50 | 显示全部楼层
先修改回来 Driver          "nvidia"
改成          Driver          "nv"
你就可以进入 x了,你装的是哪版内核
你在字符模式下 用vim修改
回复

使用道具 举报

发表于 2005-12-13 22:11:45 | 显示全部楼层
下载最新版的 nvidia 驱动试试吧。
回复

使用道具 举报

 楼主| 发表于 2005-12-13 22:19:44 | 显示全部楼层
好的,应该用源码安装吧??
或者生成源码??
哎~
回复

使用道具 举报

 楼主| 发表于 2005-12-14 13:05:03 | 显示全部楼层
下了最新的驱动 ,但是装不上,似乎是显卡的kernel没有找到。
我 下 了带有kernel和GLX的源码包,但不识别kernel2.6.15rc5,还是装不上,
用./******.run
来安装装不上,
用sh *******.run也装不上。
用sh *******.run --exrract-only
生成源码包然后在make install还是装不上!!
现在只能把“nvidia"改回"nv"凑合用!!
到底有什么办法在kernel2.6.15-rc5上装驱动阿?我的显卡签名上有!
回复

使用道具 举报

发表于 2005-12-14 13:12:42 | 显示全部楼层
你下了哪个kernel,给我个链接地址,我帮你看一下,肯定可以装的
回复

使用道具 举报

发表于 2005-12-14 13:27:58 | 显示全部楼层
找到了,我正在装,一会儿看看通过了就告诉你
回复

使用道具 举报

 楼主| 发表于 2005-12-14 14:12:11 | 显示全部楼层
呵呵,谢谢板猪!!
回复

使用道具 举报

发表于 2005-12-14 18:52:04 | 显示全部楼层
把下面的文字复制到新建文本文件,并保存文件名为 Makefile.cpu
# CPU tuning section - shared with UML.
# Must change only cflags-y (or [yn]), not CFLAGS! That makes a difference for UML.

#-mtune exists since gcc 3.4, and some -mcpu flavors didn't exist in gcc 2.95.
HAS_MTUNE        := $(call cc-option-yn, -mtune=i386)
ifeq ($(HAS_MTUNE),y)
tune                = $(call cc-option,-mtune=$(1),)
else
tune                = $(call cc-option,-mcpu=$(1),)
endif

align := $(cc-option-align)
cflags-$(CONFIG_M386)                += -march=i386
cflags-$(CONFIG_M486)                += -march=i486
cflags-$(CONFIG_M586)                += -march=i586
cflags-$(CONFIG_M586TSC)        += -march=i586
cflags-$(CONFIG_M586MMX)        += $(call cc-option,-march=pentium-mmx,-march=i586)
cflags-$(CONFIG_M686)                += -march=i686
cflags-$(CONFIG_MPENTIUMII)        += -march=i686 $(call tune,pentium2)
cflags-$(CONFIG_MPENTIUMIII)        += -march=i686 $(call tune,pentium3)
cflags-$(CONFIG_MPENTIUMM)        += -march=i686 $(call tune,pentium3)
cflags-$(CONFIG_MPENTIUM4)        += -march=i686 $(call tune,pentium4)
cflags-$(CONFIG_MK6)                += -march=k6
# Please note, that patches that add -march=athlon-xp and friends are pointless.
# They make zero difference whatsosever to performance at this time.
cflags-$(CONFIG_MK7)                += $(call cc-option,-march=athlon,-march=i686 $(align)-functions=4)
cflags-$(CONFIG_MK                += $(call cc-option,-march=k8,$(call cc-option,-march=athlon,-march=i686 $(align)-functions=4))
cflags-$(CONFIG_MCRUSOE)        += -march=i686 $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
cflags-$(CONFIG_MEFFICEON)        += -march=i686 $(call tune,pentium3) $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
cflags-$(CONFIG_MWINCHIPC6)        += $(call cc-option,-march=winchip-c6,-march=i586)
cflags-$(CONFIG_MWINCHIP2)        += $(call cc-option,-march=winchip2,-march=i586)
cflags-$(CONFIG_MWINCHIP3D)        += $(call cc-option,-march=winchip2,-march=i586)
cflags-$(CONFIG_MCYRIXIII)        += $(call cc-option,-march=c3,-march=i486) $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
cflags-$(CONFIG_MVIAC3_2)        += $(call cc-option,-march=c3-2,-march=i686)

# AMD Elan support
cflags-$(CONFIG_X86_ELAN)        += -march=i486

# Geode GX1 support
cflags-$(CONFIG_MGEODEGX1)                += $(call cc-option,-march=pentium-mmx,-march=i486)

并把该文件复制到 /lib/modules/2.6.15-rc5/build/arch/i386下面,再安装,
当 Nvidia XXX.run 提示没有合适的kernel要从网上下载时,选no,其他的都yes
就 ok了
回复

使用道具 举报

 楼主| 发表于 2005-12-15 10:52:14 | 显示全部楼层
谢谢板猪,立刻进行!!!
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-25 15:18 , Processed in 0.049851 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

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