> For the complete documentation index, see [llms.txt](https://docs.frequencychain.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.frequencychain.org/9.-frecx-node-set-up/9.1-preparing-the-server-environment.md).

# 9.1 Preparing the Server Environment

Before installing the FreCx node, the system must be updated, and essential tools must be installed.

*<mark style="color:blue;">Updating System Packages</mark>*

Run the following command to update the package list:

```
sudo apt update
```

This command retrieves the latest list of available packages and versions.

To upgrade installed packages:

```
sudo apt upgrade -y
```

This ensures that all system packages are up to date.

*<mark style="color:blue;">Installing Required Dependencies</mark>*

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-essential
```

This installs:

* git for downloading source code
* curl and wget for network operations
* build-essential for compiling dependencies

Verify installation:

```
git --version
```

```
Installing Node.js (if required)
```

Some FreCx components or tooling may require Node.js.

```
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install -y nodejs
```

Verify:

```
node -v
npm -v
```

*<mark style="color:blue;">Installing Docker (Optional but Recommended)</mark>*

Docker simplifies node deployment and environment management.

```
sudo apt install -y docker.io
sudo systemctl start docker
sudo systemctl enable docker
```

Verify Docker:

```
docker --version
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.frequencychain.org/9.-frecx-node-set-up/9.1-preparing-the-server-environment.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
