[Linux]NAS NFS설정
·
Linux
1. NAS에서 공유폴더 NFS설정(권한) 2. Linux 콘솔 창에서 마운트 명령 입력(재부팅시 자동 실행) 1) 마운트 할 폴더 생성 Ex) mkdir test 2) 마운트 명령 입력(mount [NAS IP 주소] : [공유 폴더의 마운트 경로] / [NFS 클라이언트 마운트 지점]) Ex) 192.168.10.11:/volume1/share /test 3)마운트 고정 fstab 파일 수정 Ex)vi /etc/fstab(빨간 밑줄 행만 추가) ================================================================ 백업 / 매일 02:00 ## NFS 설정(192.168.40.48 -> 192.168.40.27 MOUNT) ## mount -t nfs -o..
[Linux]mount nfs 에러
·
Linux
mount -t nfs 실패 --> mount: wrong fs type, bad option, bad superblock on --> yum search nfs --> yum install nfs-utils mount -t nfs 실패 --> mount.nfs: rpc.statd is not running but is required for remote locking. mount.nfs: Either use '-o nolock' to keep locks local, or start statd. mount.nfs: an incorrect mount option was specified --> yum search portmap --> centos 6.3 에서는 portmap 을 안 쓰는건지 rpcbind ..