Tagged: Linux

Iperf network speed

How to diagnose network speed with Iperf in Linux

iperf is a tool for performing network throughput measurements. It can test either TCP or UDP throughput. To perform an iperf test the user must establish both a server (to discard traffic) and a...

prevent port scan in Linux

How to prevent port scan in Linux

There are existing anti-port scanning tools on the Internet, such as psad and portsentry, but I find the configuration a bit cumbersome, and the server does not want to install additional software. So I...

ExFAT Linux

ExFAT file system driver for Linux is coming

After Microsoft opened up exFAT technology and actively added it to the Linux kernel, Linux Kernel 5.4 brought initial support for the exFAT file system . Now, based on earlier code improvements, the new...

IPStorm Botnet

How to prevent SYN flood attacks in Linux

SYN flooding attack refers to an attack method that uses the imperfect TCP/IP three-way handshake and maliciously sends a large number of packets that contain only the SYN handshake sequence. This kind of attack...

Linux Kernel 4.18

The Polish government increases its use of Linux

Some time ago, the South Korean government drafted a strategy to completely replace Windows 7 with a Linux-based open-source operating system to get rid of its dependence. Currently, the Polish social insurance company ZUS...

delete expired files Linux

How to delete regularly expired files in Linux

When managing files under Linux, we usually have the need to periodically delete expired files. For example, periodically delete log files that exceed a specified time. Otherwise, the longer it takes, the more space...

secure SSH

How to configure secure SSH in Linux

This article will explain how to modify the default settings of sshd to ensure that sshd is secure and restricted to protect your server from hackers. You need to restart sshd every time you...

deleting Linux directories

[Linux basic] Creating and deleting Linux directories

mkdir command The mkdir used to create one or more directories Example: Create directory: mkdir ddos The above command will create the directory ‘ddos’. Create a directory and set access permissions: mkdir -m 777...

Crontab command Linux

How to use Crontab command in Linux

Each operating system has its own function of automatically starting the program on time, Windows has its task plan, and Linux‘s corresponding function is crontab. The crontab command is commonly used in Unix and...

use vi editor Linux

How to use the vi editor in Linux

The vi editor is a standard editor for all Unix and Linux systems. Its power is not inferior to any latest text editor. Here is a brief introduction to its usage and a small...

list directory contents Linux

How to list directory contents in Linux

ls – list directory contents. List information about the FILEs (the current directory by default). Sort entries alphabetically if none of -cftuvSUX nor –sort is specified. How to list directory contents in Linux Use...