Back to Documentation
Troubleshooting
Solutions to common problems and issues you might encounter with OmniSet.
Run the Doctor Command
OmniSet includes a built-in diagnostic tool. Run it first to identify issues:
bash
./bin/omniset doctor Installation Fails
If the installation script fails to run:
- Check your internet connection - OmniSet needs to download packages
- Verify sudo access - Run
sudo whoamito test - Update package lists first:
bash
sudo apt update && sudo apt upgrade -y Module Not Found
If a module isn't recognized:
- Check the module name - Use
./bin/omniset listto see all available modules - Check by category - Use
./bin/omniset list --category development - Get module info - Use
./bin/omniset info <module-name>
Package Conflicts
If you see errors about broken or conflicting packages:
- Fix broken packages:
bash
sudo apt --fix-broken install
sudo dpkg --configure -a
sudo apt autoremove Docker Permission Denied
If you get permission errors running Docker:
- Add yourself to the docker group:
- Log out and back in (or reboot)
bash
sudo usermod -aG docker $USER Web Interface Won't Open
If the browser-based selector doesn't open:
- Check if a browser is installed - OmniSet needs a default browser
- Try the interactive CLI instead:
bash
./bin/omniset install --interactive Unsupported Distribution
If your distro isn't supported:
Supported: Ubuntu 20.04+, Debian 11+, Fedora, Arch, openSUSE, Alpine
For other distributions, you can try:
- Check if your distro is Debian-based - it might work
- Open an issue on GitHub requesting support
- Contribute support for your distro
Getting Help
If you can't solve your issue:
- Search existing issues on GitHub
- Open a new issue with:
- Your distribution and version
- The exact error message
- Output from
./bin/omniset doctor - Steps to reproduce
- Join discussions for community help
On this page
More docs
Was this helpful?
Help us improve the documentation