For the security purpose by default IP forwarding is disabled in modern Linux operating system. If you are required to enable IP forwarding on your system, follow the below steps. In this article, you will get how to check that IP forwarding is enabled or not. If not, enable it. Check Current IP Forwarding...
Restart System: $ reboot Shutdown System: $ poweroff Generally, Linux system users use the command line for managing remote Linux systems. This article will help you to shutdown or reboot Linux system using the command line. Restart Linux In Linux system just type reboot on command prompt and press enter. Make sure you have...
SCP (Secure Copy) is a command line tool for Linux systems for securely transfer files from local to remote server or vice a versa. SCP uses SSH protocol for transferring files between two systems which is more secure than ftp. Syntax: (Local to Remote) scp /path/to/local/file.txt [email protected]:/remote/path/ Syntax: (Remote to Local) scp [email protected]:/remote/file.txt /path/to/local/...
Nagios is the most popular infrastructure monitoring server on internet. You can use our tutorial to install Nagios on RHEL based systems or Debian systems. You need to install NRPE on all remote Linux systems to monitor with Nagios. NRPE is known as Nagios Remote Plugin Executor. The NRPE add-on is designed to execute...
Swap space is useful for systems having less memory (RAM). If your system facing the problem of lack of memory continuously and you don’t want to increase memory on the server, Then it can be helpful to enable swap in your system. Swap is comparatively much slower than physical memory but the operating system...
Linux has experienced growing popularity in the last couple of years and, due to that, many Linux users have been developing it and adding to the overall availability of this operating system. In addition to that, virtual private servers have also made a rapid progress over the last few years, so that today we...
Some time we faces issues with MySQL installation on Linux machine. If we simply remove MySQL packages and re-install doesn’t fixes the issue, in that case old settings may still exists on server which again affects new install. In that case first uninstall MySQL completely from system and erase all settings of old install....
OpenSSH is a free tool widely used for remote login or remote file transfer. It uses SSH/SecSH protocol suite providing encryption for network services. Its source code is available free to everyone. This article will help you to Install or Update OpenSSH Server in CentOS, RHEL, and Fedora systems. Features of OpenSSH Open Source...