转载自:
源参考自:http://blog.sina.com.cn/s/blog_695aef260100utp2.html
因安装系统后的linux-2.6.32没有支持新intel显卡驱动,分辨率无法达到1366x768,显示效果比较差。
查阅网上一些文章说升级内核可解决,于是找到这样一篇文章
以下均为root用户操作,debian用sudo命令
1、备份
sudo cp /boot /root -R
2、编辑sources.list
sudo nano /etc/apt/sources.list
3、增加squeeze-backports源
deb squeeze-backports
main contrib non-free
deb-src
squeeze-backports main contrib non-free
deb squeeze-backports main
contrib non-free
deb-src squeeze-backports
main contrib non-free
4、更新源
sudo apt-get update
5、安装linux-2.6.38
sudo apt-get install -t squeeze-backports linux-image-2.6.38-bpo.2-amd64
安装后有一些确认,直接回车回车
6、重启完成安装
sudo shutdown -r 0
OK搞定install -t squeeze-backports linux-image-2.6.38-bpo.2-amd64
安装后有一些确认,直接回车回车
6、重启完成安装
sudo shutdown -r 0
OK搞定
----------------------------------------------
因为linux-2.6.38的kernel经常会引起死机,一度以为是因为我把系统整得很乱,重装一次发现还是会死机,才怀疑到kernel上来。
为了解决该问题,就想着卸载掉这个kernel,并查找其他可用的kernel来安装
1、查找其他kernel
$sudo aptitude search linux-image
找到三个kernel,分别是2.6.32、2.6.38和2.6.39; 32和38都已经安装过了,只能用39试一下
2、重启进入2.6.32系统卸载2.6.38
$sudo apt-get remove linux-image-2.6.38-bpo.2-amd64
3、重启,2.6.38已经被卸载,grub上只有2.6.32可选
4、安装2.6.39的kernel
$sudo apt-get install -t squeeze-backports linux-image-2.6.39-bpo.2-amd64
$sudo reboot
2.6.39版本还需要跑一段时间,试下会不会稳定,或者就只能等新的kernel放出了
阅读(4266) | 评论(0) | 转发(0) |