I’ve read and reread your posts explaining how to mount a NTFS drive so Plex can map a library to it. I am SOOO close but I’m missing something. I can successfully mount and mount the drive to /disks/pi. I can even use the File Manager and view the files on the drive and even play them. But, when it comes to Plex, I try adding the library and I get to /disks/pi/Media and the it’s grayed out. I know it must be permissions related but I cannot for the life of me figure out how to edit them. Please help!
I would like you do unmount the NTFS partition.
Then, from /disks/pi, ls -la
It looks like, at ls -la /disks/pi you have no permission for anyone but root to access Media. Also, if you look at . (meaning the mount point itself) , only root can access there.
The system is mount as user root:root. You seem to run as pi:pi.
Without seeing your /etc/fstab, I think your mount options are in error. You need to add uid= and gid= options and with those options, specify the UID and GID for user pi
Notice the permissions. They are rwxrwxrwx (777). This is how it should mount with an internal drive always at the same physical location. (this happens to be the a dual-boot system)
/dev/sda2 /win ntfs auto,defaults 0 0
Therefore,
Unmount the drive
Make certain the permission for /disks/pi is set as 777 and owner pi:pibefore the mount.
I see what happened, you haven’t learned basic linux command line skills yet. You will need these if you wish to stay with Linux. There are many tutorials out on the internet which exercises. It’s really in your best interest to take a few of them. For as powerful as Linux is, it’s equally unforgiving. I can always help with PMS related but I unfortunately don’t have the time to teach Linux. In another life, I did.
Here is my original tutorial. I hope this fills in the missing information.
OMFG, I LOVE you. Eff… I had forgotten that I started with a fresh install of Raspbian. I feel like a fool but I am SOOOOOO flippin happy right now. I have been banging my head against a wall for DAYS.
Thanks to Chuck, too. Without your guide it would have taken even longer.