You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
352 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# swapoff
## 说明
**swapoff命令** 用于关闭指定的交换空间包括交换文件和交换分区。swapoff实际上为swapon的符号连接可用来关闭系统的交换区
## 选项
```markdown
-a关闭配置文件“/etc/fstab”中所有的交换空间
```
## 实例
```bash
swapoff /dev/sda2 # 关闭交换分区
```