手動建立和掛載swap 分區

1、使用fdisk 在設備上建立swap分區。linux

1.建立分區ide

Command (m for help): n
Command action
   l   logical (5 or over)
   p   primary partition (1-4)
l
First cylinder (641-1566, default 641):
Using default value 641
Last cylinder or +size or +sizeM or +sizeK (641-890, default 890):
Using default value 890spa

Command (m for help): pcode

Disk /dev/sda: 12.8 GB, 12884901888 bytes
255 heads, 63 sectors/track, 1566 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytesit

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1           6       48163+  83  Linux
/dev/sda2               7         515     4088542+  83  Linux
/dev/sda3             516        1566     8442157+   5  Extended
/dev/sda5             891        1015     1004031   83  Linux
/dev/sda6            1016        1566     4425876   83  Linux
/dev/sda7             516         640     1004031   83  Linux
/dev/sda8             641         890     2008093+  83  Linuxio

 

2.指定分區類型爲linux swap。這裏的/dev/sda5就是咱們要作swap的分區。
Command (m for help): t
Partition number (1-8): 5
Hex code (type L to list codes): 82ast

Command (m for help): pclass

Disk /dev/sda: 12.8 GB, 12884901888 bytes
255 heads, 63 sectors/track, 1566 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes配置

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1           6       48163+  83  Linux
/dev/sda2               7         515     4088542+  83  Linux
/dev/sda3             516        1566     8442157+   5  Extended
/dev/sda5             516         640     1004031   82  Linux swap
/dev/sda6             641         890     2008093+  83  Linux
/dev/sda7             891        1015     1004031   83  Linux
/dev/sda8            1016        1566     4425876   83  Linux
3.使用mkswap命令設置交換分區
[root@libydwei /]# mkswap /dev/sda5
Setting up swapspace version 1, size = 1028120 kBfile

4.swapon 激活swap分區

[root@libydwei /]# swapon /dev/sda5
5.爲了可以在系統啓動是自動掛載。咱們能夠編輯/etc/fstab配置文件。

在文件末尾增長:

/dev/sda5               swap                    swap    defaults        0 0

2、使用文件建立swap分區

bs  blocksize ,每一個塊大小爲1k.count=2048000。則總大小爲2G的文件。

1. dd if=/dev/zero of=/swapfile bs=1k count=2048000

2. mkswap /swapfile

3. swapon /swapfile

4. 修改/etc/fstab使其啓動時自動mount:

在/etc/fstab中增長以下語句:

/swapfile  swap  swap    defaults 0 0

相關文章
相關標籤/搜索