Category: System

Linux (238)
Windows (383)

Linux BT Download Tool Transmission-CLI

How to Install EPEL Repository and Transmission-CLI on CentOS 6 64-Bit
Install EPEL repo:
rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
Install Transmission: yum -y install transmission-cli

Download magnet link: transmission-cli -D -w ./ magnet:? …

How to Install Pure-FTPd Using Yum

One, Yum Installation
Linux Environment: CentOS 6.x x64

1. Install
yum install pure-ftpd -y
vim /etc/pure-ftpd/pure-ftpd.conf
PureDB /etc/pure-ftpd/pureftpd.pdb # Remove the preceding comment
VerboseLog yes # Change to yes
NoAnon …

FTP vs SFTP: Key Differences Explained

FTP stands for File Transfer Protocol. When you want to share files with others on a website, the most convenient method is to upload the files to an FTP server, and then others can download the needed files using an FTP client program.

FTP file transfers require communication through specific ports. Generally, the ports needed are:
1. Contr…

How to Install and Use Linux Crontab

The crontab command, commonly found in Unix and Linux operating systems, is used to schedule commands for periodic execution. This command reads instructions from the standard input device and stores them in the “crontab” file for later reading and execution. Typically, the instructions stored in crontab are kept …

Real-Time Network Traffic Monitoring on Linux with NetHogs

There are many open-source network monitoring tools available for Linux systems. For example, you can use the iftop command to check bandwidth usage, netstat to view interface statistics reports, and top to monitor currently running system processes. But if you’re looking for a tool that can display real-time network …

Why Tracert Shows Only One Hop in DOS and How to Fix

For the longest time, whenever I ran the Tracert command in DOS on my home computer, I would only see a single-hop result, which puzzled me greatly. I originally thought it was an issue on the telecom carrier’s side, so I never bothered to dig into the real cause.
C:/Users/Administrator>tracert ww …

How to Quickly Delete Large Numbers of Files and Folders in Linux

This command can replace the system’s “rm -rf” when deleting a large number of files and folders causes unresponsiveness.

1. First, install rsync (generally included in most systems; if not, run the following command to install): yum install rsync
2. Create an empty folder (any location): mkdir …

Bash ./configure Permission Denied Error Fix

When you compile and install a package from source on Linux, you typically enter the extracted directory and run “configure”. However, sometimes you may encounter an error message like this:
[root@localhost native]# ./configure –with-apr=/usr/bin/apr- …