2017-04-07 04:26:00 +01:00
|
|
|
# zramctl
|
|
|
|
|
|
|
|
> Setup and control zram devices.
|
2020-02-28 13:34:55 +00:00
|
|
|
> Use `mkfs` or `mkswap` to format zram devices to partitions.
|
2021-10-04 05:00:39 +01:00
|
|
|
> More information: <https://manned.org/zramctl>.
|
2017-04-07 04:26:00 +01:00
|
|
|
|
|
|
|
- Check if zram is enabled:
|
|
|
|
|
|
|
|
`lsmod | grep -i zram`
|
|
|
|
|
2020-02-28 13:34:55 +00:00
|
|
|
- Enable zram with a dynamic number of devices (use `zramctl` to configure devices further):
|
|
|
|
|
|
|
|
`sudo modprobe zram`
|
|
|
|
|
|
|
|
- Enable zram with exactly 2 devices:
|
2017-04-07 04:26:00 +01:00
|
|
|
|
|
|
|
`sudo modprobe zram num_devices={{2}}`
|
|
|
|
|
2022-06-27 11:23:12 +01:00
|
|
|
- Find and initialize the next free zram device to a 2 GB virtual drive using LZ4 compression:
|
2017-04-07 04:26:00 +01:00
|
|
|
|
|
|
|
`sudo zramctl --find --size {{2GB}} --algorithm {{lz4}}`
|
|
|
|
|
2022-06-27 11:23:12 +01:00
|
|
|
- List currently initialized devices:
|
2017-04-07 04:26:00 +01:00
|
|
|
|
|
|
|
`zramctl`
|