Category: Articles

Computer (3)
Open Source (313)
Security (30)
Server (5)

How to Handle Abnormal Logins After Server Host Scanning

During website operation, the server is frequently scanned, and the cloud hosting panel or system login logs often report anomalies. You can apply the optimizations below. Alibaba Cloud warns of brute-force attacks and abnormal logins by unauthorized users, as follows:
System log characteristics are shown below (using Linux as an example here), with numerous failed login users and IPs, and the logs …

The Story of Portable WiFi Chips

A portable WiFi device converts 4G or 5G signals into WiFi signals. Thanks to its fast speeds (real-world experience is comparable to a shared 100Mbps broadband at home), no installation required, and portability, it has won the hearts of people around the world — especially in most overseas countries where fiber optic penetration is barely in the teens, with sales dozens of times higher than in China. Although fiber is widespread domestically …

How to Choose a Portable Wi-Fi Hotspot

What Is the Working Principle of a Portable WiFi Hotspot?
It uses a wired network or a wireless Internet chip (SIM card) provided by a mobile carrier, and creates a WiFi hotspot to share the network. Various network terminals can access the Internet by connecting to this WiFi signal.

What Is the Difference Between a Portable WiFi Hotspot and a Phone Hotspot?
Frequently using your phone as a hotspot can …

How to Download M3U8 Blob:https Videos Using FFmpeg

Software downloads are available on the official website or at the following address:
https://mirror.cnop.net/?search=ffmpeg
1. After downloading, extract to the C drive:

2. Environment Variable Configuration (using Win10 as an example): Right-click My Computer -> Properties -> Advanced System Settings -> Advanced -> Environment Variables -> User variables for Administrator …

Debian 11 “Bullseye” Officially Released

After more than two years of development, Debian 11 “Bullseye” has been officially released. This version is a long-term support release that will be supported for 5 years. Key highlights include: Linux 5.10 LTS kernel; first-time support for the exFAT file system; over 59,000 software packages, including 11,000 new packages …

How to Install Supervisord

yum install epel-release
yum install -y supervisor

vi /etc/supervisord.conf #Add the following at the end
[include]
files = /www/supervisor/*.conf
mkdir /www/supervisor

vi /etc/init.d/supervisord #Inside …

How to Install Swoole 4 on Linux

Note: Adjust the commands below according to your own PHP path.

php –ri swoole #Check if PHP supports Swoole

cd /usr/local/src

wget https://github.com/swoole/swoole-src/archive/v4.3.1.tar.gz
tar zxvf v4.3.1.tar.gz && cd swoole-sr …