home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / doc / syslinux / README.Debian < prev    next >
Encoding:
Text File  |  2010-07-22  |  750 b   |  34 lines

  1. syslinux for Debian
  2. -------------------
  3.  
  4. As of syslinux 4.01+dfsg-1, the syslinux package doesn't contain premade floppy
  5. images anymore. Floppy drives are to be considered extinct in 2010.
  6.  
  7. However, if still want floppy images, you can produce them on your own:
  8.  
  9. 1. install mtools:
  10.  
  11.   # apt-get install mtools
  12.  
  13. 2. build the images:
  14.  
  15.   # for SIZE in 720 1200 1440 1743; \
  16.     do \
  17.     dd if=/dev/zero of=img${SIZE}k bs=1k count=${SIZE};
  18.     done
  19.  
  20.   # for DRIVE in a: b: c: d:;\
  21.     do \
  22.     MTOOLSRC=/usr/share/syslinux/examples/mtoolsrc \
  23.     mformat ${DRIVE}; \
  24.     done
  25.  
  26.   # for SIZE in 720 1200 1440 1743; \
  27.     do \
  28.     syslinux -s debian/build/img${SIZE}k; \
  29.     done
  30.  
  31. 3. be happy :)
  32.  
  33.  -- Daniel Baumann <daniel@debian.org>  Mon, 12 Jul 2010 19:22:36 +0200
  34.