Linux Voodoo Corporation
About Us 866.309.4617 Tracking Shopping Cart Checkout
  You are here: » Main » Howto's Log In  | Financing  
Swartz Creek, Michigan: Linux Voodoo offers Linux consulting (and support) services (both free and commercial), Linux compatible hardware and software reviews and sales, Linux servers and desktop, the Voodoo Linux distribution and hardening systems, Linux driver development, Linux news,chat, message boards, Linux embedded jobs, security advisories, Linux howto's and newbie information. linux download red hat directpc direct pc linux linux software linux driver linux tutorial linux mandrake mandrake linux linux command netapp linux mount windows source decss linux game linux hp suse linux linux downloads linux firewall linux server linux programming linux red hat wine linux linux ppt linux operating system embedded linux linux distribution corel linux free linux free linux download linux help force 10baset linux linux laptop reset linux scsi d kill tape /proc linux router linux pda linux wallpaper red hat linux download linux kernel linux router project linux iso linux howto linux how to linux os linux application linux certification linux web hosting linux hosting linux modem peanut linux nokia rs 232 linux modem setting linux for window linux free download linux documentation project linux sms1 linux call back linux problem reading directory linux boot disk linux theme linux cluster linux closing port linux security dialogic linux linux emulator linux training linux startup dual boot window 2000 linux linux magazine linux auto rpm realtek rtl8019 linux driver download robomon linux linux estrutura de diretorios 3c589d config linux timeservice linux linux samba linux dvd player linux .ppt mplayer near download and linux red hat linux 7.2 linux mail server free linux software linux hardwarelinux anti virus redmond linux linux modem driver linux vpn pic microcontroller linux programmer aol for linux linux review linux wireless
contact us: abuse@flonetwork.com webmaster@flonetwork.com info@webmaster@flonetwork.com spampoision@lnxvoodoo.com noc@sprint.net webmaster@lnxvoodoo.com wlad@lnxvoodoo.com michelle@lnxvoodoo.com ryan@lnxvoodoo.com bryan@lnxvoodo.com rambo@lnxvoodoo.com senioreditor@lnxvoodoo.com editor@lnxvoodoo.com
WOW on Linux, yes our gaming systems do include World of Warcraft for Linux! Linux Voodoo Gaming systems include one copy of World of Warcraft, 1 year paid subscription to Transgaming.com so you can play over 200 popular Windows games on our linux systems. Too good to be true? Try it out for yourself.
  Start shopping
Notebooks
notebooks 

 

Desktops
desktops 

 

Servers
servers 

 

Appliances
appliances 

 

Accessories
accessories 

 

Software
software 
Howto's  
System-wide setup

2. System-wide setup

2.1. Choosing Charset

As for now, the choice is mainly between windows-1251 and iso-8859-5. Windows-1251 provides compatibility with M$ Windows and it is is by far the most popular charset for nearly all slavic languages. On the other side, iso-8859-5 is better supported and easier to set up.

The present HOWTO will explain the use of both charsets in parallel. Unless otherwise stated in the text, Belarusian support package from the bellinux page contains all the files mentioned in the present HOWTO.

2.2. windows-1251 in the kernel

Windows-1251 support in the kernel is needed to visualize MS Windows filenames in cyrillic while the console and X Window system are localized in windows-1251. As latest FAT file systems store filenames in Unicode, we have to define the output charset of the Virtual File System layer and install the support for windows-1251 in the kernel.

There is a patch for 2.2.14 kernels that is included in the Belarusian support package. To apply the patch,

  •  cd /path_to_your_kernel_source_tree
    						
  •  patch -p0 < patch_for_the_kernel.patch
    						
  • Recompile and reinstall the kernel modules. Refer to Kernel-HOWTO for the details.

  • Add
     codepage=866,iocharset=microsoft-cp1251
    							
    to your mount options in order to get the filenames in windows-1251.

    To test the setup, execute
     mount /dev/hda -t vfat -o codepage=866,iocharset=iso8859-5 /mnt/hda
    							
    as root. Of course, you should replace /dev/hda by the name of your vfat partitions containing names in cyrillic.

2.3. ISO-8859-5 in the kernel

There is built-in support for iso-8859-5 in Linux kernel. To enable iso-8859-5, make sure you compile this module in the nls section of the kernel setup. Normally, iso-8859-5 is compiled by default and can be loaded either automatically or by issuing
 insmod nls_iso8859-5
				
as root.

Add
 codepage=866,iocharset=iso8859-5
							
to your mount options in order to get the filenames in iso-8859-5.

2.4. Setting locale

  • Belarusian locale is available in glibc 2.2 and later. If you do not have the belarusian locale installed in your system, you can compile it yourself. The source is available at the bellinux page. Issue
     localedef -f CP1251 -i be_BY be_BY.CP1251
    							
    or
     localedef -f ISO-8899-5 -i be_BY be_BY.ISO-8899-5
    							
    to compile the locale in windows-1251 encoding or iso8859-5 encoding.

  • Check how it works by setting the locale
     set  LANG=be_BY.CP1251; export LANG
    							
    or
     set  LANG=be_BY.ISO-8859-5; export LANG
    							
    and running a locale-aware program like date or cal.

2.5. Belarusian in console

2.5.1. Setting Belarusian with windows-1251

