linux/umount,unmount,mkfs*,btrfs*: add Korean translation (#14196)

This commit is contained in:
코드싸이
2024-10-14 18:40:26 +09:00
committed by GitHub
parent 23d48c5639
commit dc84b89bcb
26 changed files with 520 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# btrfs scrub
> btrfs 파일 시스템을 검사하여 데이터 무결성을 확인.
> 한 달에 한 번 스크럽 실행을 권장.
> 더 많은 정보: <https://btrfs.readthedocs.io/en/latest/btrfs-scrub.html>.
- 스크럽 시작:
`sudo btrfs scrub start {{경로/대상/btrfs_마운트}}`
- 진행 중이거나 마지막으로 완료된 스크럽 상태 보기:
`sudo btrfs scrub status {{경로/대상/btrfs_마운트}}`
- 진행 중인 스크럽 취소:
`sudo btrfs scrub cancel {{경로/대상/btrfs_마운트}}`
- 이전에 취소된 스크럽 재개:
`sudo btrfs scrub resume {{경로/대상/btrfs_마운트}}`
- 스크럽을 시작하고 완료될 때까지 기다린 후 종료:
`sudo btrfs scrub start -B {{경로/대상/btrfs_마운트}}`
- 조용한 모드로 스크럽 시작 (오류나 통계를 출력하지 않음):
`sudo btrfs scrub start -q {{경로/대상/btrfs_마운트}}`