add file to second partition during creating disks

This commit is contained in:
Garret Raziel 2015-02-13 11:58:44 +01:00
parent 96f3256a51
commit 45e90cd076
1 changed files with 4 additions and 0 deletions

View File

@ -9,6 +9,10 @@ mkfs ext4 /dev/sda1
mkfs ext4 /dev/sda2
mount /dev/sda1 /
write /testfile "Hello, world!"
umount /
mount /dev/sda2 /
write /testfile "Oh, hi Mark"
umount /
_EOF_
guestfish <<_EOF_