{"id":13467797,"url":"https://github.com/plexdrive/plexdrive","last_synced_at":"2026-01-12T02:38:51.776Z","repository":{"id":37815471,"uuid":"89668997","full_name":"plexdrive/plexdrive","owner":"plexdrive","description":"Plexdrive mounts your Google Drive FUSE filesystem (optimized for media playback)","archived":false,"fork":false,"pushed_at":"2023-02-25T10:16:01.000Z","size":5025,"stargazers_count":1767,"open_issues_count":88,"forks_count":204,"subscribers_count":74,"default_branch":"master","last_synced_at":"2025-05-13T19:55:38.520Z","etag":null,"topics":["fuse","google-drive","hacktoberfest","plexdrive"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plexdrive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-04-28T04:57:48.000Z","updated_at":"2025-05-12T13:56:40.000Z","dependencies_parsed_at":"2023-07-13T16:51:47.037Z","dependency_job_id":null,"html_url":"https://github.com/plexdrive/plexdrive","commit_stats":null,"previous_names":["dweidenfeld/plexdrive"],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexdrive%2Fplexdrive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexdrive%2Fplexdrive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexdrive%2Fplexdrive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexdrive%2Fplexdrive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plexdrive","download_url":"https://codeload.github.com/plexdrive/plexdrive/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254374388,"owners_count":22060609,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fuse","google-drive","hacktoberfest","plexdrive"],"created_at":"2024-07-31T15:01:00.656Z","updated_at":"2026-01-12T02:38:51.767Z","avatar_url":"https://github.com/plexdrive.png","language":"Go","funding_links":["https://www.paypal.me/dowei"],"categories":["Go"],"sub_categories":[],"readme":"\u003ca href=\"https://github.com/plexdrive/plexdrive\"\u003e\u003cimg src=\"logo/banner.png\" alt=\"Plexdrive\" /\u003e\u003c/a\u003e\n[![Build Status](https://github.com/plexdrive/plexdrive/workflows/Go/badge.svg)](https://github.com/plexdrive/plexdrive/actions?query=workflow%3AGo)\n\n__Plexdrive__ allows you to mount your Google Drive account as read-only fuse filesystem, with direct delete option on the filesystem.\n\nThe project is comparable to projects like [rclone](https://rclone.org/), \n[google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) or \n[node-gdrive-fuse](https://github.com/thejinx0r/node-gdrive-fuse), \nbut optimized for media streaming e.g. with plex ;)\n\nPlease note that plexdrive doesn't currently support writes (adding new files or modifications), it only supports reading existing files and deletion. \n\nI tried using rclone for a long time, but got API Quota errors every day and/or multiple times per day, so I decided to try node-gdrive-fuse. The problem here was that it missed some of my media files, so as a result I started implementing my own file system library.\n\n_If you like the project, feel free to make a small [donation via PayPal](https://www.paypal.me/dowei). Otherwise support the project by implementing new functions / bugfixes yourself and create pull requests :)_\n\n## Installation\n1. First you need to install fuse on your system \n2. Then you should download the newest release from the [GitHub release page](https://github.com/plexdrive/plexdrive/releases).\n3. Create your own client id and client secret (see [https://rclone.org/drive/#making-your-own-client-id](https://rclone.org/drive/#making-your-own-client-id)).\n4. Sample command line for plexdrive\n```\n./plexdrive mount -c /root/.plexdrive -o allow_other /mnt/plexdrive\n```\n\n## Installation from Source\n1. Install FUSE an Go 1.11.4 or newer on your system (use latest stable Go version if possible)\n2. Clone the project: `git clone https://github.com/plexdrive/plexdrive`\n3. Run `GO111MODULE=on go install`\n4. Run `$GOPATH/bin/plexdrive` to use the instaled version (eg. `~/go/bin/plexdrive`)\n\n### Crypted mount with rclone\nYou can use [this tutorial](TUTORIAL.md) for instruction how to mount an encrypted rclone mount.\n\n## Usage\n```\nUsage of ./plexdrive mount:\n      --acknowledge-abuse           Allows files identified as abusive (malware, etc.) to be downloaded in Drive\n      --cache-file string           Path of the cache file (default \"cache.bolt\" in configuration directory)\n      --chunk-file string           Path of the chunk cache file (default \"chunks.dat\" in configuration directory)\n      --chunk-disk-cache            Enable disk based chunk cache to --chunk-file, defaults to cache chunks in memory\n      --chunk-check-threads int     The number of threads to use for checking chunk existence (default 6)\n      --chunk-load-ahead int        The number of chunks that should be read ahead (default 11)\n      --chunk-load-threads int      The number of threads to use for downloading chunks (default 6)\n      --chunk-size string           The size of each chunk that is downloaded (units: B, K, M, G) (default \"10M\")\n  -c, --config string               The path to the configuration directory (default \"~/.plexdrive\")\n      --drive-id string             The ID of the shared drive to mount (including team drives)\n  -o, --fuse-options string         Fuse mount options (e.g. --fuse-options allow_other,direct_io,...)\n      --gid int                     Set the mounts GID (-1 = default permissions) (default -1)\n      --max-chunks int              The maximum number of chunks to be stored in memory (default 24)\n      --refresh-interval duration   The time to wait till checking for changes (default 1m0s)\n      --root-node-id string         The ID of the root node to mount (use this for only mount a sub directory) (default \"root\")\n      --uid int                     Set the mounts UID (-1 = default permissions) (default -1)\n      --umask uint32                Override the default file permissions\n  -v, --verbosity int               Set the log level (0 = error, 1 = warn, 2 = info, 3 = debug, 4 = trace)\n      --version                     Displays program's version information\n```\n\n### Signals\n* HUP: Trigger checking for changes\n* INT (Ctrl+C): Unmount and exit\n\n### Support \nSlack support is available on [our Slack channel](https://join.slack.com/t/plexdrive/shared_invite/MjM2MTMzMjY2MTc5LTE1MDQ2MDE4NDQtOTc0N2RiY2UxNw). \nFeel free to ask configuration and setup questions here.\n\n### Supported FUSE mount options\n* allow_other\n* allow_dev\n* allow_non_empty_mount\n* allow_suid\n* max_readahead=1234\n* default_permissions\n* excl_create\n* fs_name=myname\n* local_volume\n* writeback_cache\n* volume_name=myname\n* read_only\n* direct_io\n\n### Root-Node-ID\nYou can use the option `root-node-id` to specify a folder id that should be mounted as\nthe root folder. This option will not prevent plexdrive from getting the changes for your\nwhole Google Drive structure. It will only \"display\" another folder as root instead of the\nreal root folder.\nDon't expect any performance improvement or something else. This option is only for your\npersonal folder structuring.\n\n#### Team Drive\nYou can pass the ID of a Team Drive as `drive-id` to get access to a Team drive, here's how:\n* Open the Team Drive in your browser\n* Note the format of the URL: https://drive.google.com/drive/u/0/folders/ABC123qwerty987\n* The `drive-id` of this Team Drive is `ABC123qwerty987`\n* Pass it with `--drive-id=ABC123qwerty987` argument to your `plexdrive mount` command\n\n# Contribute\nIf you want to support the project by implementing functions / fixing bugs\nyourself feel free to do so!\n\n1. Fork the repository\n2. Clone it to your [golang workspace](https://golang.org/doc/code.html) $GOPATH/src/github.com/username/plexdrive\n3. Implement your changes\n4. Test your changes (e.g. `go build \u0026\u0026 ./plexdrive -v3 /tmp/drive`)\n5. Format everything with [gofmt](https://golang.org/cmd/gofmt/) (\n(I recommend working with [VSCode](https://code.visualstudio.com/) and [VSCode-Go](https://github.com/lukehoban/vscode-go))\n6. Create a pull request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplexdrive%2Fplexdrive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplexdrive%2Fplexdrive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplexdrive%2Fplexdrive/lists"}