- 论坛徽章:
- 0
|
本帖最后由 蓝色旅程 于 2010-11-16 17:24 编辑
正常情况下,32位只能支持3.25以下的
特殊情况下使用物理地址扩展 (PAE)技术来虚拟增加寻址位数
可以增大支持内存
但是 服务器的话不知道对性能要求有多高
例:增加四位寻址位linux系统的配置
安装 kernel-PAE.i686 内核,让系统内核支持PAE物理地址扩展
yum install kernel-PAE.i686
设置linux系统启动,让系统启用PAE的内核系统- # vi /boot/grub/grub.conf
- # grub.conf generated by anaconda
- #
- # Note that you do not have to rerun grub after making changes to this file
- # NOTICE: You do not have a /boot partition. This means that
- # all kernel and initrd paths are relative to /, eg.
- # root (hd0,0)
- # kernel /boot/vmlinuz-version ro root=/dev/sda1
- # initrd /boot/initrd-version.img
- #boot=/dev/sda
- default=0 (将default=1修改为default=0就可以了)
- timeout=5
- splashimage=(hd0,0)/boot/grub/splash.xpm.gz
- hiddenmenu
- title CentOS (2.6.18-92.1.6.el5PAE) 升级后的系统引导
- root (hd0,0)
- kernel /boot/vmlinuz-2.6.18-92.1.6.el5PAE ro root=LABEL=/ rhgb quiet
- initrd /boot/initrd-2.6.18-92.1.6.el5PAE.img
- title CentOS (2.6.18-8.el5) 升级前的系统引导
- root (hd0,0)
- kernel /boot/vmlinuz-2.6.18-8.el5 ro root=LABEL=/ rhgb quiet
- initrd /boot/initrd-2.6.18-8.el5.img
复制代码 保存后重启linux,系统内核就能最大支持64G内存了。 |
|