Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

29
tldr/sysbench Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# sysbench
> Benchmark a System's CPU, IO and memory.
> More information: <https://github.com/akopytov/sysbench/>.
- Run a CPU benchmark with 1 thread for 10 seconds:
`sysbench cpu run`
- Run a CPU benchmark with multiple threads for a specified time:
`sysbench --threads={{number_of_threads}} --time={{seconds}}`
- Run a memory benchmark with 1 thread for 10 seconds:
`sysbench memory run`
- Prepare a filesystem-level read benchmark:
`sysbench fileio prepare`
- Run a filesystem-level benchmark:
`sysbench --file-test-mode={{rndrd|rndrw|rndwr|seqrd|seqrewr|seqwr}} fileio run`