We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
du
1 parent b49f25b commit ccb68fdCopy full SHA for ccb68fd
README.md
@@ -48,7 +48,7 @@ To save space, you can now delete the compilation artifacts:
48
If you prefer, you can also build the modules VHDX manually as follows:
49
50
1. Calculate the modules size (plus 256MiB for slack):
51
- `modules_size=$(du -s "$PWD/modules" | awk '{print $1;}'); modules_size=$((modules_size + (256 * (1<<20))));`
+ `modules_size=$(du -bs "$PWD/modules" | awk '{print $1;}'); modules_size=$((modules_size + (256 * (1<<20))));`
52
53
2. Create a blank image file for the modules:
54
`dd if=/dev/zero of="$PWD/modules.img" bs=1024 count=$((modules_size / 1024))`
0 commit comments