--- layout: page title: IBM PC Disk Library permalink: /disks/pcx86/ redirect_from: - /disks/pc/ --- IBM PC Disk Library ------------------- The [IBM PC Disk Library](/disks/pcx86/library.xml) lists all of our [Disk Manifests](#disk-manifests) and makes those disks available to the project's [IBM PC Machines](/devices/pcx86/machine/). Whenever possible, PCjs archives copies of original distribution diskettes. Exceptions include the application "Demo Disks" that we've created for our [IBM PC Application Demos](/apps/pcx86/). PCjs may also makes minor changes to disk boot sectors, to make it easier to mount the disk images in modern operating systems. [macOS](http://www.apple.com/macos/) has built-in support for mounting *.IMG* disk images, and Windows can mount them with the help of third-party software like [OSFMount](http://www.osforensics.com/tools/mount-disk-images.html). See the description of the [PC-DOS 0.90](/disks/pcx86/dos/ibm/0.90/) disk for an example of boot sector modification. The summary below is not a complete list of everything in the library, just highlights. For some of the disks, we have provided more information about the software, and in some cases, machines that automatically run the software. Ideally, everything in the library would also be listed below, and linked to a page that describes the software in more detail, along with a live demonstration of the software, but that's not yet a reality. ### Operating Systems * [CP/M-86](cpm/) * [DOS](dos/) * [MINIX](minix/) * [OS/2](os2/) * [Unix](unix/) * [Windows](windows/) ### Applications * [IBM TopView](apps/ibm/topview/) * [Lotus 1-2-3](apps/lotus/123/) * [Microsoft Chart](apps/microsoft/chart/) * [Microsoft Word](apps/microsoft/word/) * [More...](apps/other/) ### Application Demos * [VisiCalc (1981)](/apps/pcx86/1981/visicalc/) * [Executive Suite (1982)](/apps/pcx86/1982/esuite/) * [Adventures in Math (1983)](/apps/pcx86/1983/adventmath/) * [Rogue (1985)](/apps/pcx86/1985/rogue/) * [More...](/apps/pcx86/) ### Games * [id Software](games/id/) * [Infocom Games](games/infocom/) * [Microsoft Games](games/microsoft/) ### Shareware * [PC-SIG Library 8th Edition CD-ROM (April 1990)](shareware/pcsig08/) * [PC Magazine (Vols. 6-14)](shareware/pcmag/) * [PC Tech Journal (1985-1989)](shareware/pctj/) * [More...](shareware/) ### Tools * [Borland Tools](tools/borland/) * [IBM Tools](tools/ibm/) * [Microsoft Tools](tools/microsoft/) * [More...](tools/other/) ### Tests * [PC Diagnostics](diags/) * [VGA "Black Book" Tests](/tests/pcx86/vga/) ### Fixed Disks * [Assorted Fixed Disk Images](/disks/pcx86/fixed/) (eg, [10Mb](/disks/pcx86/fixed/10mb/) and [20Mb](/disks/pcx86/fixed/20mb/)) --- Disk Manifests -------------- Typically, all the distribution disks for a single version of a piece of software are placed in a single folder, along with a **manifest.xml** file containing metadata about the software and a list of the individual disks. This is generally referred to as a [Software Manifest](/apps/), but in the context of the Disk Library, it's simply known as a Disk Manifest. A Disk Manifest can then be added to a *[Floppy Drive Controller (FDC)](/docs/pcx86/fdc/)* configuration file, making all its disks available to any machine loading that particular configuration file. A simple FDC configuration file, such as [samples.xml](samples.xml), *could* contain individual <disk> entries like: ```xml PC-DOS 1.00 PC-DOS 1.10 PC-DOS 2.00 (Disk 1) PC-DOS 2.00 (Disk 2) ... ``` However, listing individual diskettes like that is tedious, so support was added for Disk Manifest references: Instead of listing the PC-DOS 2.00 diskettes individually, they can now be added to an XML configuration file with a single Disk Manifest reference: ```xml ``` When you want to include only one particular disk from a manifest, set the *disk* value to the *id* of the disk. Here's how you would include only the *first* disk from PC-DOS 2.00: ```xml ``` Here's what the entire Disk Manifest for PC-DOS 2.00 currently looks like: ```xml PC-DOS 2.00 DOS Operating System IBM/Microsoft PC-DOS 2.00 (Disk 1) PC-DOS 2.00 (Disk 2) ```