lazydays wrote:Code: Select all
/dev/sda2 /mnt -o uid=pi,gid=pi,umask-0022 0 2
I'm still having trouble with this - everytime I change fstab it stops the pi from booting up until I remove the line.
is there an other typo in your post or is it in your fstab...?
the "-o" is a syntax error for fstab it is only a command line option.
try this in your fstab
Code: Select all
/dev/sda2 /mnt auto uid=pi,gid=pi,umask=0022 0 0
EDIT: i am not entirely sure, but somewhere i read, that the default ntfs driver will mount only as readonly. to have full access to ntfs you have to install and use ntfs-3g
to install:
and then your fstab entry:
Code: Select all
/dev/sda2 /mnt ntfs-3g uid=pi,gid=pi,umask=0022 0 0