udevとusbmount

Linuxのテスト用パーティションに入れてたDebianだったが、あっさりと動いてしかもaptで楽々メンテできたので今ではすっかりメインのLinuxとして使うこととなった。
ということで本腰を入れて環境を整えようとudevとusbmountを入れてみた。udevはいいとしてusbmountは日本語ドキュメントが少ないなぁ。気合入れて英語読んでみないと。で、まずはconfファイルから
# Filesystem types: USB mass storage devices are only mounted if they
# contain a filesystem type which is in this list.
#####################################################################
# WARNING! The vfat filesystem does not yet fully implement sync-mounting. #
# If you include "vfat" in the list of filesystem types, you *MUST* make #
# sure all data is written to the medium before you remove it (e.g. run the #
# "sync" command in a terminal window). Otherwise, you *WILL* lose data! #
#####################################################################
なるほど。便利そうだけどfatの対応がちょっとなぁ。syncってすればいいのかしらん
# Filesystem type specific mount options: This variable contains a space sepa-
# rated list of strings, each of which has the form "-fstype=TYPE,OPTIONS".
# If a filesystem with a type listed here is mounted, the corresponding
# options are appended to those specificed in the MOUNTOPTIONS variable.
# For example, "-fstype=vfat,gid=floppy,dmask=0007,fmask=0117" would add the
# options "gid=floppy,dmask=0007,fmask=0117" when a vfat filesystem is mounted.
ここでマウントオプションをつけられるようだ。このへんで文字コードを設定すればいいのかな
ツッコミ大歓迎