Fat imgen: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
m consistency
No edit summary
 
(18 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:{{lcfirst:{{PAGENAMEE}}}}}}
{{DISPLAYTITLE:{{lcfirst:{{PAGENAMEE}}}}}}
'''fat_imgen''' is a utility you can use to create and modify [[FAT12]] floppy images with. It is licensed under the Simplified BSD license.
'''fat_imgen''' is an utility that is used to create and modify [[FAT12]] floppy images with. It is licensed under the Fair License.


== Binaries ==
== Binaries ==


Windows and Linux users can download the latest stable binaries from the [http://www.ohloh.net/p/fat_imgen/download?package=stable project's download page].
Windows and Linux users can download the latest stable binaries from [http://sourceforge.net/projects/fatimgen/files/ SourceForge].


== Source code ==
== Source code ==


The source code (not guaranteed to work) can be downloaded from the [http://code.assembla.com/slipstream/subversion/nodes/fat_imgen SVN repository].
The source code can be checked out from [http://subversion.assembla.com/svn/slipstream/fat_imgen/ http://subversion.assembla.com/svn/slipstream/fat_imgen/].
The source code shows many aspects of working with [[FAT12]] images.
It shows many aspects of working with [[FAT12]] images.


== Usage ==
== See Also ==
=== Articles ===
<pre>
* [[FAT]]
This program can create or modify a FAT12 floppy image.


=== External Links ===
Usage: fat_imgen -c -f IMG-FILE [-s FILE] [-i FILE] [-F]
* [http://www.sourceforge.net/projects/fatimgen SourceForge Project Page]
or: fat_imgen -m -f IMG-FILE -s FILE
* [http://www.assembla.com/code/slipstream/subversion/nodes/fat_imgen The project's source code]
or: fat_imgen -m -f IMG-FILE -i FILE
or: fat_imgen -m -f IMG-FILE -s FILE -i FILE
or: fat_imgen -e -f IMG-FILE -x FILE -o FILE [-F]
or: fat_imgen -b -o FILE [-F]

Main operation mode:
-c Create an image.
-m Modify an image.
-e Extract a file from an image.
-b Create a standard FAT12 boot sector.

File selection:
-f IMG-FILE Use IMG-FILE as the image file.
-s FILE Use FILE as boot sector in the image.
-i FILE Insert FILE into the image.
-x FILE Extract FILE from the image.
-o FILE Write output to FILE.

Generic modifiers:
-F Overwrite the output file.

Informative output:
--help Display this information.
--version Display version information.
</pre>

== External links ==
* [http://www.ohloh.net/projects/fat_imgen Ohloh Project Page]
* [http://code.assembla.com/slipstream/subversion/nodes/fat_imgen The project's source code]


[[Category:Disk Image Utilities]]
[[Category:Disk Image Utilities]]

Latest revision as of 23:00, 9 September 2018

fat_imgen is an utility that is used to create and modify FAT12 floppy images with. It is licensed under the Fair License.

Binaries

Windows and Linux users can download the latest stable binaries from SourceForge.

Source code

The source code can be checked out from http://subversion.assembla.com/svn/slipstream/fat_imgen/. It shows many aspects of working with FAT12 images.

See Also

Articles

External Links