From 45346ffdc94a4f02413cddbf485dc4e898d77716 Mon Sep 17 00:00:00 2001 From: trimstray Date: Mon, 9 Jul 2018 20:54:10 +0200 Subject: [PATCH] updated README.md - new one liners and Security/hardening - signed-off-by: trimstray --- README.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a032955..f0e5885 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Awesome - Status @@ -223,6 +223,7 @@ performance of any of your sites from across the globe.

  :small_orange_diamond: Emerald Onion - Seattle-based encrypted-transit internet service provider.
+  :small_orange_diamond: unbound - validating, recursive, and caching DNS resolver (with TLS).

#### Lists @@ -518,6 +519,33 @@ tail -10000 access_log | awk '{print $1}' | sort | uniq -c | sort -n | tail ___ +##### Tool: [tar](https://en.wikipedia.org/wiki/Tar_(computing)) + +###### System backup with exclude specific directories + +```bash +tar -czvpf /mnt/system$(date +%d%m%Y%s).tgz --directory=/ --exclude=proc/* --exclude=sys/* --exclude=dev/* --exclude=mnt/* . +``` + +___ + +##### Tool: [dump](https://en.wikipedia.org/wiki/Dump_(program)) + +###### System backup to file + +```bash +dump -y -u -f /backup/system$(date +%d%m%Y%s).lzo / +``` + +###### Restore system from lzo file + +```bash +cd / +restore -rf /backup/system$(date +%d%m%Y%s).lzo +``` + +___ + ##### Tool: [cpulimit](http://cpulimit.sourceforge.net/) ###### Limit the cpu usage of a process