Category: System

Linux (238)
Windows (383)

Varnish Install Error: Readline Library Not Found Fix

While setting up a Varnish cache server environment today, I ran into an issue during installation. When running the configure script, it threw the following error:

configure: error: readline library not found

I had already installed the readline package on the system before this happened.

How to Stop IP Security Policies in Windows Server 2003

Today, while helping a client troubleshoot a system that couldn’t be accessed remotely, I ran into an issue. I checked and saw that port 3389 was open normally, the Terminal Services service was running fine, and the firewall and other settings were all disabled. However, remote connections to the host still failed, even though connections from within the host worked perfectly.

How to Configure Network Interface IP on Debian

Here is an example: Before modifying /etc/network/interfaces, it’s best to back it up firstcp /etc/network/interfaces /etc/network/interfacesbackupiface eth0 inet staticaddress 192.168.0.16netmask 255.255.255.0gateway 192.168.0.1 …

Linux Disk Read/Write Speed Test With hdparm

hdparm can detect, display, and set parameters for IDE or SCSI hard drives. It is a shell utility in Linux for viewing and modifying IDE drive parameters.

1. Installation, the command is as follows:
yum -y install hdparm

2. Run:
hdparm -tT /dev/xvdb1

The device name above is …

How to Fix vsftp 500 OOPS: Cannot Change Directory

If you encounter the “550 create directory operation failed” error, it’s usually caused by the SELinux security mechanism. Simply disable SELinux to resolve it: # vi /etc/selinux/configChange SELINUX=XXX –>XXX represents the level
to SELINUX=dis …

How to Use Ifstat for Network Traffic Monitoring

The RHEL ISO does not include it, so you’ll need to download the source package from a third-party site and compile it for installation. This software also has a Windows version. It can report network interface traffic status and view the bytes sent and received by the NIC, generating data once per second. 1. ifstat installation wget http://gael.roualland.f …

How to Check Network Card Bandwidth and Traffic in Linux

On Windows systems, we can use the networking status in Task Manager to check bandwidth usage. So how do we view the host’s bandwidth usage on Linux?

In fact, there are many ways to check network interface traffic on Linux. Below, we’ll use the iptraf software as an example to explain: …

How to Check Who Is Using a Port

How to Find the PID of a Port in Use on Windows

1.Click Start –> Run –> type cmd, or press the Windows + R key combination to bring up the command prompt window.

2.Enter the command: netstat -ano, to list all ports. In the list, look for the port that is occupied—for example, port 49157—and find it first.

To check the PID corresponding to the occupied port, enter …