> For the complete documentation index, see [llms.txt](https://docs.logosnodos.online/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.logosnodos.online/mining/pearl/pearl-mining-tutorial.md).

# $PEARL Mining Tutorial

## One command line (Non-Docker)

* Pearl Hash

```
apt update && apt install -y curl ca-certificates gnupg && curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && apt install -y nodejs && npm install -g pm2 && cd /root && curl -L https://pearlhash.xyz/downloads/pearl-miner-v6 -o /root/pearl-miner && chmod +x /root/pearl-miner && WORKER=${RUNPOD_POD_ID:-$(hostname)} && pm2 start "/root/pearl-miner --host 84.32.220.219:9000 --user prl1ptpm8ap22tdammltjufep5hm7v9lg8s0lfdd3f6yv0uvhlhckeuaqvts9qk --worker $WORKER" --name "pearl-$WORKER" && pm2 save && pm2 startup systemd -u root --hp /root
```

* Alpha Mine

```
# 1) Download the miner — source: https://github.com/AlphaMine-Tech/alpha-miner
# Linux x86_64, supports Volta/Ampere/Ada/Hopper/Blackwell auto-detect
curl -L -o alpha-miner https://pearl.alphapool.tech/downloads/alpha-miner
chmod +x alpha-miner

# 2) Replace YOUR_PRL_ADDRESS with your prl1p... wallet address, then run
./alpha-miner \
  --pool stratum+tcp://us2.alphapool.tech:5566 \
  --address prl1pYOUR_PRL_ADDRESS \
  --worker rig01
```

* Akoya Pool

```
1. Create a RunPod account -> Sign up on RunPod
2. Create a template -> Go to Pods → Templates → New Template and set:
# Template config — create once, reuse for every pod.
Container Image: registry.akoyapool.com/akoya-miner:latest
Environment Variables:
  AKOYA_POOL_WALLET = YOUR_PEARL_ADDRESS
  AKOYA_POOL_WORKER = runpod-rig-01
copy
Replace YOUR_PEARL_ADDRESS with your prl1… address.
3. Deploy a pod
```

* Mineprl

```
curl -fL --progress-bar -O https://pool.mineprl.com/dl/mineprl-worker-blackwell-rtx-v1.3-linux-x86_64.tar.zst
zstd -d mineprl-worker-blackwell-rtx-v1.3-linux-x86_64.tar.zst -c | tar -x

cd mineprl-worker-blackwell-rtx-v1.3-linux-x86_64
sudo ./start_mining.sh \
  --address YOUR_PEARL_ADDRESS \
  --label WORKER_NAME
```

If the process is successful, you will see the text `Project created` 🎉


---

# 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.logosnodos.online/mining/pearl/pearl-mining-tutorial.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.
