Skip to content

Instantly share code, notes, and snippets.

@richard-scott
Created March 11, 2017 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richard-scott/edbaafeebe515e9c0f03e4c33291edff to your computer and use it in GitHub Desktop.
Save richard-scott/edbaafeebe515e9c0f03e4c33291edff to your computer and use it in GitHub Desktop.
VPS Debian Configuration

Debian

Locale

Annoying message?

perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LANG = "en_US.utf8"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

Try this fix.

export LANGUAGE=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
locale-gen en_US.UTF-8
dpkg-reconfigure locales
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment