From ec5ec1da9b24e7483e428d59830b481e98170242 Mon Sep 17 00:00:00 2001
From: Mahfujur Rahman <86429736+mahfujur036@users.noreply.github.com>
Date: Sat, 27 Dec 2025 20:16:28 +0600
Subject: [PATCH] Update README.md (#10616)
Added missing answers to 2 quesions, one on ACLs, one on Service files.
---
topics/linux/README.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/topics/linux/README.md b/topics/linux/README.md
index 91696aa..75e95da 100644
--- a/topics/linux/README.md
+++ b/topics/linux/README.md
@@ -448,6 +448,8 @@ True
Explain what are ACLs. For what use cases would you recommend to use them?
+ACL stands for Access Control Lists. We can use ACL to have more granular control over accesses to certain files for certain users specifically. For instance, we can return the ACL of a particular file with the command getfacl /absolute/file/path and modify ACLs for a specific file with setfacl -m.
+
@@ -524,6 +526,7 @@ To stop a service: `systemctl stop `
Describe how to make a certain process/app a service
+ The process will need a .service file to be created at the location /etc/systemd/system/service-name.service to be made into a service. The file has certain characteristics and need certain inputs to work. More details here.
### Troubleshooting and Debugging