How To Add a New Worker - Linux

Note: Adding new workers to the IO network is currently disabled. Please continue to check our Discord announcements channel for details on when new workers can be added.


Delete Existing Docker Containers & Images

 

Execute the following commands in Linux Terminal to delete existing Docker containers, images, networks, and volumes.

 

  1. docker stop $(docker ps -qa)

  2. docker rm $(docker ps -qa)

  3. docker rmi -f $(docker images -qa)

  4. docker volume rm $(docker volume ls -qf)

  5. docker network rm $(docker network ls -q)


Download The IO Launch Binary

  1. Download the latest binary for Linux from our GitHub repository

  2. Set executable permissions on the binary using: chmod +x io_net_launch_binary_linux

  3. Modify the command below and set --device_id="new-device-id", --user_id="your-user-id", and --device_name="new-device-name" to match your Device ID, User ID, and preferred worker name

  4. Copy and paste the modified command into the terminal, hit enter to execute the binary, and then follow the on-screen prompts to authenticate and complete the setup

./io_net_launch_binary_linux --device_id="new-device-id" --user_id="your-user-id" --operating_system="Linux" --usegpus=true --device_name="new-device-name"


Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article