Category: Linux

Program Errors: What You Need to Know

Editor’s Note: The relationship between programmers and software testers needs no elaboration. These classic replies were summarized and shared by foreign programmers — “universally applicable.” 20. “That’s weird…” That’s weird… 19. “It’s ne …

How to Configure CentOS Firewall

Many people have had ongoing questions about configuring the CentOS firewall. Today, I’ll demonstrate how to set up the CentOS firewall.

After reviewing several pages with incorrect CentOS firewall information, here is the correct method:#/sbin/iptables -I INPUT – …

How to Install and Manage Memcache on Linux

Required installation packages: 1. Memcache package: memcached-1.4.0.tar.gz2. PHP extension package: memcache-2.2.5.tgz Install Memcache to the /usr/local/lib directory:# The version may differ; select the version appropriate for your setup sudo tar zxvf memcached-1.4.0 …

tar Command Guide

Format: tar options file/directory list
Function: Create archive backups of files and directories
Options:
-c Create a new archive file
-r Append files to the end of an archive
-x Extract files from an archive
-O Extract files to standard output
-v Output related information during processing
-f …

Rsync Common Issues Summary

Problem 1:
@ERROR: chroot failed
rsync error: error starting client-server protocol (code 5) at main.c(1522) [receiver=3.0.3]

Cause:
The directory on the server side does not exist or lacks permissions. Create the directory and fix the permissions to solve the problem.

How to Deploy Bandwidthd Open-Source Traffic Monitor on CentOS 6.3

With bandwidthd, you can view traffic for each IP passing through the gateway from any computer via a web browser, with breakdowns by protocol, color-coded displays, and intuitive traffic graphs.
In daily maintenance, the biggest headache for network administrators is often someone on the internal network transferring large files, causing …