Windows 10에서 WSL, ubuntu를 사용하고 있는데 아래와 같이 권한을 설정하고 싶은데 오류가 발생합니다. 왜? 어떻게 해결할 수 있나요?
ubuntu-user@LAPTOP:~$ chmod 400 .ssh/MyKey.pem
chmod: changing permissions of '.ssh/MyKey.pem': Operation not permitted
답변1
이러한 명령은 단일 세션 내에서만 사용할 수 있으며 터미널을 열 때마다 다시 입력해야 합니다. 나는 이런 식으로 문제를 해결했습니다.
sudo umount /mnt/c
sudo mount -t drvfs C: /mnt/c -o metadata
chmod 400 [fileName] or chmod 700 [fileName]
인용하다: https://stackoverflow.com/questions/46610256/chmod-wsl-bash-doesnt-work
답변2
사용sudo chmod 400 .ssh/MyKey.pem