Tag: linux

shape
shape
shape
shape
shape
shape
shape
shape
Standard

Allow Root access in SSH

Some Linux distributions, such as Ubuntu Server, do not allow the Root user to log in to SSH by default. To allow Root access via SSH, edit the sshd_config file: vim /etc/ssh/sshd_config Then look for the PermitRootLogin directive and change it to the following: PermitRootLogin yes Now restart the SSH service: service ssh restart That’s

Standard

Linux: Recursive Word or Phrase Search in Files

In addition to filtering the output of a result, the grep command can also be used to search for a word or phrase recursively in Linux directories: grep -Ril “Palavra ou frase”

Standard

Installing IonCube Loader on Linux

IonCube is a program that protects the source code of PHP scripts through encryption. In order for it to be read, PHP must have the IonCube module installed and activated. You can find the latest version of the IonCube loader at: http://www.ioncube.com/loaders.php How to install IonCube Loader ?   1 – Download the IonCube Loader:

Standard

Scheduling Tasks in Linux using Crontab

Scheduling tasks is a very useful feature, for example in server maintenance and backup, etc. In Linux, this can be done using“crontab“. Using the crontab -operation command will allow you to add, list or remove your scheduled tasks. Example: crontab -e (edits scheduled tasks of the masterdaweb user) crontab -l (displays the scheduled tasks of

Latest news

Latest news directly from our blog.