
How to Start, Stop and Restart Services on Linux Dedicated Server?
There are two ways through which you can start, stop and restart any desired service: How to start a service :- First Method: /etc/init.d/service-name start …

There are two ways through which you can start, stop and restart any desired service: How to start a service :- First Method: /etc/init.d/service-name start …

A process in Linux is an instance of a running program. Each process has a unique identifier called a process ID (PID) that is used …

In Linux, partition labels are used to identify partitions on a disk. They are used instead of device names like /dev/sda1 or /dev/hda1. These labels …

List of Linux Log Files The following is a list of commonly found log files within Linux, alongside a short description of what kind of …

Many a times we receive the error ‘Maximum file limit has been reached’, in that case, please Refer the following steps to get it fixed:- …

If want to control all the domains, before they resolve, then that could be done by creating some symbolic links. Let’s say you have domain12.com …

You see that files with name ‘Core’ is created under your account. These core files start taking the space on your server. Core dump consists …

When a URL specifying only a directory is requested … eg.: https://www.domain.com/directory/ Initially, Apache looks for file names by default (in the order they appear): …

The date, time, and timezone are important aspects of a Linux system that affect how it operates and interacts with other systems. There are different …

#!/bin/sh cd /root/ wget ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz tar -zxvf chkrootkit.tar.gz CHKDIR=`ls -1 |grep chkrootkit-` cd $CHKDIR/ make ./chkrootkit

Login to your server as root and at the root prompt fire the below command: root@xxx[~]vi /etc/cron.daily/chkrootkit.sh Insert the following to the new file: #!/bin/bash …