-
-
Notifications
You must be signed in to change notification settings - Fork 39
'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
- Download the latest zurg here
- Unzip it in a directory
- In the same directory, create a
config.yml
file - Copy-paste this inside the config file
- You should have
rclone
installed, if you don't, runsudo apt install rclone
. Make sure it's available by runningrclone version
- Let's make an rclone config quickly if you don't have one yet, run
mkdir -p $HOME/.config/rclone/
and thennano $HOME/.config/rclone/rclone.conf
-
Copy-paste this inside the rclone config file and replace
http://zurg:9999
withhttp://localhost:9999
- 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 thensudo chown $USER:$(id -gn) /mnt/zurg
- Now we can run zurg and rclone. To run zurg, just run the binary
./zurg-linux-amd64
(or whichever platform you have downloaded for) - 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!
(c) 2023 Debrid Media Manager