Advertisement
oscarholmedo

Ubuntu 13.04 server Set Locale Settings

May 28th, 2013
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.64 KB | None | 0 0
  1. sudo locale-gen en_US.UTF-8
  2.  
  3. #or
  4.  
  5. #error on ubuntu server->  perl: warning: Setting locale failed. perl: warning: Please check that your locale settings:
  6.  
  7. #use this
  8. export  LANGUAGE=en_US.UTF-8
  9. export  LC_ALL=en_US.UTF-8
  10. export  LC_PAPER=en_US.UTF-8
  11. export  LC_ADDRESS=en_US.UTF-8
  12. export  LC_MONETARY=en_US.UTF-8
  13. export  LC_NUMERIC=en_US.UTF-8
  14. export  LC_TELEPHONE=en_US.UTF-8
  15. export  LC_IDENTIFICATION=en_US.UTF-8
  16. export  LC_MEASUREMENT=en_US.UTF-8
  17. export  LC_TIME=en_US.UTF-8
  18. export  LC_NAME=en_US.UTF-8
  19. export  LANG=en_US.UTF-8
  20. export  LC_CTYPE=en_US.UTF-8
  21. export  LC_TIME=en_US.UTF-8
  22. export  LC_NAME=en_US.UTF-8
  23. sudo dpkg-reconfigure locales
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement