맥으로 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 디렉토리]
그럼 잘될 것이다.
'코딩' 카테고리의 다른 글
kubernetes 노드가 Not ready일때 runtime network not ready 문제 (0) | 2024.07.26 |
---|---|
kubernetes master node 및 worker node 셋업하기 (0) | 2024.07.25 |
Unrecognized font family 에러 (react native ionicons) (0) | 2022.01.11 |
M1 맥북 React Native run-ios 오류 해결 (0) | 2022.01.09 |
네이버 뉴스 크롤링 프로그램 (2) | 2021.03.20 |