search for: taille_depart

Displaying 1 result from an estimated 1 matches for "taille_depart".

2010 Mar 26
2
memdisk and ghost floppy image
...y the the file generated by ghost boot wizard. the ghost boot wizard generate a "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 aft...