rclone mount 옵션에 따라서, 캐시는 일정시간 지나면 지워지긴 하지만,
스토리지 용량이 부족하여, 지워야 하는 경우는
캐시 디렉토리를 직접 들어가서 확인 후 삭제하면 된다.
캐시 디렉토리의 기본값은 아래와 같이
시스템별로 다르다.
--cache-dir=DIR
Specify the directory rclone will use for caching, to override the default.
Default value is depending on operating system:
- Windows
%LocalAppData%\rclone
, ifLocalAppData
is defined. - macOS
$HOME/Library/Caches/rclone
ifHOME
is defined. - Unix
$XDG_CACHE_HOME/rclone
ifXDG_CACHE_HOME
is defined, else$HOME/.cache/rclone
ifHOME
is defined. - Fallback (on all OS) to
$TMPDIR/rclone
, whereTMPDIR
is the value from --temp-dir.
You can use the config paths command to see the current value.
Cache directory is heavily used by the VFS File Caching mount feature, but also by serve, GUI and other parts of rclone.
cache 디렉토리가 용량을 많이 차지하는 경우, 삭제하면 된다.
vfs 폴더별 용량 확인
리눅스, 우분투
du -h -d 1 $HOME/.cache/rclone/vfs
맥
du -h -d 1 $HOME/Library/Caches/rclone/vfs
vfs 폴더 삭제
리눅스, 우분투
rm -r $HOME/.cache/rclone/vfs
맥
rm -r $HOME/Library/Caches/rclone/vfs
إرسال تعليق