Hi
I have NextCloud running on a mint install of Ubuntu 16.04 LTS (server edition) and have an issue when setting up a local “external storage” as I get the following error when I access the folder
You don't have permissions to upload or create files here
The local storage that I am mounting with label data (/media/win) on nextcloud is:
sdb 836.6G
└─sdb1 ntfs 836.6G /media/win data
drive permissions in fstab is as follows
UUID=537FEF451930795B /media/win ntfs rw,auto,users,exec,nls=utf8,umask=003,gid=46,uid=1000 0 0
Giving my HTTP server ownership and permission as per nextcloud documentation for Local
sudo -u www-data chown -R www-data:www-data /media/win
sudo -u www-data chmod -R 0750 /media/win
I get the following error
chown: changing ownership of '/media/win': Operation not permitted
What could the cause of this problem be?