You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
250 B
9 lines
250 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
echo "LANG=ru_RU.UTF-8" >> /etc/sysconfig/i18n
|
||
|
echo "SYSFONT=UniCyr_8x16" >> /etc/sysconfig/consolefont
|
||
|
echo "KEYTABLE=ruwin_cplk-UTF-8" >> /etc/sysconfig/keyboard
|
||
|
|
||
|
[ ! -f /etc/locale.conf ] ||
|
||
|
echo "LANG=ru_RU.UTF-8" >> /etc/locale.conf
|