# 기본 마운트 명령 및 옵션

기본 마운트 명령은 "rclone mount"로 진행 됩니다.

```shell
sudo rclone mount [리모트명]: [마운트위치] --config [Config 파일 위치] [옵션]
```

제가 사용하는 권장 \[옵션\]은 아래와 같습니다. \[옵션\]에 대한 세부 설명은 Rclone 홈페이지 ([https://rclone.org/drive/](https://rclone.org/drive/))에서 확인 가능 합니다.

<p class="callout success">--allow-other   
--allow-non-empty   
--fast-list   
--drive-skip-gdocs   
--poll-interval=15s   
--vfs-cache-mode full   
--vfs-write-back 5s   
--bwlimit-file 16M   
--buffer-size=16M   
--vfs-read-chunk-size=32M   
--vfs-read-chunk-size-limit 2048M   
--vfs-cache-max-size 100G   
--vfs-cache-max-age 336h   
--vfs-read-ahead 32M   
--dir-cache-time=1000h   
--log-level INFO   
--log-file \[로그위치\]\[로그파일명\].log   
--cache-dir=\[캐쉬위치\]  
--timeout 1h   
--umask 000</p>

마운트 해제는 "umount" 명령을 실행 하면 됩니다.

```shell
umount -l /리모트경로/리모트명
```