Some cyrillic console fonts are in fact russian fonts and lack many cyrillic characters. Fortunately, UniCyr fonts by Vadinm Zhitnikov have all the glyphs from cp866, cp1251, iso8859-5 and all printable symbols from koi8-r. Besides the belarusian keyboard maps which you can find at the the bellinux page , other files are fairly standard and are available in most linux distributions. To set up window-1251 in console,

  • Load a UniCyr font
     consolechars -f UniCyr_8x16
    								

  • Load by2_win.kmap keymap.
     loadkeys by2_win
    								

  • Load Application-Charset Map cp1251.acm
     consolechars -m cp1251									
    								

2.5.2. Setting Belarusian with iso-8859-5

There are two ways to set up Belarusian with iso-8859-5

  • Load iso-8859-5 font
     consolechars -f iso05.f16
    								

  • Load belarusian keymap by2.kmap or by.kmap
     loadkeys  by.kmap
     loadkeys by2.kmap
    								

This method has one serious drawback - you will loose all pseudographic characters and, say, you Midnight Commander will look somewhat naked. The second method described below preserves all pseudographic characters:

  • Load UniCyr font
     consolechars -f UniCyr_8x16
    								

  • Load by2.kmap keymap or by.kmap
     loadkeys  by.kmap
     loadkeys by2.kmap
    								

  • Load Application-Charset Map iso05.acm
    consolechars -m iso05
    								

Beware that different Linux distributions have different console-related packages - console-tools or kbd. Abovementioned scripts are meant to work with console-tools which is by far more popular.

2.6. Belarusian in X Window System

2.6.1. ISO-8859-5 in X Window System through XKB

This is is quite easy to set up.

  • Install ISO-8859-5 fonts for X Window and make sure they are before other fonts in the fontpath. Refer to Font-HOWTO for details on how to install fonts.

  • Get the belarusian keyboard layout by from the the bellinux page and put it on the place of any other keyborad layout in /usr/X11R6/lib/X11/xkb/symbols/, e.g. instead of the belgian keyboard layout /usr/X11R6/lib/X11/xkb/symbols/be

    Put the following stings in your /etc/X11/XF86COnfig:
     XkbModel   "microsoft"
     XkbLayout  "be"
     XkbOptions "grp:caps_toggle"
    							

  • Don't forget to set up the system locale to be_BY.ISO8859-5 as described in Section 2.4. You will also want to make sure that iso-8859-5 fonts are before any other fonts in your font path.

2.6.2. Windows-1251 in X Window System through XKB

This works only with XFree 4.0.2 and higher.

  • Install ISO-8859-5 fonts for X Window and make sure they are before other fonts in the fontpath.

  • Get the belarusian keyboard layout by from the the bellinux page and put it on the place of any other keyborad layout in /usr/X11R6/lib/X11/xkb/symbols/, e.g. instead of the belgian keyboard layout /usr/X11R6/lib/X11/xkb/symbols/be

  • Put the following strings in your /etc/X11/XF86Config:
     XkbModel   "microsoft"
     XkbLayout  "be"
     XkbOptions "grp:caps_toggle"
    							

  • Don't forget to set up the system locale to be_BY.CP1251 as described in Section 2.4.

To use windows-1251 with XFree 3.3.5 and 4.0, you have to apply a patch from Aleksey Novodvorsky that allows the use of windows-1251 with XKB. The original location is at ftp.logic.ru/pub/logic/linux/be-locale and it is also available from the bellinux page. Lucky users of Linux-Mandrake RE get a patched XFree86 out of box.

Belarusian keyboard layout is palnned for all XFree releases after 4.0.2. To make it work, you will have to add the following lines into /etc/X11/XF86Config:
 XkbModel   "microsoft"
 XkbLayout  "by"
 XkbOptions "grp:caps_toggle"										
				

2.6.3. Windows-1251 in X Window System through Xmodmap

  • Uncomment
     XkbDisable
    								
    line in your /etc/X11/XF86COnfig.

  • Install windows-1251 fonts for X Windows and make sure thay are before other fonts in the path.

  • Make and install xruskb package which can be downloaded from http://bellinux.sourceforge.net

  • Replace .xmm files in your xruskb directory by those found at the bellinux page.

  • Add the following lines in your .Xdefaults file
     xrus*modeButton1.labelString: BEL xrus*modeButton1.label: BEL
    								

  • Run
     xrus jcuken-cp1251
    							
    or
     xrus jcuken-iso5
    							
    to start keyboard switcher.

Continue
 



P
System Builder

Now Shipping from: California - Florida - Georgia - Massachusetts - Michigan - New Jersey - Pennsylvania - Tennessee - Texas
We only ship within the USA and APO's.
We do not ship on national US holidays or on weekends.
Linux Voodoo RSS Store Feed
About Us  |  Contact Us  |  Conditions of Use  |  Privacy Notice  |  Warranty & Returns  |  Employment |  PHP HTML Form Builder

Copyright © 2003, Linux Voodoo Corporation All rights reserved. Linux is a trademark of Linus Torvalds.
email-addresses
Asterisk Debian Linux, WOW on Linux, yes our gaming systems do include World of Warcraft for Linux! Linux Voodoo Gaming systems include one copy of World of Warcraft, 1 year paid subscription to Transgaming.com so you can play over 200 popular Windows games on our linux systems. Too good to be true? Try it out for yourself.