mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 01:42:09 +02:00
dd: update translations (#12929)
This commit is contained in:
parent
39a69a8b0f
commit
d387240363
3 changed files with 6 additions and 6 deletions
|
@ -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:
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
|
@ -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={{目标驱动器,接收随机数据文件名}}`
|
||||
|
||||
- 对磁盘的写入性能进行基准测试:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue