Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Ubuntu 16.04: utf8 missing? #804
Comments
|
This is an ubuntu issue as bento just builds a virtual image out of the default minimal installation. See: http://packages.ubuntu.com/search?searchon=contents&keywords=nls_utf8.ko&mode=exactfilename&suite=xenial&arch=amd64 just install the kernel package you like and reboot the VM. |
daniela-waranie
commented
May 12, 2017
|
Thank you very,very much. I did not expect that the latest release is somehow incomplete. I installed linux-image-extra-4.4.0-21-generic and rebooted. But it seams that the kernel do not pick hat module. Still the same error as above. uname -r says: 4.8.0-51-generic I'm not sure, but i think i need to boot into linux-image-4.4.0-21-generic - but how to tell grub to load that old kernel at next boot without GUI? (i am using virtualbox in headless mode on a server) |
daniela-waranie
commented
May 15, 2017
|
I will ask that question at a ubuntu forum and close this ticket now |
daniela-waranie commentedMay 12, 2017
I run this box: bento/ubuntu-16.04
And tried to use autofs to mount some samba shares and noticed that i can mount it when i ommit the "iocharset=utf8" parameter. But when i use the iocharset paramter i get this error:
What i did before:
First issue at a vanilla box was that /sbin/mount.cifs was missing. That is the reason why i installed cifs-utils. Then the above error appeared. Then followed these tips here:
https://askubuntu.com/questions/519796/unable-to-mount-cifs-with-iocharset-utf8-in-trusty
I can confirm that ls /lib/modules/$(uname -r)/kernel/fs/nls/nls_utf8.ko is missing:
ls: cannot access '/lib/modules/4.8.0-51-generic/kernel/fs/nls/nls_utf8.ko': No such file or directoryMeans the complete directory "nls" (natual language support) is missing.dmesg shows this error:
[ 12.549080] random: crng init done
[ 247.824290] FS-Cache: Loaded
[ 247.838457] FS-Cache: Netfs 'cifs' registered for caching
[ 247.839087] Key type cifs.spnego registered
[ 247.839089] Key type cifs.idmap registered
[ 247.840226] CIFS VFS: CIFS mount error: iocharset utf8 not found
apt-get install -y linux-image-extra-virtual (version 4.4.0.77.83) should install that, but it seams to be still missing.
I am absolute confused that nower days UTF8 is still not included in a minimal install. Kernel modules, and such stuff is really hard to me...
How to fix that? Or is there an ubuntu 16.04 full install available for download with vagrant?