mkswap, swap{on,off}: update page (#10607)

pull/23/head
Lena 2023-08-19 06:06:31 +02:00 committed by GitHub
parent c99cba5106
commit a6fb6d2631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 31 deletions

View File

@ -1,20 +1,17 @@
# mkswap # mkswap
> Sets up a Linux swap area on a device or in a file. > Set up a Linux swap area on a device or in a file.
> Note: `path/to/file` can either point to a regular file or a swap partition.
> More information: <https://manned.org/mkswap>. > More information: <https://manned.org/mkswap>.
- Setup a given partition as swap area: - Set up a given swap area:
`sudo mkswap {{/dev/sdb7}}`
- Use a given file as swap area:
`sudo mkswap {{path/to/file}}` `sudo mkswap {{path/to/file}}`
- Check a partition for bad blocks before creating the swap area: - Check a partition for bad blocks before creating the swap area:
`sudo mkswap -c {{/dev/sdb7}}` `sudo mkswap -c {{path/to/file}}`
- Specify a label for the file (to allow `swapon` to use the label): - Specify a label for the partition (to allow `swapon` to use the label):
`sudo mkswap -L {{swap1}} {{path/to/file}}` `sudo mkswap -L {{label}} {{/dev/sda1}}`

View File

@ -1,20 +1,17 @@
# swapoff # swapoff
> Disables device or file for swapping. > Disable devices and files for swapping.
> Note: `path/to/file` can either point to a regular file or a swap partition.
> More information: <https://manned.org/swapoff>. > More information: <https://manned.org/swapoff>.
- Disable a given swap partition: - Disable a given swap area:
`swapoff {{/dev/sdb7}}`
- Disable a given swap file:
`swapoff {{path/to/file}}` `swapoff {{path/to/file}}`
- Disable all swap areas: - Disable all swap areas in `/proc/swaps`:
`swapoff -a` `swapoff --all`
- Disable swap by label of a device or file: - Disable a swap partition by its label:
`swapoff -L {{swap1}}` `swapoff -L {{label}}`

View File

@ -1,24 +1,21 @@
# swapon # swapon
> Enables device or file for swapping. > Enable devices and files for swapping.
> Note: `path/to/file` can either point to a regular file or a swap partition.
> More information: <https://manned.org/swapon>. > More information: <https://manned.org/swapon>.
- Get swap information: - Show swap information:
`swapon -s` `swapon`
- Enable a given swap partition: - Enable a given swap area:
`swapon {{/dev/sdb7}}`
- Enable a given swap file:
`swapon {{path/to/file}}` `swapon {{path/to/file}}`
- Enable all swap areas: - Enable all swap areas specified in `/etc/fstab` except those with the `noauto` option:
`swapon -a` `swapon --all`
- Enable swap by label of a device or file: - Enable a swap partition by its label:
`swapon -L {{swap1}}` `swapon -L {{label}}`