Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

30
linux/zramctl Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# zramctl
> Setup and control zram devices.
> Use `mkfs` or `mkswap` to format zram devices to partitions.
> More information: <https://manned.org/zramctl>.
- Check if zram is enabled:
`lsmod | grep -i zram`
- Enable zram with a dynamic number of devices (use `zramctl` to configure devices further):
`sudo modprobe zram`
- Enable zram with exactly 2 devices:
`sudo modprobe zram num_devices={{2}}`
- Find and initialize the next free zram device to a 2 GB virtual drive using LZ4 compression:
`sudo zramctl --find --size {{2GB}} --algorithm {{lz4}}`
- List currently initialized devices:
`zramctl`