Rclone environment incompatibility with another software

What is the problem you are having with rclone?

-when rclone is already installed and i use the command below to install the dependecies of a software, the rclone stops working.

sudo apt-get install libxslt1-dev libcurl3 libgeoip-dev python -y

-when the software and its dependencies is already installed and i install rclone, the software stops working.

both can't work together, because of some enviroment incompatibility.

i need a solution for this, i need to run both in the same environment

Run the command 'rclone version' and share the full output of the command.

rclone v1.58.1

  • os/version: ubuntu 18.04 (64 bit)
  • os/kernel: 4.15.0-176-generic (x86_64)
  • os/type: linux
  • os/arch: amd64
  • go/version: go1.17.9
  • go/linking: static
  • go/tags: none

Which cloud storage system are you using? (eg Google Drive)

Dropbox

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone mount --daemon dropbox:/ --allow-other /var/www/html/

The rclone config contents with secrets removed.

[dropbox]
type = dropbox
client_id = redacted
client_secret = redacted
token = {"access_token":"redacted","token_type":"bearer","refresh_token":"redacted","expiry":"2022-03-16T23:40:19.274456359Z"}

A log from the command with the -vv flag

The rclone doesn't even run, and don't output any logs.

The software you listed wouldn't have anything to do with rclone as that's just a red herring.

You need to change that to something that is going to spit out a log file.

rclone mount dropbox:/ --allow-other /var/www/html/ --log-file /tmp/rclone.log --daemon -vv

The software you listed wouldn't have anything to do with rclone as that's just a red herring.

Actually, it does.

rclone uses curl
the software that i'm saying uses libcurl3
it seems that both can't be installed together.
i'm trying to find a solution for this.

rclone does not use curl in the mount.

You can use curl to install it or download a binary if curl (for some reason) wasn't available.

When mounting, you are using fuse on the host system as rclone is a fuse based mount.

If you want some help on your mount, you'd have to share a log as the updates you listed are not relevant to the mount.

thanks, investigating more, i realized that the files doesn't show up acessing http://example.com/, it gives me this error ERR_EMPTY_RESPONSE.
but using the command ls /var/www/html the files are still there.

but, no worries, i only need this, can mark this as resolved.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.