I'm using Windows 10 and Ubuntu dual booting.
I've installed plex server but it cannot access my Windows volume (C,D)
I have run the commands
sudo chmod -R 777
gedit /etc/fstab
and added the volume in the fstab file
I ran cat /proc/mounts
and added this line in /etc/fstab
/dev/sda2 /media/virajlinux/New\040Volume fuseblk rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096 0 0
That didn't work, so I tried this line
/dev/sda2 /media/virajlinux/New\040Volume fuseblk rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096 0 2
I unsuccessfully tried:
- Plex Media Manager sees external NTFS drive but doesn't see directories
- Plex Media Server: Won't find media External Hard Drive
I want to run plex without any effect on Windows 10.
How can I fix it?
Had the same issue, found the solution:
For this question in this specific case you need to run
You have a dual-boot system with Windows 10 and Ubuntu, Plex server installed on the Ubuntu partition. You want to read the Windows ntfs partions "C" and "D" but you don't want write access to make sure that Windows 10 runs without any issues later.
Assuming that your Windows partions are /dev/sda2 and /dev/sda3, put the following lines in
/etc/fstab
:and point Plex to them accordingly. Windows drives are mounted at boot of the Ubuntu partition with the Plex media server, and they are read-only.
This should give you what you want.
I would suggest installing
ntfs-3g
(as mentioned in the comments)then edit the
fstab
file with your favorite ediotrto this
Disclaimer: There are a lot of options you can pass here, but with **permissions
** you can do things like
chmodor
chown, which might help with
plex`.Then, if the volume
/dev/sda2
is not mounted doif you get an error similar to
then do