Search This Blog

Ubuntu Linux: mount smb share with utf8 encoding

The default encoding for smb mounts is iso8859-1. To mount the smb share with utf8 encoding:
sudo mount -t cifs //SERVER/SHARE1 /mnt/SHARE1 -o username=USER,domain=DOMAIN,iocharset=utf8



If you got
error: mount error 79 = Can not access a needed shared library.
, you will need install linux-modules-extra-$(uname -r):
sudo apt-get install linux-modules-extra-$(uname -r)
or
sudo apt-get install linux-modules-extra-$(uname -r)-generic

No comments:

Post a Comment