# 다음과 같이 nfs 마운트 실행하면 에러가 발생했다.
sudo mount -t nfs 10.10.10.123:/nfs/ /home/ysoftman/nfs
... for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program
# nfs 클라이언트 프로그램을 설치하면 된다.
# ubuntu 의 경우
sudo apt-get install nfs-common
# centos 의 경우
dnf install nfs-utils
# 또는
yum install nfs-utils
comments:
댓글 쓰기