Linux 安裝PAE核心

Federico發表於2018-05-30

  客戶軟體是部署在32位的CentOS5伺服器當中,CentOS5目前只能識別4G記憶體,需要安裝PAE核心,讓系統支援PAE實體地址擴充套件。
1.安裝PAE核心
yum -y install kernel-PAE.i686
2.修改grub啟動核心引數
vim /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 have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol01
#          initrd /initrd-version.img
#boot=/dev/sda
serial --unit=0 --speed=19200 --word=8 --parity=no --stop=1
terminal --timeout=3 serial console
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title CentOS (2.6.18-398.el5PAE)        #新新增的PAE核心相關引數
    root (hd0,0)
    kernel /vmlinuz-2.6.18-398.el5PAE ro root=/dev/VolGroup00/LogVol01 console=tty0 console=ttyS0,19200n8
    initrd /initrd-2.6.18-398.el5PAE.img
title CentOS (2.6.18-164.el5)           #舊的引數
    root (hd0,0)
    kernel /vmlinuz-2.6.18-164.el5 ro root=/dev/VolGroup00/LogVol01 console=tty0 console=ttyS0,19200n8
    initrd /initrd-2.6.18-164.el5.img

3.重啟伺服器並在後臺重新安裝vmtools。
  配置完核心引數重啟伺服器後,會發現網路卡會丟失,我們需要在後臺對該伺服器重新安裝vmtools,當vmtools安裝完成後,網路卡資訊可以直接更新,不需要再進行重啟。
4.可以直接檢視當前伺服器記憶體是否已經達到實際記憶體量。

相關文章