
Linux swapoff 命令
Linux 中的 swapoff 命令用于停用系统的交换空间(swap area)。
swapoff 实际上是 swapon 的符号链接,可以用来关闭系统中的交换区域。
语法格式
swapoff [设备]
参数说明:
- -a 关闭在 /etc/fstab 文件中定义的所有 swap 设备
- -h 显示帮助信息
- -V 显示版本信息
使用示例
查看磁盘分区信息:
# sfdisk -l // 查看分区详情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
关闭指定的交换分区:
swapoff /dev/sda2 // 停用交换分区










