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
  • curl or wget installed (for script installation)
  • Internet connection

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:

  1. Download the latest Hubio Sync binary
  2. Install it to /usr/local/bin
  3. Add Hubio Sync to your PATH
  4. Make the hubio-sync command 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:

  1. Reload your shell configuration:

    source ~/.bashrc
    # or for zsh users:
    source ~/.zshrc
  2. Verify installation:

    which hubio-sync
    ls -la /usr/local/bin/hubio-sync
  3. Ensure /usr/local/bin is in your PATH:

    echo $PATH | grep /usr/local/bin

Installation failed

If the installation script fails:

  1. Check your internet connection
  2. Ensure you have necessary permissions (the script will prompt for sudo if needed)
  3. 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