dd: add Dutch translation and fix typo's (#12911)

This commit is contained in:
Sebastiaan Speck
2024-06-09 16:48:08 +02:00
committed by GitHub
parent 3bcc9bb168
commit 4dc73ee05c
13 changed files with 103 additions and 19 deletions

View File

@@ -9,11 +9,11 @@
- 4 MiB 블록이 있는 다른 드라이브에 드라이브를 복제하고, 오류를 무시하고 진행 상황을 표시:
`dd if={{/dev/소스_드라이브}} of={{/dev/목적지_드라이브}} bs={{4M}} conv={{noerror}} status=progress`
`dd if={{/dev/소스_드라이브}} of={{/dev/목적지_드라이브}} bs=4m conv=noerror status=progress`
- 커널 랜덤 드라이버를 사용하여 랜덤 100바이트의 파일 생성:
`dd if=/dev/urandom of={{경로/대상/랜덤_파일}} bs={{100}} count={{1}}`
`dd if=/dev/urandom of={{경로/대상/랜덤_파일}} bs=100 count={{1}}`
- 디스크의 쓰기 성능 벤치마크:
@@ -27,6 +27,6 @@
`dd if={{경로/대상/파일.img}} of={{/dev/드라이브_장치}} status=progress`
- 진행 중인 dd 작업의 진행 상황을 확인 (다른 셸에서 이 명령어 실행):
- 진행 중인 `dd` 작업의 진행 상황을 확인 (다른 셸에서 이 명령어 실행):
`kill -USR1 $(pgrep -x dd)`