dd: update translations (#12929)

This commit is contained in:
Sebastiaan Speck 2024-06-13 18:13:31 +02:00 committed by GitHub
parent 39a69a8b0f
commit d387240363
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View File

@ -11,9 +11,9 @@
`dd if={{/dev/quell_laufwerk}} of={{/dev/ziel_laufwerk}} bs=4M conv=noerror status=progress`
- Erstelle eine Datei mit 100 zufälligen Bytes mithilfe des Zufall-Treibers des Kernels:
- Erstelle eine Datei mit spezifizierte zufälligen Bytes mithilfe des Zufall-Treibers des Kernels:
`dd bs=100 count={{1}} if=/dev/urandom of={{pfad/zu/datei}}`
`dd bs={{100}} count={{1}} if=/dev/urandom of={{pfad/zu/datei}}`
- Teste die Schreibgeschwindigkeit eines Laufwerks:

View File

@ -11,9 +11,9 @@
`dd bs=4M conv=noerror status=progress if={{/dev/disco_sorgente}} of={{/dev/disco_destinazione}}`
- Genera un file di 100 byte randomici utilizzando il driver random del kernel:
- Genera un file con un numero specifico di byte randomici utilizzando il driver random del kernel:
`dd bs=100 count={{1}} if=/dev/urandom of={{percorso/del/file_random}}`
`dd bs={{100}} count={{1}} if=/dev/urandom of={{percorso/del/file_random}}`
- Testa la performance in scrittura di un disco:

View File

@ -11,9 +11,9 @@
`dd bs=4m conv=noerror if={{/dev/源设备}} of={{/dev/目标设备}}`
- 使用内核随机驱动程序生成 100 个随机字节的文件:
- 使用内核随机驱动程序生成指定数量个随机字节的文件:
`dd bs=100 count={{1}} if=/dev/urandom of={{目标驱动器,接收随机数据文件名}}`
`dd bs={{100}} count={{1}} if=/dev/urandom of={{目标驱动器,接收随机数据文件名}}`
- 对磁盘的写入性能进行基准测试: