centos
I'm able to do this
$ mkdir /mnt/jenkins_master
$ mount /dev/xvdf /mnt/jenkins_master
However, the mounted files have the wrong user:group and doing the following takes a loonnnnggg time
$ chown -R jenkins:jenkins /mnt/jenkins_master
So I'm trying this instead, and getting the subsequent error
$ mount -o umask=0022,gid=jenkins,uid=jenkins /dev/xvdf /mnt/jenkins_master
mount: /mnt/jenkins_master: wrong fs type, bad option, bad superblock on /dev/nvme1n1, missing codepage or helper program, or other error.
The volume is ext4 and adding the mount -t ext4 ... option does not help.
What's the fix?