Understanding Stdin, Stdout and Stderr Streams in Linux
https://linuxtldr.com/understanding-streams-in-linux/
https://linuxtldr.com/understanding-streams-in-linux/
Linux TLDR
Understanding Stdin, Stdout, and Stderr Streams in Linux
In Linux, stdin, stdout, and stderr streams are already part of your Linux system and attached to your terminal device to inspect the data.
Beginners Guide for Echo Command in Linux
https://linuxtldr.com/echo-command/
https://linuxtldr.com/echo-command/
Linux TLDR
Beginners Guide for Echo Command in Linux
The echo command takes the text or file as an argument and prints the output on the screen. It is mostly used in shell scripts to instruct the user or give any piece of information.
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.