sshfs input output error

맥으로  sshfs로 마운트시 input output error가 뜰수도 있다.

 

 

이럴 때는, ps aux | grep sshfs를 통해 process number를 따고

$ ps aux | grep sshfs 

sshfs 프로세스 번호가 7777번이라고 하면, 아래와 같이 입력후

$ kill -QUIT 7777 

다시 마운트 해제 후 sshfs 마운팅을 시켜주면 된다. 

$ umount [mount 디렉토리]
$ sshfs [host directory] [mount 디렉토리]

그럼 잘될 것이다.