
WSL2에서는 루트가 아닌 일반 사용자가 마운트할 수 있도록 마운트 지점을 /etc/fstab
구성 했습니다 .drvfs
F: /mnt/f drvfs rw,noatime,dirsync,noauto,exec,umask=0022,user 0 0
user
마운트 옵션이 적용되었음에도 불구하고 mount
여전히 슈퍼유저 권한이 필요합니다.
$ mount /mnt/f/
mount: /mnt/f: must be superuser to use mount.
dmesg(1) may have more information after failed mount system call.
<3>WSL (839) ERROR: UtilCreateProcessAndWait:687: /bin/mount failed with status 0x2000
마운트 옵션을 mount
무시하는 이유는 무엇입니까 ? user
그리고 일반 사용자가 drvfs
루트 없이 마운트하도록 허용하는 방법은 무엇입니까?