Fix option for fallocate command in volumes.md (#17934)

fallocate does not have -f option.
the correct option for to add the length of file is -l.
This commit is contained in:
MohammadHossein 2023-08-20 19:32:53 +03:30 коммит произвёл GitHub
Родитель fae09e6e6c
Коммит 7fa15e3ac4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -576,7 +576,7 @@ The filesystem support of your system depends on the version of the Linux kernel
1. Create a file and allocate some space to it:
```console
$ fallocate -f 1G disk.raw
$ fallocate -l 1G disk.raw
```
2. Build a filesystem onto the `disk.raw` file: