Sfoglia il codice sorgente

README: use truncate instead of fallocate in Linux example

Linux exfat driver doesn't support fallocate.
Petteri Aimonen 2 anni fa
parent
commit
be08d950ba
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -31,7 +31,7 @@ Creating new image files
 Empty image files can be created using operating system tools:
 
 * Windows: `fsutil file createnew HD1.img 1073741824` (1 GB)
-* Linux: `fallocate -l 1G HD1.img`
+* Linux: `truncate -s 1G HD1.img`
 * Mac OS X: `mkfile -n 1g HD1.img`
 
 ZuluSCSI firmware can also create image files itself.