耐心无止境 成功一瞬间
BlogJava
联系
聚合
管理
31 Posts :: 5 Stories :: 25 Comments :: 0 Trackbacks
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(3)
给我留言
查看公开留言
查看私人留言
随笔分类
(30)
flex(1)
Java(12)
Linux(10)
tuscany(1)
Web(6)
生活
随笔档案
(31)
2009年6月 (1)
2009年4月 (1)
2009年3月 (1)
2008年12月 (2)
2008年11月 (1)
2008年10月 (2)
2008年9月 (1)
2008年8月 (6)
2008年6月 (1)
2008年5月 (2)
2008年4月 (2)
2008年3月 (2)
2008年1月 (5)
2006年10月 (1)
2005年11月 (1)
2005年10月 (1)
2005年9月 (1)
文章分类
(1)
Java(1)
文章档案
(5)
2005年10月 (4)
2005年7月 (1)
My links
jack.wang
Will Iverson's Blog
江南白衣
搜索
最新评论
1. re: 判断js函数是否存在,如果存在则执行[未登录]
嗯嗯
--aa
2. re: 判断js函数是否存在,如果存在则执行
给力!
--你猜啊
3. re: 感受dell 客户关怀部的“关怀”与技术支持的“支持”(原创)
我的1425的机子也一样啊,蓝屏,暗屏,键盘左上角热的吓人,找他们客服也没人答理,太让人失望了
--戴尔太令人人失户了
4. re: linux 下netbeans不能使用调试功能;tomcat shutdown出现拒绝链接(connection refused)提示
评论内容较长,点击标题查看
--找个美女做老婆
5. re: 感受dell 客户关怀部的“关怀”与技术支持的“支持”(原创)
同样的受害者,买了就上当了。唉总以为自己是最倒霉的,原来大家都差不多啊,没有更好的办法,算了吧,凑合着用,等下次更新的时候小心点就是了。如果要走维权的路,恐怕谁也耗不起。
--阿
阅读排行榜
1. 判断js函数是否存在,如果存在则执行(7745)
2. linux 下netbeans不能使用调试功能;tomcat shutdown出现拒绝链接(connection refused)提示(5175)
3. document.body.scrollTop 值总为0的解决方法(转载)(4208)
4. 感受dell 客户关怀部的“关怀”与技术支持的“支持”(原创)(3914)
5. How to resovle "configure: error: C preprocessor "/lib/cpp" fails sanity check "(2904)
评论排行榜
1. 感受dell 客户关怀部的“关怀”与技术支持的“支持”(原创)(15)
2. 注意properties的使用(4)
3. 判断js函数是否存在,如果存在则执行(2)
4. firefox 3下听在线音乐 (1 听)(1)
5. linux 下netbeans不能使用调试功能;tomcat shutdown出现拒绝链接(connection refused)提示(1)
为什么在fedora下面不能安装新的nvidia驱动呢
我的显卡是Geforce8600GT,在fedora8下安装新的驱动(169.xx)后竟然无法进入系统。
在显示登录界面前,屏幕变灰,然后在屏幕的中央出现一条垂直的黑色宽的竖条,登录界面根本就不显示。
不知道什么原因,向nvidia报bug也没有回复。
在ubuntu下竟然可以使用源里面的驱动,运行非常流畅。
posted on 2008-03-08 22:25
Joshua Yan
阅读(1180)
评论(1)
编辑
收藏
所属分类:
Linux
Feedback
#
re: 为什么在fedora下面不能安装新的nvidia驱动呢
2008-03-09 20:33
Joshua Yan
经过网上fedora论坛的大虾帮忙,我终于成功安装了驱动,留下个脚印吧。
1. download the 100.14.19 driver from the nvidia site.
http://www.nvidia.com/object/linux_d...100.14.19.html
2. logout. at the login screen, press ctrl+alt+f1 (or whatever) to go to text console and login.
3. stop gdm (or kdm, if you're using KDE).
Code:
sudo /etc/init.d/gdm stop
4. install the nvidia 100.14.19 driver (instructions on nvidia website).
5. reboot.
Code:
sudo reboot
6. ubuntu might display a warning about low resolution etc, continue. (if you are at this step, it means you haven't got the white screen).
7. adjust the resolution, if you wish.
8. go to system tools -> nvidia settings. if this menu option is not there, it means the driver was not installed properly. go back.
9. if you get a message saying the driver "nvidia" is not enabled, enable it by going to system -> administration -> restricted device manager. enable the driver.
10. may need to reboot at this time.
11. make sure you don't have get white screen. log in. you may see the low resolution dialog again. adjust if you wish.
12. open nvidia settings. at this point, nvidia-settings should be properly displaying all the options.
13. under GPU0, select DFP-0 (in my case, DFP0 - Seiko). you should see a button "Acquire EDID". click it, you will be prompted to save a file. save it somewhere(for eg ~/edid.bin) and copy it to /etc/X11 (for convenience). THIS IS THE KEY STEP. GET THE EDID.
Code:
sudo cp ~/edid.bin /etc/X11/edid.bin
14. remember to thank destny.
15. logout. go to text console (ctrl+alt+f1). login (text console).
16. run envy in text mode.
Code:
sudo envy -t
17. in envy, clean any earlier nvidia driver installation (100.14.19).
18. in envy, install the new nvidia driver. let envy configure xorg.conf, but do not reboot.
19. open the xorg.conf file
Code:
sudo nano /etc/X11/xorg.conf
look for section "Device". Add the following line:
Code:
Option "CustomEDID" "DFP-0:/etc/X11/edid.bin"
thank destny for this.
20. under section "Screen", subsection "Display", make sure your default mode is listed. it wasn't in my case. i added "1280x800" "1024x768" "800x600" to the Modes line.
21. save and close xorg.conf, reboot.
22. at the gui login screen, you may notice that the resolution is still not proper. if so, login and adjust the resolution. also make sure you can see all the options in nvidia-settings.
23. you're set. i rebooted once again just to make sure things were smooth.
24. thank destny.
25. get back to work.
可以不用envy安装驱动,可以手动安装或者用yum安装,然后添加那个EDID的选项就可以了。
终于可以使用新的驱动了,太高兴了。
os: fedora 8
graphic card: Geforce 8600M GT
driver version: 169.12
回复
更多评论
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
linux下安装VPN客户端
mplayer 下播放rmvb文件
fedora9 下触摸板设置备忘
firefox 3下听在线音乐 (1 听)
vim手册(转载)
fedora 9没有声音的解决方法
为什么在fedora下面不能安装新的nvidia驱动呢
解决fedora8下“Desktop effect ....not enabled”问题
linux上应用指纹识别(转载)
How to resovle "configure: error: C preprocessor "/lib/cpp" fails sanity check "
Powered by:
BlogJava
Copyright © Joshua Yan