OS/LINUX
리눅스 FTP 서버 마운트
proApril
2022. 2. 25. 09:04
1. apt-get 을 이용하거나 yum 을 이용해서 curlftp를 다운로드 하면 된다.
# apt-get 이용
sudo apt-get install curlftpfs
# yum 이용
sudo yum install -y epel-release
sudo yum install -y curlftpfs
2. curlftp를 이용해 마운트
# [SERVER]에 FTP 서버 입력 ,
# [PATH]에 마운트할 폴더경로 입력
# SERVER 와 PATH 사이 공백
sudo curlftpfs -o user=ID:PW -o codepage=cp949 -o allow_other ftp://[SERVER] [PATH]
3. 마운트 해제
fusermount -u [PATH]