Last active
May 3, 2020 22:33
-
-
Save garyanikin/7e3adbd83ea34c6d1781dd81d3b1825d to your computer and use it in GitHub Desktop.
Установка русской локализации в Ubuntu 16.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Смотрим доступные пакеты локализации | |
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