1. 程式人生 > >Centos7不修改預設交換分割槽下新增交換分割槽

Centos7不修改預設交換分割槽下新增交換分割槽

交換分割槽介紹

Linux系統中的交換分割槽是當實體記憶體(RAM)被充滿時,作為實體記憶體的快取來使用。
當系統需要更多的記憶體資源而實體記憶體已經充滿,記憶體中不活躍的頁就會被移動到交換分割槽上。
交換分割槽位於硬碟上,所以它的存取速度比實體記憶體要慢。

一般情況下,交換分割槽的大小應當相當於計算機記憶體的兩
倍,但不能超過2048MB。

環境介紹

[[email protected] ~]# fdisk -l
磁碟 /dev/vda:8589 MB, 8589934592 位元組,16777216 個扇區
Units = 扇區 of 1 * 512 = 512 bytes
扇區大小(邏輯/物理):512 位元組 / 512 位元組
I/O 大小(最小/最佳):512 位元組 / 512 位元組
磁碟標籤型別:dos
磁碟識別符號:0x0009fddc

   裝置 Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048     8194047     4096000   83  Linux
/dev/vda2         8194048     9242623      524288   82  Linux swap / Solaris
/dev/vda3         9242624    10061823      409600   8e  Linux LVM
/dev/vda4        10061824    16777215     3357696    5  Extended
/dev/vda5        10063872    11112447      524288   82  Linux swap / Solaris

磁碟 /dev/mapper/vg0-vo:306 MB, 306184192 位元組,598016 個扇區
Units = 扇區 of 1 * 512 = 512 bytes
扇區大小(邏輯/物理):512 位元組 / 512 位元組
I/O 大小(最小/最佳):512 位元組 / 512 位元組

之前在系統上已經加了一個vda5-512M的交換分割槽,
這裡再加一個100M左右的交換分割槽。

實驗過程

步驟1
建立swap交換分割槽

[[email protected] ~]# fdisk /dev/vda 
歡迎使用 fdisk (util-linux 2.23.2)。

更改將停留在記憶體中,直到您決定將更改寫入磁碟。
使用寫入命令前請三思。

命令(輸入 m 獲取幫助):n ##新建分割槽
All primary partitions are in use
新增邏輯分割槽 6  ##設定碟符
起始 扇區 (11114496-16777215,預設為 11114496):##扇區預設
將使用預設值 11114496
Last 扇區, +扇區 or +size{K,M,G} (11114496-16777215,預設為 16777215):+100M  ##碟符大小設定
分割槽 6 已設定為 Linux 型別,大小設為 100 MiB

命令(輸入 m 獲取幫助):t ##修改碟符為swap
分割槽號 (1-6,預設 6):6
Hex 程式碼(輸入 L 列出所有程式碼):82
已將分割槽“Linux”的型別更改為“Linux swap / Solaris”

命令(輸入 m 獲取幫助):w ##儲存配置
The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: 裝置或資源忙.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
正在同步磁碟。
[
[email protected]
~]# partprobe ##初始化kernal的碟符列表

步驟2
設定新建立的swap碟符交換空間

[[email protected] ~]# mkswap /dev/vda6
正在設定交換空間版本 1,大小 = 102396 KiB
無標籤,UUID=4a424ab0-283e-483b-b3f6-f3e5ee1a7570

步驟3
使能交換分割槽,並加入開機啟動編輯fstab檔案

[[email protected] ~]# swapon -a && swapon /dev/vda6
[[email protected]
~]# vim /etc/fstab # /etc/fstab # Created by anaconda on Mon May 30 16:17:24 2016 # # Accessible filesystems, by reference, are maintained under '/dev/disk' # See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info # UUID=954fe550-b7ea-4c51-85bf-38a54cf6c0d0 / xfs defaults 1 1 /dev/mapper/vg0-vo /home xfs defaults 1 2 UUID=42ac954f-c4cc-404d-b4dc-7a0339c43349 swap swap defaults 0 0 /dev/vda5 swap swap defaults 0 0 /dev/vda6 swap swap defaults 0 0

