*: fix errors reported by languagetool (#6069)

This commit is contained in:
Seth Falco
2021-08-15 19:59:09 +02:00
committed by GitHub
parent 3fbefc8b77
commit 3e4c519004
281 changed files with 433 additions and 429 deletions

View File

@@ -3,11 +3,11 @@
> Convert and copy a file.
> More information: <https://www.gnu.org/software/coreutils/dd>.
- Make a bootable usb drive from an isohybrid file (such like `archlinux-xxx.iso`) and show the progress:
- Make a bootable USB drive from an isohybrid file (such like `archlinux-xxx.iso`) and show the progress:
`dd if={{file.iso}} of=/dev/{{usb_drive}} status=progress`
- Clone a drive to another drive with 4MB block, ignore error and show progress:
- Clone a drive to another drive with 4 MiB block, ignore error and show progress:
`dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs=4M conv=noerror status=progress`