Documents and Settings
Puppy LinuxのUSB Liveを使用して、Windows XPシステムのフォルダをNTFS外部ディスクにコピーしようとしています。
名前ファイルにエンコードの問題があります。システムがイタリア語の特殊文字(utf-8の一部)を認識しないため、cp
またはGUIファイルマネージャを使用するとエラーが発生しますinvalid or incomplete multibyte or wide character
。
名前に特殊文字を含むファイルをNTFSドライブにコピーする方法は?
ベストアンサー1
ファイル名がNTFSファイルシステムで有効であることは確実ですか?
ファイル名は同じにする必要がありますか?
そうでない場合は、「奇妙な」文字を削除して生活をより簡単にすることができます。
これを行うツールがあります。detox
。
ファイル名を最初に変更しなくても名前の変更内容を確認できます。
$ detox -n somedir/*
その後、実際に次のようにします。
$ detox somedir/*
別のアプローチは、独自にファイル名をクリーンアップ(「削除」)する方法でNTFSファイルシステムをマウントすることです。
この機能を有効にするインストールオプションがありますwindows_names
。
~からman ntfs-3g
:
windows_names
This option prevents files, directories and extended attributes
to be created with a name not allowed by windows, either because
it contains some not allowed character (which are the nine
characters " * / : < > ? \ | and those whose code is less than
0x20) or because the last character is a space or a dot.
Existing such files can still be read (and renamed).