linux下增加swap分割槽

孤竹星發表於2015-03-25
1.建立swap分割槽
例如: 
# fdisk /dev/sdb Command (m for help): n 
Command action 
   e   extended 
   p   primary partition (1-4) 

Partition number (1-4): 1 
First cylinder (1-13054, default 1):  
Using default value 1 
Last cylinder or +size or +sizeM or +sizeK (1-13054, default 13054): +100M 
Command (m for help): t 
Selected partition 1 
Hex code (type L to list codes): 82 
Changed system type of partition 1 to 82 (Linux swap / Solaris) 
Command (m for help): w 
The partition table has been altered! 

2.同步分割槽表 
# partprobe

 
3.設定交換區 
# mkswap /dev/sdb1 

4.編輯/etc/fstab檔案 
新增如下內容: 
/dev/sdb1    swap    swap    defaults    0 0 

5.啟用swap分割槽 
# swapon -a 

6.驗證swap分割槽是否啟用
 
# swapon -s
 
Filename      Type         Size       Used   Priority 
/dev/sdb1    partition    104380    0       -2 

二、檔案方式 

1.建立檔案 
# dd if=/dev/zero of=/swapfile bs=1024 count=100
if=檔名:輸入檔名,預設為標準輸入。即指定原始檔。< if=input file >
of=檔名:輸出檔名,預設為標準輸出。即指定目的檔案。< of=output file >
bs=bytes:同時設定讀入/輸出的塊大小為bytes個位元組
count=blocks:僅複製blocks個塊,塊大小等於bs指定的位元組數。
1G=1024mb
1mb=1024kb
1kb=1024bytes

 

2.檢視檔案屬性 
# ls -lh /swapfile -rw-r--r-- 1 root root 100K Apr 24 16:54 /swapfile 

3.設定swap 
# mkswap /swapfile

 
4.編輯/etc/fstab檔案 
新增如下內容:
 
/swapfile    swap    swap    defaults    0 0 

5.啟用swap 
# swapon /swapfile 

6.驗證swap是否啟用 
# swapon -s 
Filename     Type    Size    Used    Priority 
/swapfile     file     92      0         -3 

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

相關文章