> For the complete documentation index, see [llms.txt](https://node.z4ch.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://node.z4ch.xyz/tools.md).

# Useful Tools

* [Webmin](https://webmin.com/download/) is a web-based system administration tool for Unix-like servers, and services that can used to configure operating system internals, such as users, disk quotas, services or configuration files, as well as modify, and control open-source apps, such as BIND DNS Server, Apache HTTP Server, PHP, MySQL, and many more.\\

  ```
  curl -o setup-repos.sh https://raw.githubusercontent.com/webmin/webmin/master/setup-repos.sh
  sudo sh setup-repos.sh
  # follow next prompt to install
  ```
* [NCDU](https://ostechnix.com/check-disk-space-usage-linux-using-ncdu/) is a simple and fast disk usage analyzer which is used to find which directories or files are taking up more space either on a local or remote systems.\\

  ```
  sudo apt install ncdu

  # replace / = path you want to check
  ncdu -x /
  ```
* [Prometheus](https://prometheus.io/docs/introduction/overview/) is an open-source systems monitoring and alerting toolkit with an active ecosystem. It is the only system directly supported by Kubernetes and the de facto standard across the cloud native ecosystem.
* QUAI CLI balance checker

  ```
  cd
  cd go-quai
  wget https://raw.githubusercontent.com/zachzwei/z4chzwei.github.io/refs/heads/main/tools/install_quai_balance.sh
  chmod +x install_quai_balance.sh
  ./install_quai_balance.sh
  ```


---

# 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://node.z4ch.xyz/tools.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.
