Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,19 @@ want to mine Zeeka, you will need to install ![zoro](https://github.com/zeeka-ne

* Prepare a Linux machine.
* Make sure you have installed `libssl-dev` and `cmake` packages.

```
sudo su
```

```
sudo apt-get update && sudo apt-get upgrade
```

```
sudo apt install -y build-essential libssl-dev cmake
```

* Install the Rust toolchain (https://rustup.rs/)
```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Expand Down Expand Up @@ -65,10 +75,7 @@ The longer the seed is, the safer. We suggest a seed string of at least 80 rando
Run your node:

```sh
bazuka node --listen 0.0.0.0:8765 --external [your external ip]:8765 \
--network chaos --db ~/.bazuka-chaos \
--bootstrap [bootstrap node 1] --bootstrap [bootstrap node 2] \
--discord-handle [your username on discord server]
bazuka node --listen 0.0.0.0:8765 --external IP ADDRESS:8765 --network chaos --db ~/.bazuka-chaos --bootstrap 144.91.101.166:8765 --bootstrap 45.67.228.84:8765 --bootstrap 152.228.155.120:8765 --bootstrap 80.87.202.42:8765 --bootstrap 148.251.1.124:8765 \ --discord-handle "Rues#9144"
```

You can use the nodes introduced by the community as your `--bootstrap` nodes.
Expand Down Expand Up @@ -139,11 +146,11 @@ competitive CPU. (In future versions, GPU will be used instead of CPU)
Or if you want to download them through command-line:

```
wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=1slabmFFr0Ct6fef09GOGHGqxYwB7YUMG' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=1slabmFFr0Ct6fef09GOGHGqxYwB7YUMG" -O payment_params.dat && rm -rf /tmp/cookies.txt
wget https://api.rues.info/payment_params.dat -O payment_params.dat
```

```
wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=1iVD2bpywWGHLB4cgasuhTEZwXQoGa2bj' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=1iVD2bpywWGHLB4cgasuhTEZwXQoGa2bj" -O update_params.dat && rm -rf /tmp/cookies.txt
wget https://api.rues.info/update_params.dat -O update_params.dat
```

4. Run `zoro` beside your node: (This will use your Nvidia GPU for mining!)
Expand Down