Category: Open Source

VMware Workstation Incompatible Hypervisor Fix

You are running VMware Workstation through an incompatible hypervisor. The virtual machine cannot be powered on until this hypervisor is disabled…

Solution:

Locate the virtual machine’s vmx file, open it with Notepad, and add the following line at the very end of the file:
vmx.allowNested = "TRUE" …

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…

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 …