[Ubuntu] curlftpfs 를 이용해서 ftp 원격 마운트 하기 명령어

curlftpfs FTP서버주소 마운트경로 -o no_verify_peer,allow_other,user=FTP아이디:FTP비밀번호

// 예제
curlftpfs 192.168.0.10 /mnt/ftp/ -o no_verify_peer,allow_other,user=user1:p\@ssw0rd

비밀번호나 아이디에 특수문자가 있는 경우 특수문자 앞에 \를 붙여서 사용한다.

Leave a Comment