Linux swapoff命令

Linux 命令大全 Linux 命令大全

Linux swapoff命令用于關(guān)閉系統(tǒng)交換區(qū)(swap area)。

swapoff實(shí)際上為swapon的符號(hào)連接,可用來關(guān)閉系統(tǒng)的交換區(qū)。

語法

swapoff [設(shè)備]

參數(shù):

  • -a 將/etc/fstab文件中所有設(shè)置為swap的設(shè)備關(guān)閉
  • -h 幫助信息
  • -V 版本信息

實(shí)例

顯示分區(qū)信息:

# sfdisk -l //顯示分區(qū)信息

Disk /dev/sda: 1305 cylinders, 255 heads, 63 sectors/track
Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0

  Device Boot Start   End  #cyls  #blocks  Id System
/dev/sda1  *   0+   12   13-  104391  83 Linux
/dev/sda2     13  1304  1292  10377990  8e Linux LVM
/dev/sda3     0    -    0     0  0 Empty
/dev/sda4     0    -    0     0  0 Empty

Disk /dev/sdb: 652 cylinders, 255 heads, 63 sectors/track

sfdisk: ERROR: sector 0 does not have an msdos signature
/dev/sdb: unrecognized partition
No partitions found

關(guān)閉交換分區(qū)。

# swapoff /dev/sda2 // 關(guān)閉交換分區(qū)

Linux 命令大全 Linux 命令大全