Category: Anything Linux

Q & A: Linux: Switch Users, Boot Process, File System

Quiz: Root Access, Boot Process, File Systems, Partitions, and Mounting 1. True/False The root user is the superuser account and has the highest access rights on a Linux system. Answer: True 2. True/False It is recommended to stay logged in as root for normal daily work because it is faster. Answer: FalseExplanation: Staying logged in …

Continue reading

Special Permissions: SUID, SGID, sticky bit

Linux Special Permissions: SUID, SGID, and Sticky Bit Linux normally uses three permission groups: And three basic permissions: Example: Output: But Linux also has special permissions: They appear in ls -l output as: 1. SUID — Set User ID Meaning SUID means: When an executable file runs, it runs with the permission of the file …

Continue reading

Why? Max permissions on a file: 666? what if I give 777?

When people say: Max permissions on a file: 666 they usually mean default maximum permissions when a new regular file is created, not the maximum you can manually set. 1. Default maximum for new files: 666 For a new regular file, Linux normally starts from: That means: No execute permission by default. Why? Because most …

Continue reading

Define and describe Selinux in general terms

SELinux stands for Security-Enhanced Linux. It is a Linux security system that adds an extra layer of protection to the operating system. It controls what users, programs, services, and processes are allowed to do. A simple definition: SELinux is a security feature in Linux that enforces strict rules about which processes can access which files, …

Continue reading

Linux: setfacl remove a user completely

To remove a specific user completely from ACL permissions, use setfacl -x. Remove a user ACL from a file Example: Check: Remove a user ACL from a directory Example: If the directory has default ACLs too For directories, a user may have: Remove both: Or in one command: Remove user ACL recursively To remove that …

Continue reading

Linux: Regular Permissions (symbolic/numeric) vs ACL

Linux has two main permission layers: 1. Traditional UGO permissions UGO means: Example: means: Another example: means: So 777 is very broad. It gives everyone full access. So: This is usually not safe, especially for shared systems. 2. ACL permissions ACL means Access Control List. ACL lets you give permission to specific extra users or …

Continue reading

Linux: ACL vs Selinux

ACL vs SELinux ACL and SELinux both control access, but they work at different levels. Feature ACL SELinux Full name Access Control List Security-Enhanced Linux Main purpose Give extra file permissions to specific users/groups Enforce system-wide security policy Access model DAC: Discretionary Access Control MAC: Mandatory Access Control Controlled by File owner/root SELinux policy/root Works …

Continue reading

20 mixed quiz questions on Quoting and Control Statements.

20 mixed quiz questions on Quoting and Control Statements. Quiz: Quoting and Control Statements True/False Questions 1. True/False Double quotes prevent all shell interpretation, including variable substitution and command substitution. Answer: FalseExplanation: Double quotes prevent some special character interpretation, but they still allow variable substitution and command substitution. 2. True/False Single quotes prevent the shell …

Continue reading

30 mixed quiz questions on Linux Command Line Skills

30 mixed quiz questions on Linux Command Line Skills. They include TF, MCQ, Multi-select, Matching, Ordering, Fill in the Blank with Choices, and Short Answer questions, testing concept knowledge, hands-on command skills, analysis, and higher-order thinking. Quiz: Command Line Skills True/False Questions 1. True/False The command line interface is slower than the GUI and provides …

Continue reading

20 mixed quiz questions Intro to Linux

Below are 20 mixed quiz questions Intro to Linux. They include TF, MCQ, Multi-select, Matching, Ordering, Fill in the Blank, and Short Answer questions, with concept, hands-on, analytical, and higher-order learning coverage. Quiz: Introduction to Linux 1. True/False Linux is only used on desktop computers. Answer: FalseExplanation: Linux is used in many areas, including servers, …

Continue reading