Skip to content

'No docker' setup in Ubuntu or any Linux distros

Ben Sarmiento edited this page Nov 26, 2023 · 1 revision

This is just a basic setup

  1. Download the latest zurg here
  2. Unzip it in a directory
  3. In the same directory, create a config.yml file
  4. Copy-paste this inside the config file
  5. You should have rclone installed, if you don't, run sudo apt install rclone. Make sure it's available by running rclone version
  6. Let's make an rclone config quickly if you don't have one yet, run mkdir -p $HOME/.config/rclone/ and then nano $HOME/.config/rclone/rclone.conf
  7. Copy-paste this inside the rclone config file and replace http://zurg:9999 with http://localhost:9999
  8. We will now create the mounting point. I recommend using /mnt/zurg, this is where we will mount your Real-Debrid library through zurg. If it's not yet created, you should do sudo mkdir -p /mnt/zurg and then sudo chown $USER:$(id -gn) /mnt/zurg
  9. Now we can run zurg and rclone. To run zurg, just run the binary ./zurg-linux-amd64 (or whichever platform you have downloaded for)
  10. And then rclone can be run like this rclone mount zurg: /mnt/zurg --dir-cache-time 30s --allow-other --daemon -v

That's it!

Note: you can run zurg inside a tmux session to keep it running all the time. Or docker works too!

Clone this wiki locally