Issues with changing file permission to 400
I have a ssh key that I'm trying to set the permission as 400 by running the following command
chmod 400 id_rsa_git
upon running ls -l
I'm seeing the permission as 444
-r--r--r-- 1 <username> <username> 2655 Mar 10 10:40 id_rsa_git
Could help me with this issue, I'm running a ubuntu vm pod with a network volume1 Reply
It's resolved now. Just so if anyone else faces this issue, it might be because your key file is in the network volume, just move it to local storage and then change the permission.