Displaying 1 result from an estimated 1 matches for "taille_tmp".
2010 Mar 26
2
memdisk and ghost floppy image
...;file.sys"
i made (with the help of irc helper) a script to modify this file :
you have to put the file.sys without extension as parameter
#!/bin/bash
fichier=$1
dd if=$fichier.sys of=$fichier.vfd skip=8
taille_depart=`du -b $fichier.vfd |awk '{print $1}'`
taille_finale=2949120
taille_tmp=`echo $taille_finale-$taille_depart|bc`
dd if=/dev/zero of=$fichier.tmp bs=$taille_tmp count=1
cat $fichier.vfd $fichier.tmp > $fichier.img
rm -f $fichier.sys
rm -f $fichier.vfd
rm -f $fichier.tmp
ls -al
after that you've got a file.img wich works
it's a solution but the best wou...