[求助]how to add nomodeset to the boot options in /boot/grub/menu.lst?

今天手动安装OPENSUSE11.3的NVIDIA显卡驱动,WiKi上说Add nomodeset to the boot options in /boot/grub/menu.lst.
请问各位有谁知道怎么加上那个boot options 吗?
最好把代码一起上上,谢谢各位了

作者: relishthemoment   发布时间: 2011-01-11

本帖最后由 shenhao0129 于 2011-1-11 17:36 编辑

就像这个样子,修改/boot/grub/menu.lst
  1. # Config file for GRUB - The GNU GRand Unified Bootloader
  2. # /boot/grub/menu.lst

  3. # DEVICE NAME CONVERSIONS
  4. #
  5. #  Linux           Grub
  6. # -------------------------
  7. #  /dev/fd0        (fd0)
  8. #  /dev/sda        (hd0)
  9. #  /dev/sdb2       (hd1,1)
  10. #  /dev/sda3       (hd0,2)
  11. #

  12. #  FRAMEBUFFER RESOLUTION SETTINGS
  13. #     +-------------------------------------------------+
  14. #          | 640x480    800x600    1024x768   1280x1024
  15. #      ----+--------------------------------------------
  16. #      256 | 0x301=769  0x303=771  0x305=773   0x307=775
  17. #      32K | 0x310=784  0x313=787  0x316=790   0x319=793
  18. #      64K | 0x311=785  0x314=788  0x317=791   0x31A=794
  19. #      16M | 0x312=786  0x315=789  0x318=792   0x31B=795
  20. #     +-------------------------------------------------+
  21. #  for more details and different resolutions see
  22. #  http://wiki.archlinux.org/index.php/GRUB#Framebuffer_Resolution

  23. # general configuration:
  24. timeout   5
  25. default   0
  26. color light-blue/black light-cyan/blue

  27. # boot sections follow
  28. # each is implicitly numbered from 0 in the order of appearance below
  29. #
  30. # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
  31. #
  32. #-*

  33. # (0) Arch Linux
  34. title  Arch Linux
  35. root   (hd0,5)
  36. kernel /boot/vmlinuz26 root=/dev/sda6 ro nomodeset  
  37. initrd /boot/kernel26.img

  38. # (1) Arch Linux
  39. title  Arch Linux Fallback
  40. root   (hd0,5)
  41. kernel /boot/vmlinuz26 root=/dev/sda6 ro nomodeset
  42. initrd /boot/kernel26-fallback.img
复制代码

作者: shenhao0129   发布时间: 2011-01-11

shenhao0129
你这不是原生的openSUSE下配置吧,你只是给我举个例子是吧。
那个我发现不用搞那些了,我按照《SDB:NVIDIA the hard way》里说的编辑/etc/sysconfig/kernel and set NO-KMS-IN-INITRD = yes ,然后我就更新kernel-source以及相关的,等我更新完之后我发现显卡驱动已经装好了(我点击计算机显示的信息),而且桌面都变了有些效果以前没有现在又了。看来这更新是把显卡驱动也装好了吧。(呵呵~~省事儿了哦 )。
我现在又有个问题了,更新完驱动他自动安装好之后,感觉桌面的字体好小,打开的每个窗口字体都好小,应该怎么设置才能变大点儿?是不是分辨率不对?但是我在NVIDIA设置里 设置的是1440X900应该没错,字体为什么就那么小呢?看着很不舒服。希望能帮我解决下

作者: relishthemoment   发布时间: 2011-01-11