redhat linux 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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 擴充套件redhat linux as 5 的swap分割槽套件RedhatLinux
- linux下線上擴大擴充套件分割槽的方法Linux套件
- Linux主分割槽,擴充套件分割槽,邏輯分割槽Linux套件
- Ubunut擴充套件分割槽套件
- Linux主分割槽,擴充套件分割槽,邏輯分割槽[final]Linux套件
- Linux LVM 擴充套件磁碟分割槽LinuxLVM套件
- 擴充套件aix交換分割槽套件AI
- 帶default分割槽的列表分割槽表的擴充套件套件
- Linux 格式化擴充套件分割槽(Extended)Linux套件
- Linux 擴充套件磁碟分割槽(命令列操作)Linux套件命令列
- Linux 分割槽擴容(根分割槽擴容,SWAP 分割槽擴容,掛載新分割槽為目錄)Linux
- SQL Server大分割槽表沒有空分割槽的情況下如何擴充套件分割槽的方法SQLServer套件
- 如何在 Linux 中擴充套件 XFS 根分割槽Linux套件
- 在 Linux 下使用 fdisk 擴充套件分割槽容量Linux套件
- linux建立新分割槽擴充套件磁碟空間Linux套件
- Hash分割槽表的使用及擴充套件套件
- centos 擴充套件root根分割槽的大小CentOS套件
- Windows 8.1怎麼建立擴充套件分割槽?Windows套件
- Linux下擴充套件根檔案系統所在的分割槽Linux套件
- Linux 建立swap分割槽Linux
- Linux 增加 swap 分割槽Linux
- linux新增swap分割槽Linux
- 【Linux】分割槽向左擴容的方法Linux
- 擴充套件Linux虛擬機器硬碟、分割槽一例薦套件Linux虛擬機硬碟
- linux下增加swap分割槽Linux
- win10硬碟分割槽合併擴充套件卷沒法點怎麼解決 win10硬碟分割槽不能點擴充套件卷修復方法Win10硬碟套件
- (轉) linux下增加swap分割槽Linux
- 運維實戰:Linux系統擴充套件oracle資料庫所在的分割槽運維Linux套件Oracle資料庫
- HP-UX擴充套件swap空間UX套件
- linux中增加swap分割槽或檔案的步驟方法Linux
- 擴充linux swap空間Linux
- 再談Linux下的swap分割槽薦Linux
- aix擴充 交換分割槽的步驟AI
- Linux系統中管理Swap分割槽Linux
- Linux SWAP 交換分割槽配置說明Linux
- 在裝完Linux系統之後自己去修改Swap分割槽的大小(兩種方法)Linux
- Linux系統如何進行分割槽?swap分割槽是什麼?Linux
- 來看看兩種好玩的方法,擴充套件方法和分部方法套件