Difference Between Su, Sudo Su, Sudo -i, and Sudo -s
https://linuxtldr.com/different-ways-to-switch-users-account/
https://linuxtldr.com/different-ways-to-switch-users-account/
Linux TLDR
Difference Between Su, Sudo Su, Sudo -i, and Sudo -s
There are tons of reasons to switch to another user’s or the root user’s account, however there are multiple ways to do so, which we are going to learn today.
How to Automate SSH Login Using sshpass in Linux
https://linuxtldr.com/sshpass-command/
https://linuxtldr.com/sshpass-command/
Linux TLDR
How to Automate SSH Login Using sshpass on Linux
In this article, you will learn how to use the sshpass command to gain non-interactive access to a remote server by providing the password on the same line.
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.
How to Shrink Long or Multiple Commands into Single Small Command
https://linuxtldr.com/shrinking-long-or-multiple-commands-into-a-single-short-command/
https://linuxtldr.com/shrinking-long-or-multiple-commands-into-a-single-short-command/
Linux TLDR
How to Shrink Long or Multiple Commands into a Single Short Command
In Linux, multiple long commands can be easily replaced with a single short command using the alias command.
How To Disable Directory Listing From the Command Line in Linux
https://linuxtldr.com/disable-directory-listing-in-linux/
https://linuxtldr.com/disable-directory-listing-in-linux/
Linux TLDR
How To Disable Directory Listing From the Command Line in Linux
In this article, you will learn how to disable the directory content listing from the command line in Linux.
“most” is an advanced alternative for the less command
https://linuxtldr.com/most-command/
https://linuxtldr.com/most-command/
Linux TLDR
“most” is an advanced alternative for the less command
The "most" command is a pager tool like "more" or "less" that is used to display big files on one page at a time and is especially known for the window splitting feature.
ExplainShell: The Best Alternative for Linux Man Pages
https://linuxtldr.com/explainshell/
https://linuxtldr.com/explainshell/
Linux TLDR
ExplainShell: The Best Alternative for Linux MAN PAGES
The explainshell is a web-based tool that can be said to be an alternative to traditional Linux man pages for providing you with detailed explanations in a beautiful hierarchy.
How to Install Zsh (with Oh-My-Zsh) in Linux
https://linuxtldr.com/installing-zsh/
https://linuxtldr.com/installing-zsh/
Linux TLDR
How to Install Zsh (with Oh-My-Zsh) in Linux (Ultimate Guide)
The ZSH (or Z shell) can be said to be an extended version of the standard Bash shell interpreter, written by Paul Falstad in 1990 while studying at Princeton University.
Display and Filter History Records Based on Date and Time in Linux
https://linuxtldr.com/display-and-filter-history-records-based-on-date-and-time/
https://linuxtldr.com/display-and-filter-history-records-based-on-date-and-time/
Linux TLDR
Display and Filter History Records Based on Date and Time in Linux
In this article, you will learn how to add date and time to the history record and how to list previously executed commands based on their date and time in Linux.
What is Exit Status Code ($?) of Last Command in Linux
https://linuxtldr.com/exit-status-in-linux/
https://linuxtldr.com/exit-status-in-linux/
Linux TLDR
What is Exit Status Code ($?) of Last Command in Linux
The “$?” is a built-in variable that your shell uses to store the exit status code of the last executed command in integer format and remains unchanged unless the next command is executed.
How to Use Here Document (HereDoc) in Linux Shell Script
https://linuxtldr.com/heredoc/
https://linuxtldr.com/heredoc/
Linux TLDR
How to Use Here Document (HereDoc) in Linux Shell Script
In Bash and also for other implementations of the shell, like zsh and fish, you can use the HereDoc to redirect a multi-line or block of lines from the script as an input to interactive commands.
How to Configure Docker Containers with DockSTARTer in Linux
https://linuxtldr.com/dockstarter/
https://linuxtldr.com/dockstarter/
Linux TLDR
How to Configure Docker Containers with DockSTARTer on Linux
In this article, you will learn how to install and configure Docker and Docker Containers with DockSTARTer on Linux.