# Installation

## Avail-Turing-Testnet

## Kurulum

### Go Setup

```
sudo apt update
sudo apt install make clang pkg-config libssl-dev build-essential
```

```
cd
sudo mkdir avail
```

```
cd avail
```

### Dosyaları çekiyoruz

```
wget https://github.com/availproject/avail/releases/download/v2.2.5.1/x86_64-ubuntu-2204-avail-node.tar.gz
```

### Dosyaları zipten çıkartıyoruz.

```
tar -xf x86_64-ubuntu-2204-avail-node.tar.gz
```

### Sevis Oluşturuyoruz...

```
screen -S avail
```

### Node Başlatalım

> \[name your node] yerine Validator ismini giriyoruz.

```
./avail-node --chain turing --name [name your node] --validator
```

### Systemd ile kurulum

> VALIDATORNAME yerine belirlediğimiz ismi yazıyoruz.

```
sudo tee /etc/systemd/system/availd.service > /dev/null <<'EOF'
[Unit]
Description=Avail Validator Node
After=network.target

[Service]
User=root
WorkingDirectory=/root/avail/
ExecStart=/root/avail/avail-node --chain turing --name VALIDATORNAME --validator
Restart=always
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF
```

#### Node başlatalım

```
sudo systemctl daemon-reload
sudo systemctl enable availd.service
sudo systemctl start availd.service
```

```
sudo systemctl status availd.service
```

#### Log Kontrolü

```
journalctl -f -u availd.service
```


---

# Agent Instructions: 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://service.coinhunterstr.com/testnet/avail/installation.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.
