FloDskIm: Difference between revisions

From tehowiki
Jump to navigation Jump to search
imported>Gfis
stub
 
imported>Gfis
Hardware
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
'''FloDskIm''' is a tool dealing with image files which were extracted from floppy disk media. The application "understands" the foreign file system stored in the floppy disk image, and tries to read the file directories and the files themselves.
'''FloDskIm''' is a tool dealing with image files which were extracted from floppy disk media. The application "understands" the foreign file system stored in the floppy disk image, and tries to read the file directories and the files themselves.
* [https://github.com/gfis/flodskim GitHub repository]


=== Commandline usage===
=== Commandline usage===
Line 14: Line 16:
   -dir                print a directory listing
   -dir                print a directory listing
   -copy path          copy all files into path
   -copy path          copy all files into path
Implemented codes for file systems are:
  base
  cpm
  dec-rx50
  sinix-mx2
  ta-vs
  tar
===Hardware===
* [https://github.com/drdpj/kryotools kryotools] Java Tools for Manipulating Raw Kryoflux Streams
* [https://stardot.org.uk/forums/viewtopic.php?f=3&t=14459 Forum] for bbc-fdc from Jasper Renow-Clarke; https://www.192.com/atoz/people/renow-clarke/jasper/gl50/383703187/
** https://hackaday.com/2021/06/21/page/2/
* [ https://github.com/keirf/Greaseweazle Greaseweazle]
* https://www.smbaker.com/raspberry-pi-floppy-controller-board

Latest revision as of 16:21, 31 December 2022

FloDskIm is a tool dealing with image files which were extracted from floppy disk media. The application "understands" the foreign file system stored in the floppy disk image, and tries to read the file directories and the files themselves.

Commandline usage

java org.teherba.flodskim.Main options actions

Options are:

  -buffer code        container format is code (default: dsk)
  -inform num         amount of diagnostic output
  -read filename      read a disk image file
  -system code        filesystem is code (default: base)

Actions on buffers are:

  -block xnum         dump block xnum
  -dump xoffs xlen    hexadecimal dump

Actions on file systems are:

  -dir                print a directory listing
  -copy path          copy all files into path

Implemented codes for file systems are:

  base
  cpm
  dec-rx50
  sinix-mx2
  ta-vs
  tar

Hardware