1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/fstrim.md

18 lines
480 B
Markdown
Raw Normal View History

# fstrim
> 마운트된 파일 시스템에서 사용되지 않는 블록을 삭제합니다.
> SSD 및 microSD 카드와 같은 플래시 메모리 장치에서만 지원됩니다.
> 더 많은 정보: <https://manned.org/fstrim>.
- 지원되는 모든 마운트된 파티션의 사용되지 않는 블록 삭제:
`sudo fstrim --all`
- 지정된 파티션의 사용되지 않는 블록 삭제:
`sudo fstrim {{/}}`
- 삭제 후 통계 표시:
`sudo fstrim --verbose {{/}}`