ASAfridi Shaikincloudcoder.hashnode.dev·Mar 24, 2024 · 17 min readFile SecurityIn Red Hat Enterprise Linux (RHEL), file security is managed through a system of permissions and ownership. Each file and directory has associated permissions that determine who can read, write, and execute them. These permissions are defined for thr...00
ASAfridi Shaikincloudcoder.hashnode.dev·Mar 23, 2024 · 3 min readGroup ManagementUnderstanding Group Management in Linux Group management in Linux is a fundamental aspect of system administration, enabling you to efficiently control access to files and resources based on user roles and permissions. Groups allow you to categorize...00
ASAfridi Shaikincloudcoder.hashnode.dev·Mar 23, 2024 · 3 min readProfile FilesProfile files are hidden files (starting with a dot) in Linux/RHEL that define your shell environment. They control settings like environment variables, aliases (shortcuts for commands), and terminal behavior. These files are processed in a specific ...00
ASAfridi Shaikincloudcoder.hashnode.dev·Mar 3, 2024 · 5 min readPassword ManagementPasswd change user password Syntax passwd [options] [username] Example To change the password for the current user, simply run: passwd You will be prompted to enter and confirm the new password. If changing the password for another user, use: sudo...00
ASAfridi Shaikincloudcoder.hashnode.dev·Mar 2, 2024 · 12 min readLocal User ManagementBasic Commands whoami: This command simply displays the username of the user currently logged in. It's a quick way to verify your identity in the terminal. Example: $ whoami who: This command lists all users currently logged into the system,...00