Arch ocamlfuse
# Install opam and its dependencies
sudo pacman -S opam
sudo pacman -S patch
sudo pacman -S make
sudo pacman -S pkgconf
# Start and update opam
opam init
opam update
# Install google-drive-ocamlfuse
opam install google-drive-ocamlfuse
# Update current shell environment
eval $(opam env)
# Sign in to Google
google-drive-ocamlfuse
# Create Google Drive directory
mkdir ~/GoogleDrive
# Mount the filesystem
# (Replace [mountpoint] with the name of your desired folder)
google-drive-ocamlfuse [mountpoint]
Pahheb