mirror of https://github.com/CrimsonTome/tldr.git
20 lines
280 B
Markdown
20 lines
280 B
Markdown
|
# swapoff
|
||
|
|
||
|
> Disables device or file for swapping.
|
||
|
|
||
|
- Disable a given swap partition:
|
||
|
|
||
|
`swapoff {{/dev/sdb7}}`
|
||
|
|
||
|
- Disable a given swap file:
|
||
|
|
||
|
`swapoff {{path/to/file}}`
|
||
|
|
||
|
- Disable all swap areas:
|
||
|
|
||
|
`swapoff -a`
|
||
|
|
||
|
- Disable swap by label of a device or file:
|
||
|
|
||
|
`swapoff -L {{swap1}}`
|