$ cd /mnt $ ls -ld
Check who created the mount target for the ext4 /mnt/*** folder. Let's suppose the folder name is myext4files.
This user is the owner of the files, in the ext4 policy:
Ex: drwxrwxrwx 1 root root 4096 mai 19 23:12 myext4files
Run next commands with your normal user, not su not sudo (the dollar prompt says that):
$ pwd # you must be at /mnt. Case not, cd /mnt $ sudo chown $USER:$USER yourext4folder -R
If your are in your own computer, you may replace myext4files by * (all folders to be mounted)
In /etc/fstab the line for the ext4 partition is:
UUID=[the disk UUID] /mnt/myext4files ext4 errors=remount-ro 0 0
NO need of "quotes" for the UUID:
uuid=2abcd-879afc87-39493ea8c /mnt/myext4files ...
To find the UUID of your ext4 partition, search by the sdx[number], label, ext4, size etc:
sudo blkid