The default mount options for ntfs file systems have probably been changed between versions of Ubuntu.
Locate the line in / etc / fstab that controls the mount point in question.
The first thing to try: Make sure the options bar does not contain noexec . If so, remove it, umount , unmount it and see if it fixes it for you.
If noexec was not there or you still cannot execute, then check if user or users one of the parameters. Since user implies noexec (usually), you may need to add (after user ) the exec option, so the result will look like this:
user,exec
If user present, try making this change, then umount and remount.
If at this point you still cannot complete, then add or set the following mount option in the options bar for the mount point:
fmask=002
This is probably overly permissive, but should be fine for a single user system. This tells mount that all files in the file system are considered executable by default by default. Now umount and install again and see if it works.
Sorpigal
source share