I have a large MP3 collection with many diacritics in the file names.
When using rsync to copy the entire archive to a mounted hard-disk these file names get distorted; the diacritic characters are replaced by two characters each, of which the first one is something like à or Â.
I attempted using rsync's --iconv parameter, but all my attempts failed. In fact all these attempts have a comparable wrong result:
Code: Select all
rsync -av --iconv=.
rsync -av --no-iconv
rsync -av --iconv=-
rsync -av --iconv=ISO-8859-1,UTF8
rsync -av --iconv=UTF8,UTF8
rsync -av --iconv=ISO-8859-1,ISO-8859-1
Code: Select all
user@bubba:~$ locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=
Thanks in advance.
Kind regards, RobV