Beginners Guide for Chown Command in Linux
https://linuxtldr.com/chown-command/
https://linuxtldr.com/chown-command/
Linux TLDR
Beginners Guide for Chown Command on Linux
The chown command is used to modify the user and group ownership of files and directories. It will be helpful to restrict the access permissions for files and directories to selective users and members of group.
Beginners Guide for Passwd Command in Linux
https://linuxtldr.com/passwd-command/
https://linuxtldr.com/passwd-command/
Linux TLDR
Beginners Guide for Passwd Command on Linux
The passwd command is used to modify the user’s password and its properties, like deleting the password, expiring the password, deactivating the account, and many more.
How to Force User to Change Their Password on Next Login in Linux
https://linuxtldr.com/forcing-user-to-change-their-password-on-next-login-in-linux/
https://linuxtldr.com/forcing-user-to-change-their-password-on-next-login-in-linux/
Linux TLDR
How to Force User to Change Their Password on Next Login in Linux
When you create a new user account and set a password for that account, the "password expires" status is set to never; however, you can later force them to change their password on their next login.
Beginners Guide for Groupadd Command in Linux
https://linuxtldr.com/groupadd-command/
https://linuxtldr.com/groupadd-command/
Linux TLDR
Beginners Guide for Groupadd Command on Linux
Linux administrators are allowed to create "normal user accounts" with a range from 1000 to 60000 uids, where uid 0 is reserved for "root users" and "system users" are allowed uids from 1 to 999.
Beginners Guide for Which Command in Linux
https://linuxtldr.com/which-command/
https://linuxtldr.com/which-command/
Linux TLDR
Beginners Guide for Which Command in Linux
The which command locates the executable command or file location in the user’s environmental path. It will give you the complete path an executable command or file is pointing towards in your file system.
Beginners Guide for Whereis Command in Linux
https://linuxtldr.com/whereis-command/
https://linuxtldr.com/whereis-command/
Linux TLDR
Beginners Guide for Whereis Command in Linux
The whereis command is used to find the paths of binary, source, and manual files for a specified command, similarly to the find command but consuming less memory.
Beginners Guide for Find Command in Linux
https://linuxtldr.com/find-command/
https://linuxtldr.com/find-command/
Linux TLDR
35+ Advance Examples of the Find Command in Linux
The find command is an advanced tool for searching files or directories rigorously in your file system, taking a little longer time than its alternative tools like the locate command.
Different Ways to Search Files or Directories in Linux
https://linuxtldr.com/searching-files-or-directories-in-linux/
https://linuxtldr.com/searching-files-or-directories-in-linux/
Linux TLDR
Different Ways to Search Files or Directories on Linux
On Linux, you have multiple tools like which, whereis, locate, and find that can help you find the absolute path for files and directories in your system.
How to Set and List Environment Variables in Linux
https://linuxtldr.com/environment-variables/
https://linuxtldr.com/environment-variables/
Linux TLDR
How to Set and List Environment Variables in Linux
The environment variables are a set of key-value pairs that define the current environment and can affect the behavior of the ongoing programs that are executed in the environment.
Difference Between /etc/profile, ~/.bash_profile, ~/.profile, ~/.bashrc, etc
https://linuxtldr.com/difference-between-bash-profiles/
https://linuxtldr.com/difference-between-bash-profiles/
Linux TLDR
Difference Between /etc/profile, ~/.bash_profile, ~/.profile, ~/.bashrc, etc
The bash uses multiple profiles, also known as shell configuration files, to configure the user’s interactive login or non-login shell.
What is Interactive Login and Non-Login Shell
https://linuxtldr.com/interactive-login-and-non-login-shell/
https://linuxtldr.com/interactive-login-and-non-login-shell/
Linux TLDR
What is Interactive Login and Non-Login Shell
Whenever you operate a Linux system behind the scenes, you might be encountering the interactive login or non-login shell that you are not aware of.