To activate the Russian language in the Terminal app, run the Terminal, go to the Windows Settings... → Emulation. Here it is necessary to remove a daw Escape non-ASCII characters. On the Display tab you want to remove a daw with Wide glyphs for Japanese / Chinese / etc. and Wide glyphs count as 2 columns. Put daw Character Set Encoding: in Unicode (UTF-8).
Then you run Terminal and execute this command:
echo "if [-f ~ / .bashrc]; then source ~ / .bashrc; fi "> ~ / .bash_profile
mkdir ~ / .MacOSX
cat> ~ / .MacOSX / environment.plist << "EOF"
{LC_CTYPE = "ru_RU.UTF-8"; }
EOF
Then this:
cat> ~ / .bashrc << "EOF"
unset LC_ALL
export LANG = C
export LC_CTYPE = "ru_RU.UTF-8"
export LC_NUMERIC = "ru_RU.UTF-8"
export LC_TIME = "ru_RU.UTF-8"
export LC_COLLATE = "ru_RU.UTF-8"
export LC_MONETARY = "ru_RU.UTF-8"
export LC_MESSAGES = C
export LC_PAPER = "ru_RU.UTF-8"
export LC_NAME = "ru_RU.UTF-8"
export LC_ADDRESS = "ru_RU.UTF-8"
export LC_TELEPHONE = "ru_RU.UTF-8"
export LC_MEASUREMENT = "ru_RU.UTF-8"
export LC_IDENTIFICATION = "ru_RU.UTF-8"
alias ls = 'ls -wFG'
EOF
Will remain in the system to re-login.