dd: add Dutch translation and fix typo's (#12911)
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
|
||||
- Clone a drive to another drive with 4 MiB block size and flush writes before the command terminates:
|
||||
|
||||
`dd bs={{4194304}} conv={{fsync}} if=/dev/{{source_drive}} of=/dev/{{dest_drive}}`
|
||||
`dd bs=4194304 conv=fsync if=/dev/{{source_drive}} of=/dev/{{dest_drive}}`
|
||||
|
||||
- Generate a file with a specific number of random bytes by using kernel random driver:
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
- Clone a drive to another drive with 4 MiB block size and flush writes before the command terminates:
|
||||
|
||||
`dd bs={{4M}} conv={{fsync}} if={{/dev/source_drive}} of={{/dev/dest_drive}}`
|
||||
`dd bs=4M conv=fsync if={{/dev/source_drive}} of={{/dev/dest_drive}}`
|
||||
|
||||
- Generate a file with a specific number of random bytes by using kernel random driver:
|
||||
|
||||
@@ -23,6 +23,6 @@
|
||||
|
||||
`dd if={{/dev/drive_device}} of={{path/to/file.img}}`
|
||||
|
||||
- Check the progress of an ongoing dd operation (run this command from another shell):
|
||||
- Check the progress of an ongoing `dd` operation (run this command from another shell):
|
||||
|
||||
`kill -USR1 $(pgrep -x dd)`
|
||||
|
@@ -9,11 +9,11 @@
|
||||
|
||||
- Clone a drive to another drive with 4 MB block, ignore error and show the progress:
|
||||
|
||||
`dd if={{/dev/source_device}} of={{/dev/dest_device}} bs={{4m}} conv={{noerror}} status=progress`
|
||||
`dd if={{/dev/source_device}} of={{/dev/dest_device}} bs=4m conv=noerror status=progress`
|
||||
|
||||
- Generate a file of 100 random bytes by using kernel random driver:
|
||||
|
||||
`dd if=/dev/urandom of={{path/to/random_file}} bs={{100}} count={{1}}`
|
||||
`dd if=/dev/urandom of={{path/to/random_file}} bs=100 count={{1}}`
|
||||
|
||||
- Benchmark the write performance of a disk:
|
||||
|
||||
@@ -27,6 +27,6 @@
|
||||
|
||||
`dd if={{path/to/file.img}} of={{/dev/drive_device}} status=progress`
|
||||
|
||||
- Check the progress of an ongoing dd operation (run this command from another shell):
|
||||
- Check the progress of an ongoing `dd` operation (run this command from another shell):
|
||||
|
||||
`kill -USR1 $(pgrep ^dd)`
|
||||
|
Reference in New Issue
Block a user