mount.nfs: access denied by server while mounting
개요 임베디드 개발에 필수적인 nfs가 검색해보면 여러가지 나오는데 다 해보고도 mount가 안될때가 있습니다. ( 오늘 제가 그 상황에 처했습니다. ) nfs서버 설정을 하고 임베디드 보드에서 부팅해보았지만 반응이 없어, 다른 리눅스 PC에서 nfs mount를 해보니 다음과 같은 에러 메시지가 발생합니다. $ sudo mount 192.168.1.201:/nfsroot ./mnt/ mount.nfs: access denied by server while mounting 192.168.1.201:/nfsroot 배경지식 보통 이럴때는 nfs version 차이입니다. nfs version의 차이는 아래에 자세히 기술되어있습니다. (몰라도 되지만 알아두면 좋습니다.) NFS version 3 (NFSv3) Has support for safe asynchronous writes and is more robust at error handling than the previous NFSv2 Supports 64-bit file sizes and offsets, allowing clients to access more than 2 GB of file data. NFS version 4 (NFSv4) Works through firewalls and on the Internet No longer requires rpcbind service Supports Access Control Lists (ACLs) Utilizes stateful operations. 출처 : Install and Configure NFS Server on Ubuntu 20.04/18.04 & Debian 10/9 원인 Ubuntu 20.04 에서 nfs-kernel-server 를 설치했더니 nfs version이 3으로 설치되었나봅니다. 다른 리눅스 PC에서 다음과 테스트해보면 알 수 있습니다. $ sudo mount -t nfs -o nfsvers=4 1...