Explorar el Código

README: use truncate instead of fallocate in Linux example

Linux exfat driver doesn't support fallocate.
Petteri Aimonen hace 2 años
padre
commit
be08d950ba
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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.