步驟4
驗證一下

[[email protected] ~]# swapon 
NAME      TYPE      SIZE  USED PRIO
/dev/vda2 partition 512M 47.5M   -1
/dev/vda5 partition 512M    0B   -2
/dev/vda6 partition 100M    0B   -3

[[email protected] ~]# fdisk -l

磁碟 /dev/vda:8589 MB, 8589934592 位元組,16777216 個扇區
Units = 扇區 of 1 * 512 = 512 bytes
扇區大小(邏輯/物理):512 位元組 / 512 位元組
I/O 大小(最小/最佳):512 位元組 / 512 位元組
磁碟標籤型別:dos
磁碟識別符號:0x0009fddc

   裝置 Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048     8194047     4096000   83  Linux
/dev/vda2         8194048     9242623      524288   82  Linux swap / Solaris
/dev/vda3         9242624    10061823      409600   8e  Linux LVM
/dev/vda4        10061824    16777215     3357696    5  Extended
/dev/vda5        10063872    11112447      524288   82  Linux swap / Solaris
/dev/vda6        11114496    11319295      102400   82  Linux swap / Solaris

磁碟 /dev/mapper/vg0-vo:306 MB, 306184192 位元組,598016 個扇區
Units = 扇區 of 1 * 512 = 512 bytes
扇區大小(邏輯/物理):512 位元組 / 512 位元組
I/O 大小(最小/最佳):512 位元組 / 512 位元組

額外的

刪除交換分割槽

[[email protected] ~]# swapoff /dev/vda6  ##停用這個
[[email protected] ~]# fdisk /dev/vda 
歡迎使用 fdisk (util-linux 2.23.2)。

更改將停留在記憶體中,直到您決定將更改寫入磁碟。
使用寫入命令前請三思。


命令(輸入 m 獲取幫助):p

磁碟 /dev/vda:8589 MB, 8589934592 位元組,16777216 個扇區
Units = 扇區 of 1 * 512 = 512 bytes
扇區大小(邏輯/物理):512 位元組 / 512 位元組
I/O 大小(最小/最佳):512 位元組 / 512 位元組
磁碟標籤型別:dos
磁碟識別符號:0x0009fddc

   裝置 Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048     8194047     4096000   83  Linux
/dev/vda2         8194048     9242623      524288   82  Linux swap / Solaris
/dev/vda3         9242624    10061823      409600   8e  Linux LVM
/dev/vda4        10061824    16777215     3357696    5  Extended
/dev/vda5        10063872    11112447      524288   82  Linux swap / Solaris
/dev/vda6        11114496    11319295      102400   82  Linux swap / Solaris

命令(輸入 m 獲取幫助):d ##刪除vda6
分割槽號 (1-6,預設 6):6
分割槽 6 已刪除

命令(輸入 m 獲取幫助):p

磁碟 /dev/vda:8589 MB, 8589934592 位元組,16777216 個扇區
Units = 扇區 of 1 * 512 = 512 bytes
扇區大小(邏輯/物理):512 位元組 / 512 位元組
I/O 大小(最小/最佳):512 位元組 / 512 位元組
磁碟標籤型別:dos
磁碟識別符號:0x0009fddc

   裝置 Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048     8194047     4096000   83  Linux
/dev/vda2         8194048     9242623      524288   82  Linux swap / Solaris
/dev/vda3         9242624    10061823      409600   8e  Linux LVM
/dev/vda4        10061824    16777215     3357696    5  Extended
/dev/vda5        10063872    11112447      524288   82  Linux swap / Solaris

命令(輸入 m 獲取幫助):w
The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: 裝置或資源忙.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
正在同步磁碟。
[[email protected] ~]# partprobe  ##初始化
[[email protected] ~]# vim /etc/fstab 
[[email protected] ~]# cat /etc/fstab |grep vda6
#/dev/vda6 swap swap defaults 0 0  ##註釋或刪除

簡書連結
END