Skip to content

Instantly share code, notes, and snippets.

@ysonggit
Forked from nicks9188/LC_CTYPE.md
Created August 4, 2022 13:53
Show Gist options
  • Save ysonggit/d162d834f2a79d46068a64be45472ff2 to your computer and use it in GitHub Desktop.
Save ysonggit/d162d834f2a79d46068a64be45472ff2 to your computer and use it in GitHub Desktop.
Centos warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory
  1. vi /etc/environment

add these lines...

LANG=en_US.utf-8
LC_ALL=en_US.utf-8

Alternatively,

  1. Create locale file manually: localedef -i en_US -f UTF-8 en_US.UTF-8

Explained here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment