Skip to content

Instantly share code, notes, and snippets.

@garyanikin
Last active May 3, 2020 22:33
Show Gist options
  • Save garyanikin/7e3adbd83ea34c6d1781dd81d3b1825d to your computer and use it in GitHub Desktop.
Save garyanikin/7e3adbd83ea34c6d1781dd81d3b1825d to your computer and use it in GitHub Desktop.
Установка русской локализации в Ubuntu 16.04
# Смотрим доступные пакеты локализации
locale -a
# Ставим пакет с русским языком
sudo apt-get install language-pack-ru
# Выполняем русскую локализацию
sudo update-locale LANG=ru_RU.UTF8
# Генерируем локаль
sudo locale-gen "ru_RU.UTF-8"
# Пересобираем локали, в программе выбрать ru_RU.UTF-8, нажми tab чтобы переключиться на кнопку "ОК"
sudo dpkg-reconfigure locales
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment