> For the complete documentation index, see [llms.txt](https://syskey.gitbook.io/subspace-network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://syskey.gitbook.io/subspace-network/she-qu-jiao-cheng/ji-li-xing-ce-shi-wang-3f-jie-dian-yun-xing-jiao-cheng.md).

# 激励性测试网3F节点运行教程

> 根据官方Twitter此次测试如果没有问题的话，会直接启动激励性测试网，建议有条件的可以跑下。<https://twitter.com/NetworkSubspace/status/1692721042014327190?s=20>

## 硬件要求

| Hardware | Specs       |
| -------- | ----------- |
| CPU      | 4 Core+     |
| RAM      | 8 GB+       |
| SWAP     | 4 GB        |
| Storage  | 100 GB+ SSD |

## 运行教程

> 以下运行步骤已在Ubuntu 20.04 上测试通过

下载脚本仓库

```sh
git clone https://github.com/skyMetaverse/subspace-3F.git
cd subspace-3F/
```

编辑 node.sh 文件, 将"INSERT\_YOUR\_ID" 修改为自己的节点名称

<pre class="language-sh"><code class="lang-sh">vi node.sh

# 示例
# nohup ./node \
<strong>#   --chain gemini-3f \
</strong>#   --execution wasm \
#   --blocks-pruning 256 \
#   --state-pruning archive \
#  --no-private-ipv4 \
#   --validator \
#   --name syskey \
#   >> node.log 2>&#x26;1 &#x26;
</code></pre>

编辑farmer.sh, 分别修改以下内容PATH\_TO\_PLOT,PLOT\_SIZE,WALLET\_ADDRESS

```sh
vi farmer.sh


# 绘图路径
PATH_TO_PLOT=
# 绘图大小
PLOT_SIZE=
# 钱包地址
WALLET_ADDRESS=
nohup ./farmer farm --reward-address ${WALLET_ADDRESS} path=${PATH_TO_PLOT},size=${PLOT_SIZE} >> farmer.log 2>&1 &
```

启动脚本

```sh
chmod +x run.sh 
./run.sh
```


---

# 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:

```
GET https://syskey.gitbook.io/subspace-network/she-qu-jiao-cheng/ji-li-xing-ce-shi-wang-3f-jie-dian-yun-xing-jiao-cheng.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
