PMS not detecting mounted drive

Server Version#: 1.14.1.5488

So I’m trying to add my google drive mount to my plex library. I correctly mounted it, as I can see it and access it through Ubuntu, but Plex can’t see it. I’m positive it’s a permission issue, and I tried following this guide from this post, but I ended up crashing my OS and had to reinstall. This is probably because the mount isn’t separated with slashes (like /dev/sda1), rather it’s just a name (google-drive-ocamlfuse). So how can Plex detect my drives?

You must first mount, using FUSEFS, that remote source.

Once it is available as if a local file system, You may then continue with setting permissions for Plex.

As in the remote I set up with rclone? Okay I just did, but when I used df again, it still shows up as “secret:”. This is what I have right now.

I see what you did and are doing incorrectly.

In Linux, we don’t care about the device name (left column), we only care about where it is grafted to the OS (the right column).

In this case, you grafted (mounted) it into your home directory.

While this works for you, it doesn’t work well for Plex because default Linux security prevents two users from seeing each others’ files without expressly granted permission.

If I may be bold: Move the mount point for your google drive into a non-attached directory (e.g. /google)

1.  sudo mkdir /google
2.  sudo chown your-username /google
3.  sudo chmod 755  /google
4.  edit /etc/fstab to change the mount point for the fuseFS to /google

With this arrangement,

  1. It’s out of your home directory and not restricted access
  2. you will have full control (your username)
  3. You can still do all the normal operations on it as if it were in your home directory
  4. Plex can now see the contents of it just as you want.

Sorry, still a bit lost.

So I assume when you mean edit /etc/fstab, I follow your guide. The problem is I can’t get the block id for the mounts. I type sudo blkid I only get /dev/ stuff

Then you skipped the step where you looked at the df output, found your device’s friendly name in the right column, and then use the /dev/sdxx entry found in the left column on that same line.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.