Your goal in creating a multiboot system is to have all the operating systems coexist in such a manner that they will be capable of sharing files with each other. Nothing is more frustrating than realizing that you must reboot to retrieve a file, copy it to a floppy, and reboot again to copy into your other operating system. A little bit of knowledge about file systems can save you many headaches down the road. Not all operating systems use hard disks in the same manner. There are several different file system formats out there, which determine how file space is allocated, where directory information is stored, and so forth. The problem is that each operating system has its own list of supported file system types. Table 31.1 lists the various file systems supported by the operating systems discussed in this chapter. Note that in the table, RO stands for read-only, RW stands for read/write, and NS stands for not supported. Be sure to read the footnotes for any operating system you want to use.
Understanding the interplay between these various file systems is key in creating an efficient multiboot system. To the greatest extent possible, you should choose a format that's compatible with all the operating systems you'll want to use, on at least one disk partition. This will give a place to store files that can be read no matter which OS you're using. Where you have the choice of several different candidate file systems, you must decide which is best, based on your hardware and the application for which you are creating your multiboot system. The following sections quickly recap file system descriptions, with an eye toward multibooting issues. FAT16FAT16 is the oldest file system mentioned in this chapter. It was originally intended for file systems based on the DOS operating system. As such, it is quite antiquated and not often used today. FAT16 might be your only choice in some situations due to its two major advantages:
One big limitation of FAT16 is the fact that it cannot be installed in primary partitions greater than 2GB in size with MS-DOS and Windows 9x/Me; 4GB is the limit for FAT16 with Windows NT/2000/XP. To use the full capacity of a disk beyond those limits, an extended partition can be created, but it must be broken into non-bootable logical drives of no more than 2GB/4GB in size each. For example, a 10GB drive prepared as a FAT16 drive for use with both Windows Me and Windows XP would need to be divided into five drive letters, C: through G:. Also, the larger the partition, the less efficient FAT16 is in allocating space to small filesmore disk space is wasted. As explained later in the chapter, this limitation has been overcome by FAT16's new brother, FAT32. NOTE If you are using the first edition of Windows 95, you can use only the FAT16 file system. Versions of Windows 95 prior to Windows 95 OSR2 cannot use FAT32 partitions. A prompt upgrade to Windows 98 is recommended for this as well as for many other reasons. Also, keep in mind that Microsoft frequently uses the term FAT to refer to both FAT16 and FAT32 file systems. The Disk Management program, in particular, only formats hard drive partitions with FAT32, not FAT16. FAT32The FAT32 file system was introduced with Windows 95 OSR2. FAT32 was essentially the answer to most of the shortcomings of FAT16. The following are among FAT32's strengths:
Of course, with all changes come pain and compatibility issues. To this day, Windows NT 4.0 does not natively support FAT32. The addition of FAT32 file support into Windows 2000 and XP is a welcome one, especially for multibooting users. However, neither FAT versions support the advanced security and reliability features of NTFS, as explained in the following section. The versions of MS-DOS that ran underneath Windows 95 OSR2, 98, and Me can read and write FAT32 partitions, so you can use the command line mode of these operating systems if you need MS-DOS access to FAT32 partitions. The "standalone" versions of MS-DOS up to and including Version 6.22 cannot use FAT32 partitions. NTFSThe New Technology File System, or NTFS, brought with it many welcome additions to the world of Microsoft computing, including the following:
A disadvantage of NTFS, however, is that it can't be read directly by DOS, OS/2, UNIX, or Windows Me/9x. You can download a free utility to read NTFS disks from http://www.sysinternals.com, and you can purchase a program with limited writing ability. Still, this isn't as straightforward as having support built into the operating system. Likewise, Linux has only limited support for NTFSreading works but writing is dangerous. So, NTFS is not a generally useful format for a shared partition on multiboot systems. By the way, there are now two versions of NTFS: versions 4 and 5. Version 4 was used by Windows NT version 4.0. The updated version 5 is used by Windows 2000 and XP and supports additional capabilities such as encrypted files and dynamic disk partitions that can be rearranged while Windows is running. These capabilities aren't directly accessible with XP Home Edition, but Home Edition still uses the newer disk format. The version difference will only affect you if you share an NTFS-formatted disk volume between Windows NT 4.0 and Windows XP or 2000. The newer OSes will update your NTFS partitions to version 5, so you must update Windows NT 4.0 to Service Pack 4 or later so that it can read the new format. |