Author: Lucas

shape
shape
shape
shape
shape
shape
shape
shape
Standard

Deleting Files in C

In this short post, I’ll show you how to delete a file using the C language. To delete a file we use the delete(“file_name”) function. In the example below, the program will delete the file masterdaweb.txt: #include int main() { delete(“masterdaweb.txt”); return 0; }

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

Files in C – Functions and Operations on Files

In this article we’ll talk about operating file functions in C, opening a file, closing a file, the getw and putw functions, the fprintf and fscanf functions, random access to files and the fseek function. Functions for operating files: Function Operation fopen() Create a new file Open an existing file fclose() Closes a file in

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

Latest news

Latest news directly from our blog.