I'm trying to mount an external harddrive in linux. I added the following line in /etc/fstab
/dev/sdf1 /path/to/my/mount ntfs defaults,umask=022 0 0
and then do
sudo mount -a
Everything mounts fine (shows up in df, etc.) but after creating folders / files in the drive, I can't "chown" them. It's all stuck as root.
Where did I go wrong?