From 96845d62ca4ad78b192721d613ae80919efb6fb0 Mon Sep 17 00:00:00 2001 From: ismferd Date: Sun, 20 Oct 2019 21:01:05 +0200 Subject: [PATCH] adding new Linux answers --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 493d6f7..c339d69 100644 --- a/README.md +++ b/README.md @@ -571,12 +571,18 @@ The tasks are stored in a cron file.
Have you scheduled tasks in the past? What kind of tasks?
+ +Normally you will schedule batch jobs. +
##### Permissions
How to change the permissions of a file?
+ +Using the `chmod` command. +
@@ -597,10 +603,16 @@ The tasks are stored in a cron file.
How to add a new user to the system without providing him the ability to log-in into the system?
+ + * adduser user_name --shell=/bin/false --no-create-home +
On a system which uses systemd, how would display the logs? + + * journactl +
##### Debugging