redhat linux swap分割槽擴充套件的三種方法

guyuanli發表於2009-07-20
swap 介紹:
當實體記憶體佔用完了後,當系統還需要更多的實體記憶體時,實體記憶體中inactive pages ,就move到swap空間。swap 空間是在位於硬碟上的,因此訪問速度較實體記憶體慢。
當機器的實體記憶體發生變化時,swap 分割槽也要做相應的擴充套件:
有三種方法可以對swap 分割槽進行擴充套件:
一、擴充套件正在使用的swap 分割槽的邏輯卷(推薦使用此種方式)
二、新建swap 分割槽,
三、新建swap file,[@more@]

具體步驟如下:
一、擴充套件正在使用的swap 分割槽的邏輯卷
設定用作swap 分割槽的邏輯卷為:/dev/VolGroup00/LogVol01
Disable swapping for the associated logical volume:
# swapoff -v /dev/VolGroup00/LogVol01
Resize the LVM2 logical volume by 256 MB:
# lvm lvresize /dev/VolGroup00/LogVol01 -L 256M
Format the new swap space:
# mkswap /dev/VolGroup00/LogVol01
Enable the extended logical volume:
# swapon -va
Test that the logical volume has been extended properly:
# cat /proc/swaps 或者# free
二、新建swap 分割槽
設定新建的swap 分割槽的邏輯卷為:/dev/VolGroup00/LogVol02
Create the LVM2 logical volume of size 256 MB:
# lvm lvcreate VolGroup00 -n LogVol02 -L 256M
Format the new swap space:
# mkswap /dev/VolGroup00/LogVol02
Add the following entry to the /etc/fstab file:
/dev/VolGroup00/LogVol02 swap swap defaults 0 0
Enable the extended logical volume:
# swapon -va
Test that the logical volume has been extended properly:
# cat /proc/swaps 或者# free
三、新建swapfile
透過此種方式進行swap 的擴充套件,首先要計算出block的數目。具體為根據需要擴充套件的swapfile的大小,以M為單位。block=swap分割槽大小*1024, 例如,需要擴充套件64M的swapfile,則:block=64*1024=65536.
然後做如下步驟:
dd if=/dev/zero of=/swapfile bs=1024 count=65536
Setup the swap file with the command:
mkswap /swapfile
To enable the swap file immediately but not automatically at boot time:
swapon /swapfile
To enable it at boot time, edit /etc/fstab to include the following entry:
/swapfile swap swap defaults 0 0
After adding the new swap file and enabling it, verify it is enabled by viewing the output of the command cat /proc/swaps 或者 free.
總結:三種方法都能對swap 分割槽進行擴充套件,但是推薦使用第一種方法。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7490392/viewspace-1024305/,如需轉載,請註明出處,否則將追究法律責任。

相關文章