From 6cc23f324cb1fc6157710a7a60cc26834541cd2d Mon Sep 17 00:00:00 2001 From: trimstray Date: Mon, 18 Mar 2019 10:01:32 +0100 Subject: [PATCH] added 'system-other' (one-liners) sub-chapter - signed-off-by: trimstray --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index e0599a6..c2a1beb 100644 --- a/README.md +++ b/README.md @@ -1023,6 +1023,7 @@ Linux Security Expert - trainings, howtos, checklists, security tools an * [secure-delete](#tool-secure-delete) * [dd](#tool-dd) * [gpg](#tool-gpg) + * [system-other](#tool-system-other) - **[HTTP/HTTPS](#http-https)** * [curl](#tool-curl) * [httpie](#tool-httpie) @@ -1851,6 +1852,22 @@ gpg --keyserver hkp://keyserver.ubuntu.com --search-keys "" * `--keyserver` - set specific key server * `--search-keys` - search for keys on a key server +___ + +##### Tool: [system-other](https://github.com/trimstray/the-book-of-secret-knowledge#tool-system-other) + +###### Reboot system from init + +```bash +exec /sbin/init 6 +``` + +###### Init system from single user mode + +```bash +exec /sbin/init +``` + HTTP/HTTPS ##### Tool: [curl](https://curl.haxx.se)