mirror of
https://github.com/NixOS/nix
synced 2025-07-13 17:10:47 +02:00
11 lines
165 B
Bash
Executable file
11 lines
165 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. ./settings
|
|
|
|
rm $image
|
|
|
|
dd if=/dev/zero of=$image bs=1M count=1 seek=256
|
|
|
|
/sbin/mke2fs -F -j $image
|
|
/sbin/tune2fs -c 0 $image
|
|
/sbin/tune2fs -i 0 $image
|