From 8f711b890b2a7eaa15d0e1ea9073b349b5437374 Mon Sep 17 00:00:00 2001 From: Alexey Avramov Date: Wed, 30 Jan 2019 07:36:32 +0900 Subject: [PATCH] fix readme --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2e20a06..8b1e9ad 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ Also look at [Why are low memory conditions handled so badly?](https://www.reddi - Use of [earlyoom](https://github.com/rfjakob/earlyoom). This is a simple and very lightweight OOM preventer written in C (the best choice for emedded and old systems). It has a minimum dependencies and can work with oldest kernels. - Use of [oomd](https://github.com/facebookincubator/oomd). This is a userspace OOM killer for linux systems whitten in C++ and developed by Facebook. Needs Linux 4.20+. - Use of nohang (maybe this is a good choice for modern desktops and servers if you need fine tuning). + The tools listed above may work at the same time on one computer. ## Some features @@ -67,14 +68,14 @@ To use `PSI` (pressure stall information): Please use the latest [release version](https://github.com/hakavlad/nohang/releases). Current version may be unstable. -Please download the latest stable version (v0.1): +To download the latest stable version (v0.1): ```bash $ wget -ct0 https://github.com/hakavlad/nohang/archive/v0.1.tar.gz $ tar xvzf v0.1.tar.gz $ cd nohang-0.1 ``` -or clone the latest unstable: +or to clone the latest unstable: ```bash $ git clone https://github.com/hakavlad/nohang.git $ cd nohang @@ -180,7 +181,7 @@ See also `man journalctl`. if you run ```bash -$ while true; do setsid /tail/dev/zero; done +$ while true; do setsid tail /dev/zero; done ``` ## Contribution