Well, not really.
First things first. The options it is mounted with:
(ro,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
Mind the ro. Thu si t is mounted read-only indeed. Most probably because it was realier used by a Microsoft Windows system and that system is NOT properly and completely shut down. So first back into Windows and then do what @rnickert advises in a post above: no “fast boot” and probably even no “hibernation”
I had it working by disabling fast boot in Windows. But then it stopped working. I had to also disable hibernation in Windows. Turning off fast-boot was not enough.
Then.
The noauto is to avoid mounting it at boot (all entries in /stc/fstab are normally mounted at boot). If you want that depneds on you and the usage you make of this. When it is only scracely, then maybe noauto and mount when needed. Of almost always during a Linux session, then do not use noauto. It is for convenience.
As said, all in /etc/fstab is mounted normally at boot. And that is of course done “as root”, thus no extra entering of a password is needed. You are not asked for other file systems like / and /home to enter a password, aren’t you?
As you see in the ls -l listing, user root and group root are owners of all files here. As I said earlier (and you must have understood that, because you did not ask for further information because you did not understand it), NTFS is NOT Linux, it has NO user and group and file permission bits. THEY ARE ALL FAKED on a Linux system. And root:root is the deafult as the man page tells you. Thus when you do not want everything to be owned by root:root and want to influence protection by permission bits, you must add those as file system dependent options. Thus the example of @rnickert. But again it is up to you to know why you have that NTFS file system mounted and who should be able to meddle there around (and eventually maybe break it ).
I am sorry to say, but I am afraid that you are not really having the concept of Unix file ownership by user and group and the permissions that belong to it, at you fingertips.