How to mount a Google Drive

    Add the APT repository, update and install the app
    sudo add-apt-repository ppa:alessandro-strada/ppa
    sudo apt-get update
    sudo apt-get install google-drive-ocamlfuse

    Add your username to the fuse group
    sudo usermod -a -G fuse <username>

    Give permission to access your account
    google-drive-ocamlfuse
    (choose "Accept" when browswer opens)

    Create a mount point
    mkdir ~/googledrive

    To mount the Google drive file system
    google-drive-ocamlfuse ~/googledrive

    To unmount
    fusermount -u ~/googledrive

     

    Source: http://community.linuxmint.com/tutorial/view/2051

    No questions yet.