Kuzco.xyz Testnet is a globally distributed network of GPUs that enables AI inference tasks for large language models like Llama3, Mistral, and others. The network allows anyone with compatible GPU hardware to join and start earning $KZO points by contributing their computing power.
- A decentralized AI inference network
- Allows GPU owners to monetize their hardware by running AI inference tasks
- Supports popular AI models including Llama3, Mistral, and more
- Currently in testnet phase, with participants earning $KZO points
- Monetize your idle GPU resources
- Participate in building the decentralized AI infrastructure
- Earn $KZO points based on your contribution
- Be part of an early-stage project with future potential
- NVIDIA GPU with at least 16GB of VRAM
- 16GB system RAM minimum
- 30GB free disk space
- Reliable 100Mbps+ network connection
This guide provides detailed instructions for setting up Kuzco on both Ubuntu and Windows platforms.
- Ubuntu Installation Guide (CLI Method)
- Windows Installation Guide
- Managing Your Worker
- Troubleshooting
- Ubuntu OS (20.04 LTS or newer)
- NVIDIA GPU with at least 16GB of VRAM
- 16GB RAM minimum
- 30GB free disk space
- Reliable 100Mbps+ network connection
sudo apt update
sudo apt upgrade -y
sudo apt install ubuntu-drivers-common -y
ubuntu-drivers devices
sudo ubuntu-drivers autoinstall
After installation, reboot your system:
sudo reboot
nvidia-smi
You should see information about your GPU including driver version.
curl -fsSL https://kuzco.xyz/install.sh | sh
- Register for an account at kuzco.xyz/register
- Verify your email and connect your Discord account (optional)
- Login to your account on the CLI:
kuzco login
- Create a worker:
kuzco worker create
Note your worker ID and code from the output.
- Start your worker (Direct Method):
kuzco worker start --worker <your-worker-id> --code <your-worker-code>
- Install tmux:
sudo apt install tmux -y
- Create a new tmux session:
tmux new -s kuzco
- Inside the tmux session, start your worker:
kuzco worker start --worker <your-worker-id> --code <your-worker-code>
-
Detach from tmux session by pressing
Ctrl+B
thenD
-
To reconnect to your session later:
tmux attach -t kuzco
Create a systemd service file:
sudo nano /etc/systemd/system/kuzco.service
Add the following content (please add your worker ID and Code):
[Unit]
Description=Kuzco Worker Service
After=network.target
[Service]
Type=simple
User=root
ExecStart=/usr/local/bin/kuzco worker start --worker <your-worker-id> --code <your-worker-code>
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
Enable and start the service:
sudo systemctl daemon-reload
sudo systemctl enable kuzco.service
sudo systemctl start kuzco.service
Check service status:
sudo systemctl status kuzco.service
- Windows 10/11
- NVIDIA GPU with at least 16GB of VRAM
- 16GB RAM minimum
- 30GB free disk space
- Reliable 100Mbps+ network connection
- Download the Kuzco Windows app from the official website
- Install the application
- Register for an account
- Follow the on-screen instructions to create and run a worker
- Install Docker Desktop for Windows from Docker's website
- Install the NVIDIA Driver for your GPU from NVIDIA's website
- Install NVIDIA Container Toolkit for Windows
- Register for a Kuzco account at kuzco.xyz/register
- Verify your email and connect your Discord account
- Navigate to the "Workers" tab on the dashboard
- Click "Create Worker" and select "Docker"
- Copy the Docker command from the dashboard
- Open PowerShell and run the Docker command:
docker run --rm --runtime=nvidia --gpus all -e CACHE_DIRECTORY=/root/models -v ${HOME}/.kuzco/models:/root/models kuzcoxyz/amd64-ollama-nvidia-worker --worker <your-worker-id> --code <your-worker-code>
- Enable WSL 2 and install Ubuntu from the Microsoft Store
- Follow the Ubuntu installation guide above within your WSL environment
Check worker status:
kuzco worker status
View worker logs:
sudo kuzco worker logs
Restart worker:
sudo kuzco worker restart
Stop worker:
sudo kuzco worker stop
Clean worker data:
sudo kuzco clean --force
-
Error: Worker fails to initialize
- Solution: Check your GPU driver installation and make sure it's compatible with your GPU.
-
Worker fails to start or crashes
- Check your GPU driver status:
nvidia-smi
- Check worker logs:
sudo kuzco worker logs
- Try stopping and restarting the worker
- Try creating a new worker
- Check your GPU driver status:
-
URL Parsing Errors
- Try running the worker without systemd:
kuzco worker start --worker <id> --code <code>
- Upgrade Kuzco:
kuzco upgrade
- Try running the worker without systemd:
-
Worker gets disconnected frequently
- Ensure your internet connection is stable
- Check if your firewall is blocking connections
- Run the worker in a tmux session for persistence
- Join the Kuzco Discord for community support
- Open a ticket through the Discord server for technical assistance
- Monitor the #announcements channel for updates on service status