What is currently the best method to mount GSuite/Drive on a M1 MacBookPro (I'm running Ventura 13.6.2)
I would normally install programmes via Homebrew, but I anticipated an issue with rclone and mount using this route:
brew install rclone
"NOTE: This version of rclone will not support mount any more (see 5373).
If mounting is wanted on macOS, either install a precompiled binary or enable the relevant option when installing from source."
so instead I chose to install rclone via the standard script installation:
sudo -v ; curl https://rclone.org/install.sh | sudo bash
Was this a mistake?
Should I now install MacFUSE or FUSE-T?
https://osxfuse.github.io/
https://www.fuse-t.org/
or should I use serve?
https://rclone.org/commands/rclone_serve_nfs/
(would it be ok to install MacFUSE using brew?)
https://formulae.brew.sh/cask/macfuse#default
I searched the forum to try and find the current best solution, but didn't reach a conclusion.
"If mounting is wanted on macOS, either install a precompiled binary or enable the relevant option when installing from source"
I didn't know how to do this? was running the default install script enough?
What is the problem you are having with rclone?
trying to mount GDrive on a M1 Mac
Run the command 'rclone version' and share the full output of the command.
rclone v1.65.2
- os/version: darwin 13.6.2 (64 bit)
- os/kernel: 22.6.0 (arm64)
- os/type: darwin
- os/arch: arm64 (ARMv8 compatible)
- go/version: go1.21.6
- go/linking: dynamic
- go/tags: cmount
Which cloud storage system are you using? (eg Google Drive)
Google Drive (GSuite)
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
rclone mount gsuite: /Users/me/Mount
rclone mount gsuite: /Users/me/Mount --vfs-cache-mode full -vvv
rclone nfsmount gsuite: /Users/me/Mount -vvv --allow-other
just a couple of commands I tried. I don't have MacFUSE or FUSE-T on my laptop yet. I wanted to ask first before doing this.
Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.
[gsuite]
type = drive
client_id = XXX
client_secret = XXX
scope = drive
token = XXX
team_drive =
LOG:
error I saw was:
2024/03/01 07:52:19 Fatal error: failed to mount FUSE fs: mount stopped before calling Init: mount failed: cgofuse: cannot find FUSE
So I guess I need to install FUSE? But which one macFUSE / FUSE-T. Or is there a better method?