NAS 공유 마운트는 수동으로 작동하지만 온라인 상태 후에도 시작 시에는 작동하지 않습니다.

NAS 공유 마운트는 수동으로 작동하지만 온라인 상태 후에도 시작 시에는 작동하지 않습니다.

문제는 Debian 시스템에 있습니다. 저는 Ubuntu 시스템을 사용하고 동일한 공유가 Raspberry에 마운트되어 있습니다.

설치 항목을 넣었는데 부팅이 아닌 부팅 /etc/fstab에만 작동합니다 .sudo mount -a

설치 중 네트워크를 사용할 수 없는 것이 문제인 것으로 의심되어 서비스 프래그먼트(아래)를 작성했습니다.이 튜토리얼).

간단히 말해서:

sudo nano /etc/systemd/system/mnt-mune_NAS.mount포함하다

[Unit]
Description=Mount NFS Share from nfs NASS
DefaultDependencies=no
Conflicts=umount.target
After=network-online.target remote-fs.target
Before=umount.target

[Mount]
What=192.168.1.20:/volume1/cartella_mune
Where=/mnt/mune_NAS
Type=nfs
Options=defaults

[Install]
WantedBy=multi-user.target

그런 다음 서버를 새로 고치고 sudo systemctl start mnt-mune_NAS.mount확인했습니다 systemctl status mnt-mune_NAS.mount.

● mnt-mune_NAS.mount - Mount NFS Share from nfs NASS
     Loaded: loaded (/etc/systemd/system/mnt-mune_NAS.mount; enabled-runtime; vendor preset: enabled)
     Active: active (mounted) since Tue 2022-04-26 22:57:53 CEST; 3min 8s ago
      Where: /mnt/mune_NAS
       What: 192.168.1.20:/volume1/cartella_mune
      Tasks: 0 (limit: 19047)
     Memory: 32.0K
        CPU: 7ms
     CGroup: /system.slice/mnt-mune_NAS.mount

마지막으로 시작 시 실행되도록 했습니다 sudo systemctl enable mnt-mune_NAS.mount.

sudo reboot; exit공유는 시작 후에 마운트되지 않습니다 mount | grep NAS.

뭐가 문제 야?

관련 정보