Category: Articles

Computer (3)
Open Source (310)
Security (29)
Server (5)

How to Set Up an Ethereum Wallet with Geth

Geth is the abbreviation for the Go Ethereum open-source project. It is a client software written in Go that implements the Ethereum protocol, and it is currently the most popular and widely used client. By connecting and interacting with the Ethereum network through the Geth client, you can perform account management, contract deployment, …

Overview of International CDN Products

CDN stands for Content Delivery Network, which solves the problem by storing your website content on different servers around the world. Visitors can then fetch your site’s files from the CDN location closest to them, instead of accessing your server every time. Cloudflare – free and includes security features…

Windows System Virus Fix: All EXE Files Won’t Open

I recently misclicked a program and ended up with a Windows virus infection — all executable files, even cmd, became impossible to run. Here’s how to fix it.

Right-click on the desktop, create a new text file, and enter the following:
assoc.exe=exefile
ftype exefile="%%1"%%*

Then change the file extension from txt to bat and double-click to run it …

How to Install BT Panel in a Custom Directory

Baota (BT Panel) locks the installation directory to /www by default, but many servers have limited root partition space. Here is how to move Baota data to another directory.

Check the current server disk usage:
df -h

Here we put the data under /data:
ln -sf /data /www
This will then under /data …