diff --git a/chapter08/fstab.xml b/chapter08/fstab.xml
index 91ad2dfe0..ebfae3aaf 100644
--- a/chapter08/fstab.xml
+++ b/chapter08/fstab.xml
@@ -56,26 +56,37 @@ EOF
class="filesystem">ext4. For details on the six
fields in this file, see man 5 fstab.
- Filesystems with MS-DOS or Windows origin (i.e.: vfat, ntfs, smbfs, cifs,
- iso9660, udf) need the iocharset mount option in order for
- non-ASCII characters in file names to be interpreted properly. The value
- of this option should be the same as the character set of your locale,
- adjusted in such a way that the kernel understands it. This works if the
- relevant character set definition (found under File systems ->
- Native Language Support) has been compiled into the kernel
- or built as a module. The codepage option is also needed for
- vfat and smbfs filesystems. It should be set to the codepage number used
- under MS-DOS in your country. E.g., in order to mount USB flash drives, a
- ru_RU.KOI8-R user would need the following in the options portion of its
- mount line in /etc/fstab:
+ Filesystems with MS-DOS or Windows origin (i.e. vfat, ntfs, smbfs,
+ cifs, iso9660, udf) need a special option, utf8, in order for non-ASCII
+ characters in file names to be interpreted properly. For non-UTF-8 locales,
+ the value of should be set to be the same as the
+ character set of the locale, adjusted in such a way that the kernel
+ understands it. This works if the relevant character set definition (found
+ under File systems -> Native Language Support when configuring the kernel)
+ has been compiled into the kernel or built as a module. However, if the
+ character set of the locale is UTF-8, the corresponding option
+ would make the file system case sensitive. To
+ fix this, use the special option instead of
+ , for UTF-8 locales. The
+ codepage option is also needed for vfat and smbfs filesystems.
+ It should be set to the codepage number used under MS-DOS in your country.
+ For example, in order to mount USB flash drives, a ru_RU.KOI8-R user would
+ need the following in the options portion of its mount line in
+ /etc/fstab:
-noauto,user,quiet,showexec,iocharset=koi8r,codepage=866
+noauto,user,quiet,showexec,codepage=866,iocharset=koi8rThe corresponding options fragment for ru_RU.UTF-8 users is:
-noauto,user,quiet,showexec,iocharset=utf8,codepage=866
+noauto,user,quiet,showexec,codepage=866,utf8
-
+ Note that using is the default for
+ iso8859-1 (which keeps the file system case
+ insensitive), and the option tells
+ the kernel to convert the file names using UTF-8 so they can be
+ interpreted in the UTF-8 locale.
+
+
It is also possible to specify default codepage and iocharset values for
some filesystems during kernel configuration. The relevant parameters