sshfs
내 로컬 컴퓨터(macOS 10.12 Sierra)에서 네트워크 드라이브(CentOS 7.4)를 사용하고 "영구적으로" 마운트하려고 합니다.automount
첫 번째,이것이 실제로 사용하기에 가장 좋은 도구입니까?이것을 위해? 기본적으로 컴퓨터를 켤 때마다 다시 연결되기를 원합니다. 다른 솔루션이 사용되는 것을 보았지만 /etc/fstab
그 솔루션도 작동하게 할 수 없습니다.
sshfs
터미널 명령을 사용하여 작동하도록 만들었습니다 (따라서 sshfs
FUSE로 설치해도 괜찮을 것입니다).
sshfs <user>@<address>:/ /Users/me/Desktop/netwk -o defer_permissions,transform_symlinks,volname=netwk
이것이 제가 한 일입니다. 저는 /etc/auto_master
다음 줄로 설정했습니다.
/Users/me/Desktop/netwk auto_netwk
그리고 다음과 같은 것을 만듭니다 /etc/auto_netwk
: (모든 콜론/슬래시가 올바른 위치에 있습니까? 몇 가지 다른 변형을 찾았습니다.)
netwk -fstype=sshfs ://<user>@<address>:/
이제 실행하면 sudo automount -vc
폴더가 성공적으로 마운트되고 반환되는 것 같습니다.
automount: /net updated
automount: /home updated
automount: /Users/me/Desktop/netwk mounted
automount: no unmounts
그리고 mount
돌아오다
/dev/disk1 on / (hfs, local, journaled)
devfs on /dev (devfs, local, nobrowse)
map -hosts on /net (autofs, nosuid, automounted, nobrowse)
map auto_home on /home (autofs, automounted, nobrowse)
map auto_netwk on /Users/me/Desktop/netwk (autofs, automounted, nobrowse)
그러나 마운트된 볼륨에는 내용이 없는 것 같습니다. ~/Desktop/netwk
열면 빈 디렉토리가 표시되고 크기는 0이며 ls ~/Desktop/netwk/netwk
정지됩니다.
명백한 구성 오류나 제가 놓친 단계가 있습니까?(여기서 비슷한 질문을 모두 살펴봤지만 모두 명백한 오류가 있는 것 같습니다. 반면 제 것은 조용히 실패하는 것 같습니다.)