Category: Linux

shape
shape
shape
shape
shape
shape
shape
shape
Standard

“Make Command Not Found” – Linux

When trying to compile and/or install, for example, a module on some Linux servers with the ‘make‘ and/or‘make install‘ command, we get the following error: Make Command Not Found To fix the problem, just run the following command in SHELL: apt-get install make

Standard

Defend against DDoS attacks with (D)DoS Deflate

A DoS (Distributed Denial of Service) attack basically makes numerous connections to the server, making the server overloaded. You can check with the command below which and how many IP addresses are connected to the server: netstat -ntu | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n If

Standard

How to Install and Configure XCache in Debian

XCache is a fast, stable PHP opcode cacher that has been tested and is now running on production servers under high load. It overcomes a number of problems that have been with other competing opcachers, such as being able to be used with new versions of PHP. Installing XCache on Debian is very simple. How

Standard

How to Backup MySQL Database with Putty (SSH)

To back up a database using an SSH client, simply use the following command:   mysqldump –opt -Q -u usuário_banco-de-dados -p nome_banco-de-dados > backup.sql   Replace the names in bold with the user of your database and the name of the database. Below is a video lesson explaining the process:  

Latest news

Latest news directly from our blog.