How To Kill Process In Unix?

How To Kill Process In Unix?

Unix provides different commands in order to kill processes. Actually, Unix is the predecessor of the Linux distributions like Ubuntu, Debian, Mint, RHEL, CentOS, etc., and provides the same commands to kill processes. The Linux distributions are copied commands from Unix and also added some new commands to kill processes. List Processes For Unix, before … Read more

How To Kill Process In Ubuntu?

How To Kill Process In Ubuntu?

Processes are the main part of the Ubuntu operating system in order to accomplish different tasks. A typical Ubuntu system runs lots of processes in daily routine. In some cases, we may need to kill a process in Ubuntu. There may be different reasons to kill or stop the process in Ubuntu. In this tutorial, … Read more

How To Change Password In Linux?

How To Change Passwords In Linux?

Passwords are used to authenticate users or different entities in order to access some services, resources, or operating systems. As a secure and modern operating system, Linux provides passwords for a long time from its startup. Even though some Linux distributions provide passwordless login for a better and easy user experience it is not recommended … Read more

“ssh_exchange_identification connection closed by remote host” Error and Solution

"ssh_exchange_identification connection closed by remote host" Error and Solution

SSH protocol provides secure communication with remote systems in an easy way. When using the SSH protocol and tools to connect to the remote system there are different security checks. These checks may prevent or rejects the SSH connections. The ssh_exchange_identification connection closed by remote host error occurred when the remote system or SSH server … Read more

.bashrc vs .bash_profile

.bashrc vs .bash_profile

Linux, Unix, and MacOS operating systems provide the bash shell in order to provide a command-line environment and shell. The bash shell has different configurations which can be configured using the .bashrc and .bash_profile files. The .bash and .bash_profile files can be used to set different bash configurations like $PATH, history, alias, command prompt, etc. … Read more

Difference Between “yum update” and “yum upgrade” Commands

Difference Between "yum update" and "yum upgrade" Commands

RPM-based distributions like CentOS, RHEL, and Fedora provide the yum command for package management. The yum update command is used to get the latest repository information and update packages with this information. The yum upgrade command provides a very similar function by updating the packages but there is a small difference. Difference Between “yum update” … Read more

How To Install Python3 On Ubuntu?

How To Install Python3 On Ubuntu?

Python is popular programming and scripting language which is used in different cases and applications. Python is cross-platform and can be used in different platforms, and operating systems. Python3 is the latest version and can be installed on Ubuntu easily. In this tutorial, we examine different methods to install Python3 on all Ubuntu distributions. Check … Read more

For Loop In Bash Script

For Loop In Bash Script

Linux Bash Shell provides the For Loop in order to iterate over the given array, list, string, etc. For loops are very useful for iterative operations and heavily used in Linux bash shells. In this tutorial, we examine different ways and examples to use for loops in the Bash shell. for Loop Syntax The bash … Read more

echo Command In Linux Tutorial

echo Command In Linux Tutorial

The echo command is used to display lines of text in Linux and Unix operating systems. It is generally used to print some text to the standard output which the current terminal. The echo command is very simple but provides different formatting options inside text. The echo command can be also used to print bash … Read more