![]() |
Under normal circumstances with both Unslung and OpenSlug it is possible to mount a FAT file system(approve sites) (the original file system used by Microsoft products) with the simple command:
for example, if the file system is in the first partition on the second hard drive and you want to mount it on
This will mount the partition with long filename support using the kernel vfat module. The kernel knows about FAT file systems and knows which module to look for. This will not work if the relevant kernel modules are not installed, or have been removed. See the troubleshooting section below. There is, however, one big problem with the simple The
Avoiding character problemsTo avoid the problem with characters the mount command needs to be passed the three extra arguments shown above - two parameters and a flag. You need to find out the values for the two parameters. If the FAT file system is only to be used on UNIX and you don't care about the case insensitivity arbitrary values are fine. If you need to swap the disk back to a proprietary Microsoft system or case insensitive behaviour is important you need to choose the values carefully. The language selection parametersThere are two parameters for historical reasons. The parameters perform the same function - defining how to interpret the bytes used to store a file name - but in slightly different contexts.
The original FAT file system implementations (up to FAT16?) stored the file names in 11 bytes. A byte value less than 128 is assumed to indicate an ASCII character - only a very restricted number of the possible values are permitted (for example lower case a-z are not permitted.) Values 128 and greater are interpreted using the codepage value. Later versions of the file system, starting with VFAT in Windows 95, added support for UNICODE(approve sites) characters. UNICODE represents each character in 16 bits, the UNICODE consortium defined a single set of characters sufficient to represent all the distinct characters (but not glyphs) in use throughout the world. Linux file systems do not support 16 bit characters. The iocharset option handles this by defining a byte representation for the characters. This is equivalent to what the pre-UNICODE Microsoft FAT file systems did in the short file names (using codepage). Internally the Linux file system code makes no assumption about the encoding of the characters beyond treating the two byte values 0 and 47 (the ASCII '/' character) specially. Externally - in devices and in many applications - Linux is moving toward the UTF-8 encoding of UCS, which allows the representation of both UNICODE (16 bit) and ISO/IEC 10646 (UCS - 32 bit characters). A short overview of ISO/IEC 10646 and Unicode(approve sites) is a reasonable high level overview, though not an introduction. As a result of the support for UTF-8 selecting the right iocharset value is much less important - the only thing it affects is the pairs of values considered to be different cases of the same character. Selecting a codepageBecause short file names are stored as bytes it is necessary to select a code page to (in effect) define what short file names are valid. On FAT file systems not intended for use on existing Microsoft computers the default - 437 - is adequate. It has the advantage that there are relatively fewer useful characters in the range 128-255, therefore more file names will be stored as unambiguous long file names. It has the disadvantage that very few Linux systems use this as the code page - 850 (a western european code page) is more common. Given a Microsoft system, simply find the code page used for the disk partition! To do this type the command chcp at a DOS command prompt. If all you care about is the correct handling of upper and lower case characters for your language just leave the code page as the default. Selecting iocharsetMany Linux users select utf8 as the iocharset value. This works well for file names from languages which do not have distinguished upper and lower case characters, but has the disadvantage that the kernel vfat module will not regard any characters as differing only in case. This causes weird behaviour with the ASCII Latin characters A-Z when used in short file names - the vfat module may attempt to create or access a file with a short name differing only in case from an existing file and this will fail when the lower levels of the filesystem convert lowercase a-z to upper case. Despite this the default on OpenSlug is to make the default iocharset be utf8 as this is the only default setting which guarantees not to change a large number of UNICODE characters into ? characters! To avoid this, and to gain better interworking with Microsoft products, select the iocharset corresponding to your normal language. When the utf8 flag is specified along with iocharset the iocharset value only controls the character case handling - it has no effect on the encoding of the UNICODE characters as this will always use UTF-8. The utf8 flag cannot be specified by default - it must be given as an explicit argument to You can find the available character sets from
The tail of the module name gives the character set (or codepage). The mount commandCombine the codepage, iocharset and utf8 to give the options for mount. If you use utf8 as the value for iocharset the utf8 flag is not necessary, but it is harmless. For example, on a Greek system:
This will probably fail the first time you try it because the character sets are not installed on the system:
Use
Then use
That of the iocharset is:
Accessing the short file namesThe Linux vfat module hides the short file names. There is no way round this - it is only possible to see either the short names or the long names! To see the short names (in cases where there is a long name too) the partition can be mounted using the
Select the code page as before. The file system will show only the short names, and only valid short names may be used for new files. The behaviour when using an invalid name may be unexpected - the name simply gets truncated. TroubleshootingAs a first step it is worth adding the -t option to the
as appropriate (with the other arguments as before.) In rare cases this may cause the kernel autoload to succeed. If the autoload itself is failing there is a bigger problem with your system setup, but you can work round it by using The most likely problem is that a kernel module is missing from your installation, however the symptom is typically just the error Invalid argument from
If the message is No such device and the partition device is correct:
The file system module itself is almost certainly missing (this condition may also produce the Invalid argument message). Use |