Skip to main content
Skip table of contents

Troubleshooting Common Issues

This article will help you when things go south.

Common Errors and Fixes

Did we say common? We mean continuous…

Dieselpunk F1.jpeg
  • Permission Denied

    • Ensure the binary has execute permissions:

      CODE
      chmod +x /path/to/DataSinkpro
  • Missing Dependencies

    • Run the following to install common dependencies:

      CODE
      sudo apt update && sudo apt install -y libcurl4 openssl
    • On Fedora/Red Hat systems:

      CODE
      sudo dnf install -y libcurl openssl
  • Binary Not Found

    • Confirm the binary is in your PATH:

      CODE
      echo $PATH

      If not, manually add it as shown in Installation Step 3.

Advanced Debugging

  1. Check logs:

    CODE
    tail -f ~/.DataSinkpro/logs/error.log
  2. Run in verbose mode:

    CODE
    DataSinkpro --verbose
  3. For unresolvable issues, check GitHub discussions or open a new issue:

Pro Tips for Hardcore Linux Users

  • Automate with Cron: Schedule sync tasks using crontab:

    CODE
    crontab -e

    Add:

    CODE
    0 2 * * * /usr/local/bin/DataSinkpro --sync all
  • Containerized Install: For a clean setup, use Docker:

    CODE
    docker run -v /data:/data DataSinkpro:latest --config /data/config.yaml
  • Network Efficiency: Use rsync with DataSink Pro’s CLI options to enhance performance:

    CODE
    DataSinkpro --sync --use-rsync
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.