need to install google-drive-ocamlfuse and write a script to mount $ cat /home/{USERID}/bin/gdfuse.sh #!/bin/bash su {USERID} -l -c "google-drive-ocamlfuse -label $1 $*" exit 0 make a directory as a mount point mkdir /home/{USERID}/GoogleDrive apply to fstab to auto mount when boot $ cat /etc/fstab | grep gdfuse /home/{USERID}/bin/gdfuse.sh#default/home/{USERID}/GoogleDrive fuse uid=1000,gid=100..