redhat linux swap分区扩展的三种方法详解
redhat linux swap分区扩展的三种方法
swap 介绍:
当物理内存占用完了后,当系统还需要更多的物理内存时,物理内存中inactive pages ,就move到swap空间。swap 空间是在位于硬盘上的,因此访问速度较物理内存慢。
当机器的物理内存发生变化时,swap 分区也要做相应的扩展:
有三种方法可以对swap 分区进行扩展:
一、扩展正在使用的swap 分区的逻辑卷(推荐使用此种方式)
二、新建swap 分区,
三、新建swap file,
具体步骤如下:
一、扩展正在使用的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 分区进行扩展,但是推荐使用第一种方法。