레이블이 dnf인 게시물을 표시합니다. 모든 게시물 표시
레이블이 dnf인 게시물을 표시합니다. 모든 게시물 표시

nfs client

# 다음과 같이 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