Install Hubio Sync on Linux
Install Hubio Sync on any Linux distribution with our universal installation script or direct binary download.
Prerequisites
- Linux kernel 3.10 or later
curlorwgetinstalled (for script installation)- Internet connection
Installation Script (Recommended)
Run the following command in your terminal:
curl -fsSL https://install.hubio.team/install.sh | sh
Or if you prefer wget:
wget -qO- https://install.hubio.team/install.sh | sh
This single command will:
- Download the latest Hubio Sync binary
- Install it to
/usr/local/bin - Add Hubio Sync to your PATH
- Make the
hubio-synccommand available system-wide
Direct Binary Download
Prefer to download the binary directly? Choose your architecture:
After downloading, make it executable and move to your PATH:
chmod +x hubio-sync-*-linux
sudo mv hubio-sync-*-linux /usr/local/bin/hubio-sync
Verification
Verify the installation by running:
hubio-sync --version
You should see output similar to:
hubio-sync version 1.0.0
Next Steps
Troubleshooting
Command not found
If you see command not found: hubio-sync after installation:
-
Reload your shell configuration:
source ~/.bashrc # or for zsh users: source ~/.zshrc -
Verify installation:
which hubio-sync ls -la /usr/local/bin/hubio-sync -
Ensure
/usr/local/binis in your PATH:echo $PATH | grep /usr/local/bin
Installation failed
If the installation script fails:
- Check your internet connection
- Ensure you have necessary permissions (the script will prompt for sudo if needed)
- Try running with verbose output:
curl -fsSL https://install.hubio.team/install.sh | sh -s -- --verbose
For more detailed troubleshooting, see the Troubleshooting Guide.
Already installed
If Hubio Sync is already installed and you want to upgrade, simply re-run the installation script (it will detect and upgrade automatically):
curl -fsSL https://install.hubio.team/install.sh | sh
Review the Installation Script
Want to review the script before running it? View the source:
curl -fsSL https://install.hubio.team/install.sh
Or download and inspect it first:
curl -fsSL https://install.hubio.team/install.sh -o install.sh
less install.sh
sh install.sh
Uninstallation
To uninstall Hubio Sync:
curl -fsSL https://install.hubio.team/uninstall.sh | sh