9.1 Preparing the Server Environment
Before installing the FreCx node, the system must be updated, and essential tools must be installed.
Updating System Packages
Run the following command to update the package list:
sudo apt updateThis command retrieves the latest list of available packages and versions.
To upgrade installed packages:
sudo apt upgrade -yThis ensures that all system packages are up to date.
Installing Required Dependencies
FreCx node setup typically requires basic tools such as Git, curl, and build utilities.
Install them using:
sudo apt install -y git curl wget build-essentialThis installs:
git for downloading source code
curl and wget for network operations
build-essential for compiling dependencies
Verify installation:
git --versionSome FreCx components or tooling may require Node.js.
Verify:
Installing Docker (Optional but Recommended)
Docker simplifies node deployment and environment management.
Verify Docker:
Last updated