Linkshare rotating banner
Showing posts with label setup. Show all posts
Showing posts with label setup. Show all posts

Friday, October 5, 2012

Setting the Locale on Linux

A locale is a system setting that allows users to configure the operating system for their own language, date, currency, etc. on Linux. There are slightly different ways to set up locales on different Linux distributions. Here I write how I would normally set up locales on Linux.



To set the system-wide default locale, I would append the LANG= variable to the Linux kernel. The kernel will happily accept the LANG= variable and pass it to the operating system. With syslinux, I would have an entry in syslinux.cfg as follows.



LABEL debian
KERNEL vmlinuz-3.6.0
INITRD /boot/initramfs.lzma
APPEND LANG=en_US.UTF-8 TERM=vt100 root=/dev/sda9


On Debian, Ubuntu, Mint and MEPIS, the system-wide locale may be specified in /etc/environment or /etc/default/locale.



LANG=C.UTF-8


To set your own locale different from the system-wide locale, just add a line to your .bashrc or .xsession:



export LANG=zh_CN.UTF-8


Generating locale-archive Again



The number of locales available on the system may be incomplete in order to save disk space. To see which locales are available, run the following command:



locale -a


If you want to add or remove locales, edit /etc/locale.gen. The following is a sample locale.gen.



ar_SA.UTF-8 UTF-8
bn_IN UTF-8
de_DE.UTF-8 UTF-8
en_US ISO-8859-1
en_US.UTF-8 UTF-8
es_MX.UTF-8 UTF-8
fa_IR UTF-8
fr_FR.UTF-8 UTF-8
gu_IN UTF-8
hi_IN UTF-8
id_ID.UTF-8 UTF-8
it_IT.UTF-8 UTF-8
ja_JP.UTF-8 UTF-8
kn_IN UTF-8
ko_KR.UTF-8 UTF-8
ml_IN UTF-8
mr_IN UTF-8
or_IN UTF-8
pa_PK UTF-8
pt_BR.UTF-8 UTF-8
ru_RU.UTF-8 UTF-8
ta_IN UTF-8
te_IN UTF-8
th_TH.UTF-8 UTF-8
tr_TR.UTF-8 UTF-8
vi_VN UTF-8
zh_CN.UTF-8 UTF-8
zh_TW.UTF-8 UTF-8


After changing the file locale.gen, you need to run locale-gen to regenerate the file /usr/lib/locale/locale-archive.



locale-gen


Enabling All Possible Locales


If you have plenty disk space, then you can enable all locales supported by the current glibc implementation. The list of supported locales is at /usr/share/i18n/SUPPORTED. Just copy it to /etc/locale.gen and rebuild the locales. It will regenerate the file /usr/lib/locale/locale-archive to about 100MB.



cp /usr/share/i18n/SUPPORTED /etc/locale.gen
locale-gen


Running Applications In Different Locales



Use the env command to run an application in a different locale. For example, to run pidgin in Chinese on an English desktop, I would issue:



env LANG=zh_CN.UTF-8 pidgin

Wednesday, May 19, 2010

My Windows Vista/7 Power Settings

Here are my power settings on Windows Vista or Windows 7. I find the default setting annoying or inadequate, especially the Start menu power button triggering sleep.




  • Lid Close Action
    • On Battery: Sleep
    • Plugged in: Do nothing


  • Power Button Action
    • On Battery: Hibernate
    • Plugged in: Hibernate


  • Sleep Button
    • On Battery: Sleep
    • Plugged in: Hibernate


  • Start menu power button
    • On Battery: Shut down
    • Plugged in: Shut down

Wednesday, September 16, 2009

Linux: Installing Windows Vista/7 Wireless Driver for use with ndiswrapper

I booted Linux on my Toshiba Mini NB205 netbook. My Linux system is installed on a USB memory stick and I boot it by plugging it in and using GRUB to load the Linux kernel and a custom initrd image. My Linux system doesn't have network connection yet because it doesn't have the driver for Atheros AR9285 wireless LAN adapter. It can't start X Windows either because I haven't installed the X.org driver package for Intel chipsets yet. Once I set up my wireless connection, I'll update my system, install the Intel video driver, and then set up X Windows.



I tried to install the Windows driver for my Atheros Wireless LAN card which will be loaded by ndiswrapper. First, I had to mount the NTFS partition which is hosting my Windows 7 system.


fdisk -l /dev/sda
mount -t ntfs-3g /dev/sda1 /mnt

I changed my working directory to DriverStore/FileRepository.


cd /mnt/Windows/System32/DriverStore/FileReposity

I tried to find the Vendor ID and Device ID of my wireless LAN card by reading the output of lspci -nn.


lspci -nn

The command above gave me the following output.


03:00.0 Network Controller [0280]: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) [168c:002b]

In order to make it easy to find the driver for my wireless LAN card, I created a script file /usr/local/bin/findmydrv.sh with the following contents:


#!/bin/sh
FILETYPE=`file $1`
case "$FILETYPE" in
*UTF-16*)
iconv -f utf16 -t utf8 $1 | \
grep -i $2 | \
grep -iq $3 && \
echo "Found the driver for your device $2:$3 in $1"
;;
*)
grep -i $2 $1 | \
grep -iq $3 && \
echo "Found the driver for your device $2:$3 in $1"
;;
esac

Then, I used the following command.


find -type f -iname \*.inf -exec findmydrv.sh \{\} 168c 002b \;

The previous command will show the location of the .INF file that contains the driver setup information. Once I found the folder that contains the Atheros driver, I went there and installed the driver.


cd netathr.inf_x86_neutral_*
ls -l
ndiswrapper -i netathr.inf

I checked whether the driver was successfully installed by running:


ndiswrapper -l

This displayed the following.


netathr : driver installed
device (168C:002B) present

I tried the newly installed Windows driver.


modprobe ndiswrapper


Related Posts


Friday, July 24, 2009

Windows ME: Manually Assigning IP address to a Network Card

Sometimes, it's better to manually set up IPv4 network settings than to rely on DHCP. Such occasions often happen especially in wireless networks with weak or noisy signals. To manually assign an IP address and a gateway on Windows ME, follow these steps:



  1. Right-click My Network Places on the Desktop

    Right_click_on_Network_neighborhood
  2. Select the TCP/IP-to-Adapter binding that you want to manually set up and click Properties.

    Network Properties
  3. In the IP Address tab, assign a static IP address.

    TCP_IP_IP_Address
  4. Set up the gateway.

    TCP_IP_Gateway
  5. Optionally, set up DNS.

    TCP_IP_DNS
  6. Disable WINS Resolution.

    TCP_IP_WINS
  7. Click OK and restart Windows.

To Check your IP setting in Windows ME


To check or update your IP setting in Windows ME, use the program winipcfg:


  1. Select Run... from the Start menu.

    Run from Start menu
  2. Type winipcfg and click OK.

    ME_run

Thursday, July 23, 2009

Windows ME: Add/Remove Programs

To remove a program from Windows ME, follow these steps:



  1. Open the Start menu and select Control Panel from the Settings submenu.

    Control_Panel_in_ME_Start_menu
  2. In Control Panel, double-click on Add/Remove Programs.

    Control_Panel
  3. In the Install/Uninstall tab of the Add/Remove Programs window, select the program you want to remove.

    Add_Remove_Programs
  4. Click the Add/Remove... button.

Tuesday, July 21, 2009

Installing and Setting Up GTK+ 2.6.10

After successfully compiling GTK+ 2.6.10, I packaged GTK+ 2.6.10 in a .Zip archive. Its contents are as follows:


bin/gdk-pixbuf-query-loaders.exe
bin/gspawn-win32-helper-console.exe
bin/gspawn-win32-helper.exe
bin/gtk-demo.exe
bin/gtk-query-immodules-2.0.exe
bin/gtk-update-icon-cache.exe
bin/libatk-1.0-0.dll
bin/libgdk-win32-2.0-0.dll
bin/libgdk_pixbuf-2.0-0.dll
bin/libglib-2.0-0.dll
bin/libgmodule-2.0-0.dll
bin/libgobject-2.0-0.dll
bin/libgthread-2.0-0.dll
bin/libgtk-win32-2.0-0.dll
bin/libjpeg-7.dll
bin/libpango-1.0-0.dll
bin/libpangowin32-1.0-0.dll
bin/libpng-3.dll
bin/libpng12-0.dll
bin/libtiff-3.dll
bin/libtiffxx-3.dll
bin/pango-querymodules.exe
bin/zlib1.dll
etc/gtk-2.0/gdk-pixbuf.loaders
etc/gtk-2.0/gtk.immodules
etc/pango/pango.modules
lib/gtk-2.0/2.4.0/engines/libpixmap.dll
lib/gtk-2.0/2.4.0/engines/libwimp.dll
lib/gtk-2.0/2.4.0/immodules/im-am-et.dll
lib/gtk-2.0/2.4.0/immodules/im-cedilla.dll
lib/gtk-2.0/2.4.0/immodules/im-cyrillic-translit.dll
lib/gtk-2.0/2.4.0/immodules/im-ime.dll
lib/gtk-2.0/2.4.0/immodules/im-inuktitut.dll
lib/gtk-2.0/2.4.0/immodules/im-ipa.dll
lib/gtk-2.0/2.4.0/immodules/im-thai-broken.dll
lib/gtk-2.0/2.4.0/immodules/im-ti-er.dll
lib/gtk-2.0/2.4.0/immodules/im-ti-et.dll
lib/gtk-2.0/2.4.0/immodules/im-viqr.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ani.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-bmp.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-gif.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ico.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-pcx.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-png.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-pnm.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ras.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-tga.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-tiff.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-wbmp.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-xbm.dll
lib/gtk-2.0/2.4.0/loaders/libpixbufloader-xpm.dll
lib/pango/1.4.0/modules/pango-basic-win32.dll
share/gtk-2.0/demo/alphatest.png
share/gtk-2.0/demo/apple-red.png
share/gtk-2.0/demo/appwindow.c
share/gtk-2.0/demo/background.jpg
share/gtk-2.0/demo/button_box.c
share/gtk-2.0/demo/changedisplay.c
share/gtk-2.0/demo/clipboard.c
share/gtk-2.0/demo/colorsel.c
share/gtk-2.0/demo/combobox.c
share/gtk-2.0/demo/dialog.c
share/gtk-2.0/demo/drawingarea.c
share/gtk-2.0/demo/editable_cells.c
share/gtk-2.0/demo/entry_completion.c
share/gtk-2.0/demo/expander.c
share/gtk-2.0/demo/floppybuddy.gif
share/gtk-2.0/demo/gnome-applets.png
share/gtk-2.0/demo/gnome-calendar.png
share/gtk-2.0/demo/gnome-foot.png
share/gtk-2.0/demo/gnome-fs-directory.png
share/gtk-2.0/demo/gnome-fs-regular.png
share/gtk-2.0/demo/gnome-gimp.png
share/gtk-2.0/demo/gnome-gmush.png
share/gtk-2.0/demo/gnome-gsame.png
share/gtk-2.0/demo/gnu-keys.png
share/gtk-2.0/demo/gtk-logo-rgb.gif
share/gtk-2.0/demo/hypertext.c
share/gtk-2.0/demo/iconview.c
share/gtk-2.0/demo/images.c
share/gtk-2.0/demo/list_store.c
share/gtk-2.0/demo/menus.c
share/gtk-2.0/demo/panes.c
share/gtk-2.0/demo/pickers.c
share/gtk-2.0/demo/pixbufs.c
share/gtk-2.0/demo/rotated_text.c
share/gtk-2.0/demo/sizegroup.c
share/gtk-2.0/demo/stock_browser.c
share/gtk-2.0/demo/textview.c
share/gtk-2.0/demo/tree_store.c
share/gtk-2.0/demo/ui_manager.c
share/locale/af/LC_MESSAGES/atk10.mo
share/locale/af/LC_MESSAGES/gtk20-properties.mo
share/locale/af/LC_MESSAGES/gtk20.mo
share/locale/am/LC_MESSAGES/atk10.mo
share/locale/am/LC_MESSAGES/glib20.mo
share/locale/am/LC_MESSAGES/gtk20-properties.mo
share/locale/am/LC_MESSAGES/gtk20.mo
share/locale/ar/LC_MESSAGES/atk10.mo
share/locale/ar/LC_MESSAGES/glib20.mo
share/locale/ar/LC_MESSAGES/gtk20-properties.mo
share/locale/ar/LC_MESSAGES/gtk20.mo
share/locale/as/LC_MESSAGES/atk10.mo
share/locale/az/LC_MESSAGES/atk10.mo
share/locale/az/LC_MESSAGES/glib20.mo
share/locale/az/LC_MESSAGES/gtk20-properties.mo
share/locale/az/LC_MESSAGES/gtk20.mo
share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo
share/locale/az_IR/LC_MESSAGES/gtk20.mo
share/locale/be/LC_MESSAGES/atk10.mo
share/locale/be/LC_MESSAGES/gettext-runtime.mo
share/locale/be/LC_MESSAGES/gettext-tools.mo
share/locale/be/LC_MESSAGES/glib20.mo
share/locale/be/LC_MESSAGES/gtk20-properties.mo
share/locale/be/LC_MESSAGES/gtk20.mo
share/locale/bg/LC_MESSAGES/atk10.mo
share/locale/bg/LC_MESSAGES/glib20.mo
share/locale/bg/LC_MESSAGES/gtk20-properties.mo
share/locale/bg/LC_MESSAGES/gtk20.mo
share/locale/bn/LC_MESSAGES/atk10.mo
share/locale/bn/LC_MESSAGES/glib20.mo
share/locale/bn/LC_MESSAGES/gtk20-properties.mo
share/locale/bn/LC_MESSAGES/gtk20.mo
share/locale/br/LC_MESSAGES/gtk20-properties.mo
share/locale/br/LC_MESSAGES/gtk20.mo
share/locale/bs/LC_MESSAGES/atk10.mo
share/locale/bs/LC_MESSAGES/glib20.mo
share/locale/bs/LC_MESSAGES/gtk20-properties.mo
share/locale/bs/LC_MESSAGES/gtk20.mo
share/locale/ca/LC_MESSAGES/atk10.mo
share/locale/ca/LC_MESSAGES/gettext-runtime.mo
share/locale/ca/LC_MESSAGES/gettext-tools.mo
share/locale/ca/LC_MESSAGES/glib20.mo
share/locale/ca/LC_MESSAGES/gtk20-properties.mo
share/locale/ca/LC_MESSAGES/gtk20.mo
share/locale/cs/LC_MESSAGES/atk10.mo
share/locale/cs/LC_MESSAGES/gettext-runtime.mo
share/locale/cs/LC_MESSAGES/gettext-tools.mo
share/locale/cs/LC_MESSAGES/glib20.mo
share/locale/cs/LC_MESSAGES/gtk20-properties.mo
share/locale/cs/LC_MESSAGES/gtk20.mo
share/locale/cy/LC_MESSAGES/atk10.mo
share/locale/cy/LC_MESSAGES/glib20.mo
share/locale/cy/LC_MESSAGES/gtk20-properties.mo
share/locale/cy/LC_MESSAGES/gtk20.mo
share/locale/da/LC_MESSAGES/atk10.mo
share/locale/da/LC_MESSAGES/gettext-runtime.mo
share/locale/da/LC_MESSAGES/gettext-tools.mo
share/locale/da/LC_MESSAGES/glib20.mo
share/locale/da/LC_MESSAGES/gtk20-properties.mo
share/locale/da/LC_MESSAGES/gtk20.mo
share/locale/de/LC_MESSAGES/atk10.mo
share/locale/de/LC_MESSAGES/gettext-runtime.mo
share/locale/de/LC_MESSAGES/gettext-tools.mo
share/locale/de/LC_MESSAGES/glib20.mo
share/locale/de/LC_MESSAGES/gtk20-properties.mo
share/locale/de/LC_MESSAGES/gtk20.mo
share/locale/el/LC_MESSAGES/atk10.mo
share/locale/el/LC_MESSAGES/gettext-runtime.mo
share/locale/el/LC_MESSAGES/gettext-tools.mo
share/locale/el/LC_MESSAGES/glib20.mo
share/locale/el/LC_MESSAGES/gtk20-properties.mo
share/locale/el/LC_MESSAGES/gtk20.mo
share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo
share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo
share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
share/locale/en@quot/LC_MESSAGES/gettext-tools.mo
share/locale/en_CA/LC_MESSAGES/atk10.mo
share/locale/en_CA/LC_MESSAGES/glib20.mo
share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo
share/locale/en_CA/LC_MESSAGES/gtk20.mo
share/locale/en_GB/LC_MESSAGES/atk10.mo
share/locale/en_GB/LC_MESSAGES/glib20.mo
share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo
share/locale/en_GB/LC_MESSAGES/gtk20.mo
share/locale/eo/LC_MESSAGES/atk10.mo
share/locale/eo/LC_MESSAGES/gettext-runtime.mo
share/locale/eo/LC_MESSAGES/glib20.mo
share/locale/es/LC_MESSAGES/atk10.mo
share/locale/es/LC_MESSAGES/gettext-runtime.mo
share/locale/es/LC_MESSAGES/gettext-tools.mo
share/locale/es/LC_MESSAGES/glib20.mo
share/locale/es/LC_MESSAGES/gtk20-properties.mo
share/locale/es/LC_MESSAGES/gtk20.mo
share/locale/et/LC_MESSAGES/atk10.mo
share/locale/et/LC_MESSAGES/gettext-runtime.mo
share/locale/et/LC_MESSAGES/gettext-tools.mo
share/locale/et/LC_MESSAGES/glib20.mo
share/locale/et/LC_MESSAGES/gtk20-properties.mo
share/locale/et/LC_MESSAGES/gtk20.mo
share/locale/eu/LC_MESSAGES/atk10.mo
share/locale/eu/LC_MESSAGES/gettext-tools.mo
share/locale/eu/LC_MESSAGES/glib20.mo
share/locale/eu/LC_MESSAGES/gtk20-properties.mo
share/locale/eu/LC_MESSAGES/gtk20.mo
share/locale/fa/LC_MESSAGES/atk10.mo
share/locale/fa/LC_MESSAGES/glib20.mo
share/locale/fa/LC_MESSAGES/gtk20-properties.mo
share/locale/fa/LC_MESSAGES/gtk20.mo
share/locale/fi/LC_MESSAGES/atk10.mo
share/locale/fi/LC_MESSAGES/gettext-runtime.mo
share/locale/fi/LC_MESSAGES/gettext-tools.mo
share/locale/fi/LC_MESSAGES/glib20.mo
share/locale/fi/LC_MESSAGES/gtk20-properties.mo
share/locale/fi/LC_MESSAGES/gtk20.mo
share/locale/fr/LC_MESSAGES/atk10.mo
share/locale/fr/LC_MESSAGES/gettext-runtime.mo
share/locale/fr/LC_MESSAGES/gettext-tools.mo
share/locale/fr/LC_MESSAGES/glib20.mo
share/locale/fr/LC_MESSAGES/gtk20-properties.mo
share/locale/fr/LC_MESSAGES/gtk20.mo
share/locale/ga/LC_MESSAGES/atk10.mo
share/locale/ga/LC_MESSAGES/gettext-runtime.mo
share/locale/ga/LC_MESSAGES/glib20.mo
share/locale/ga/LC_MESSAGES/gtk20-properties.mo
share/locale/ga/LC_MESSAGES/gtk20.mo
share/locale/gl/LC_MESSAGES/atk10.mo
share/locale/gl/LC_MESSAGES/gettext-runtime.mo
share/locale/gl/LC_MESSAGES/gettext-tools.mo
share/locale/gl/LC_MESSAGES/glib20.mo
share/locale/gl/LC_MESSAGES/gtk20-properties.mo
share/locale/gl/LC_MESSAGES/gtk20.mo
share/locale/gu/LC_MESSAGES/atk10.mo
share/locale/gu/LC_MESSAGES/glib20.mo
share/locale/gu/LC_MESSAGES/gtk20-properties.mo
share/locale/gu/LC_MESSAGES/gtk20.mo
share/locale/he/LC_MESSAGES/atk10.mo
share/locale/he/LC_MESSAGES/glib20.mo
share/locale/he/LC_MESSAGES/gtk20-properties.mo
share/locale/he/LC_MESSAGES/gtk20.mo
share/locale/hi/LC_MESSAGES/atk10.mo
share/locale/hi/LC_MESSAGES/glib20.mo
share/locale/hi/LC_MESSAGES/gtk20-properties.mo
share/locale/hi/LC_MESSAGES/gtk20.mo
share/locale/hr/LC_MESSAGES/atk10.mo
share/locale/hr/LC_MESSAGES/glib20.mo
share/locale/hr/LC_MESSAGES/gtk20-properties.mo
share/locale/hr/LC_MESSAGES/gtk20.mo
share/locale/hu/LC_MESSAGES/atk10.mo
share/locale/hu/LC_MESSAGES/glib20.mo
share/locale/hu/LC_MESSAGES/gtk20-properties.mo
share/locale/hu/LC_MESSAGES/gtk20.mo
share/locale/hy/LC_MESSAGES/gtk20-properties.mo
share/locale/hy/LC_MESSAGES/gtk20.mo
share/locale/ia/LC_MESSAGES/gtk20-properties.mo
share/locale/ia/LC_MESSAGES/gtk20.mo
share/locale/id/LC_MESSAGES/atk10.mo
share/locale/id/LC_MESSAGES/gettext-runtime.mo
share/locale/id/LC_MESSAGES/gettext-tools.mo
share/locale/id/LC_MESSAGES/glib20.mo
share/locale/id/LC_MESSAGES/gtk20-properties.mo
share/locale/id/LC_MESSAGES/gtk20.mo
share/locale/is/LC_MESSAGES/atk10.mo
share/locale/is/LC_MESSAGES/glib20.mo
share/locale/is/LC_MESSAGES/gtk20-properties.mo
share/locale/is/LC_MESSAGES/gtk20.mo
share/locale/it/LC_MESSAGES/atk10.mo
share/locale/it/LC_MESSAGES/gettext-runtime.mo
share/locale/it/LC_MESSAGES/gettext-tools.mo
share/locale/it/LC_MESSAGES/glib20.mo
share/locale/it/LC_MESSAGES/gtk20-properties.mo
share/locale/it/LC_MESSAGES/gtk20.mo
share/locale/ja/LC_MESSAGES/atk10.mo
share/locale/ja/LC_MESSAGES/gettext-runtime.mo
share/locale/ja/LC_MESSAGES/gettext-tools.mo
share/locale/ja/LC_MESSAGES/glib20.mo
share/locale/ja/LC_MESSAGES/gtk20-properties.mo
share/locale/ja/LC_MESSAGES/gtk20.mo
share/locale/kn/LC_MESSAGES/atk10.mo
share/locale/ko/LC_MESSAGES/atk10.mo
share/locale/ko/LC_MESSAGES/gettext-runtime.mo
share/locale/ko/LC_MESSAGES/gettext-tools.mo
share/locale/ko/LC_MESSAGES/glib20.mo
share/locale/ko/LC_MESSAGES/gtk20-properties.mo
share/locale/ko/LC_MESSAGES/gtk20.mo
share/locale/li/LC_MESSAGES/atk10.mo
share/locale/li/LC_MESSAGES/gtk20-properties.mo
share/locale/li/LC_MESSAGES/gtk20.mo
share/locale/locale.alias
share/locale/lt/LC_MESSAGES/atk10.mo
share/locale/lt/LC_MESSAGES/glib20.mo
share/locale/lt/LC_MESSAGES/gtk20-properties.mo
share/locale/lt/LC_MESSAGES/gtk20.mo
share/locale/lv/LC_MESSAGES/atk10.mo
share/locale/lv/LC_MESSAGES/glib20.mo
share/locale/lv/LC_MESSAGES/gtk20-properties.mo
share/locale/lv/LC_MESSAGES/gtk20.mo
share/locale/mi/LC_MESSAGES/gtk20-properties.mo
share/locale/mi/LC_MESSAGES/gtk20.mo
share/locale/mk/LC_MESSAGES/atk10.mo
share/locale/mk/LC_MESSAGES/glib20.mo
share/locale/mk/LC_MESSAGES/gtk20-properties.mo
share/locale/mk/LC_MESSAGES/gtk20.mo
share/locale/ml/LC_MESSAGES/atk10.mo
share/locale/ml/LC_MESSAGES/glib20.mo
share/locale/ml/LC_MESSAGES/gtk20-properties.mo
share/locale/ml/LC_MESSAGES/gtk20.mo
share/locale/mn/LC_MESSAGES/atk10.mo
share/locale/mn/LC_MESSAGES/glib20.mo
share/locale/mn/LC_MESSAGES/gtk20-properties.mo
share/locale/mn/LC_MESSAGES/gtk20.mo
share/locale/mr/LC_MESSAGES/atk10.mo
share/locale/mr/LC_MESSAGES/gtk20-properties.mo
share/locale/mr/LC_MESSAGES/gtk20.mo
share/locale/ms/LC_MESSAGES/atk10.mo
share/locale/ms/LC_MESSAGES/glib20.mo
share/locale/ms/LC_MESSAGES/gtk20-properties.mo
share/locale/ms/LC_MESSAGES/gtk20.mo
share/locale/nb/LC_MESSAGES/atk10.mo
share/locale/nb/LC_MESSAGES/gettext-runtime.mo
share/locale/nb/LC_MESSAGES/gettext-tools.mo
share/locale/nb/LC_MESSAGES/glib20.mo
share/locale/nb/LC_MESSAGES/gtk20-properties.mo
share/locale/nb/LC_MESSAGES/gtk20.mo
share/locale/ne/LC_MESSAGES/atk10.mo
share/locale/ne/LC_MESSAGES/glib20.mo
share/locale/ne/LC_MESSAGES/gtk20-properties.mo
share/locale/ne/LC_MESSAGES/gtk20.mo
share/locale/nl/LC_MESSAGES/atk10.mo
share/locale/nl/LC_MESSAGES/gettext-runtime.mo
share/locale/nl/LC_MESSAGES/gettext-tools.mo
share/locale/nl/LC_MESSAGES/glib20.mo
share/locale/nl/LC_MESSAGES/gtk20-properties.mo
share/locale/nl/LC_MESSAGES/gtk20.mo
share/locale/nn/LC_MESSAGES/atk10.mo
share/locale/nn/LC_MESSAGES/gettext-runtime.mo
share/locale/nn/LC_MESSAGES/gettext-tools.mo
share/locale/nn/LC_MESSAGES/glib20.mo
share/locale/nn/LC_MESSAGES/gtk20-properties.mo
share/locale/nn/LC_MESSAGES/gtk20.mo
share/locale/no/LC_MESSAGES/atk10.mo
share/locale/no/LC_MESSAGES/glib20.mo
share/locale/no/LC_MESSAGES/gtk20-properties.mo
share/locale/no/LC_MESSAGES/gtk20.mo
share/locale/nso/LC_MESSAGES/gtk20-properties.mo
share/locale/nso/LC_MESSAGES/gtk20.mo
share/locale/or/LC_MESSAGES/glib20.mo
share/locale/pa/LC_MESSAGES/atk10.mo
share/locale/pa/LC_MESSAGES/glib20.mo
share/locale/pa/LC_MESSAGES/gtk20-properties.mo
share/locale/pa/LC_MESSAGES/gtk20.mo
share/locale/pl/LC_MESSAGES/atk10.mo
share/locale/pl/LC_MESSAGES/gettext-runtime.mo
share/locale/pl/LC_MESSAGES/gettext-tools.mo
share/locale/pl/LC_MESSAGES/glib20.mo
share/locale/pl/LC_MESSAGES/gtk20-properties.mo
share/locale/pl/LC_MESSAGES/gtk20.mo
share/locale/pt/LC_MESSAGES/atk10.mo
share/locale/pt/LC_MESSAGES/gettext-runtime.mo
share/locale/pt/LC_MESSAGES/gettext-tools.mo
share/locale/pt/LC_MESSAGES/glib20.mo
share/locale/pt/LC_MESSAGES/gtk20-properties.mo
share/locale/pt/LC_MESSAGES/gtk20.mo
share/locale/pt_BR/LC_MESSAGES/atk10.mo
share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo
share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo
share/locale/pt_BR/LC_MESSAGES/glib20.mo
share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo
share/locale/pt_BR/LC_MESSAGES/gtk20.mo
share/locale/ro/LC_MESSAGES/atk10.mo
share/locale/ro/LC_MESSAGES/gettext-runtime.mo
share/locale/ro/LC_MESSAGES/gettext-tools.mo
share/locale/ro/LC_MESSAGES/glib20.mo
share/locale/ro/LC_MESSAGES/gtk20-properties.mo
share/locale/ro/LC_MESSAGES/gtk20.mo
share/locale/ru/LC_MESSAGES/atk10.mo
share/locale/ru/LC_MESSAGES/gettext-runtime.mo
share/locale/ru/LC_MESSAGES/gettext-tools.mo
share/locale/ru/LC_MESSAGES/glib20.mo
share/locale/ru/LC_MESSAGES/gtk20-properties.mo
share/locale/ru/LC_MESSAGES/gtk20.mo
share/locale/rw/LC_MESSAGES/atk10.mo
share/locale/rw/LC_MESSAGES/glib20.mo
share/locale/rw/LC_MESSAGES/gtk20-properties.mo
share/locale/rw/LC_MESSAGES/gtk20.mo
share/locale/sk/LC_MESSAGES/atk10.mo
share/locale/sk/LC_MESSAGES/gettext-runtime.mo
share/locale/sk/LC_MESSAGES/gettext-tools.mo
share/locale/sk/LC_MESSAGES/glib20.mo
share/locale/sk/LC_MESSAGES/gtk20-properties.mo
share/locale/sk/LC_MESSAGES/gtk20.mo
share/locale/sl/LC_MESSAGES/atk10.mo
share/locale/sl/LC_MESSAGES/gettext-runtime.mo
share/locale/sl/LC_MESSAGES/gettext-tools.mo
share/locale/sl/LC_MESSAGES/glib20.mo
share/locale/sl/LC_MESSAGES/gtk20-properties.mo
share/locale/sl/LC_MESSAGES/gtk20.mo
share/locale/sq/LC_MESSAGES/atk10.mo
share/locale/sq/LC_MESSAGES/glib20.mo
share/locale/sq/LC_MESSAGES/gtk20-properties.mo
share/locale/sq/LC_MESSAGES/gtk20.mo
share/locale/sr/LC_MESSAGES/atk10.mo
share/locale/sr/LC_MESSAGES/gettext-runtime.mo
share/locale/sr/LC_MESSAGES/gettext-tools.mo
share/locale/sr/LC_MESSAGES/glib20.mo
share/locale/sr/LC_MESSAGES/gtk20-properties.mo
share/locale/sr/LC_MESSAGES/gtk20.mo
share/locale/sr@Latn/LC_MESSAGES/atk10.mo
share/locale/sr@Latn/LC_MESSAGES/glib20.mo
share/locale/sr@Latn/LC_MESSAGES/gtk20-properties.mo
share/locale/sr@Latn/LC_MESSAGES/gtk20.mo
share/locale/sr@ije/LC_MESSAGES/atk10.mo
share/locale/sr@ije/LC_MESSAGES/glib20.mo
share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo
share/locale/sr@ije/LC_MESSAGES/gtk20.mo
share/locale/sv/LC_MESSAGES/atk10.mo
share/locale/sv/LC_MESSAGES/gettext-runtime.mo
share/locale/sv/LC_MESSAGES/gettext-tools.mo
share/locale/sv/LC_MESSAGES/glib20.mo
share/locale/sv/LC_MESSAGES/gtk20-properties.mo
share/locale/sv/LC_MESSAGES/gtk20.mo
share/locale/ta/LC_MESSAGES/atk10.mo
share/locale/ta/LC_MESSAGES/glib20.mo
share/locale/ta/LC_MESSAGES/gtk20-properties.mo
share/locale/ta/LC_MESSAGES/gtk20.mo
share/locale/te/LC_MESSAGES/glib20.mo
share/locale/th/LC_MESSAGES/atk10.mo
share/locale/th/LC_MESSAGES/glib20.mo
share/locale/th/LC_MESSAGES/gtk20-properties.mo
share/locale/th/LC_MESSAGES/gtk20.mo
share/locale/tk/LC_MESSAGES/atk10.mo
share/locale/tk/LC_MESSAGES/gtk20-properties.mo
share/locale/tk/LC_MESSAGES/gtk20.mo
share/locale/tl/LC_MESSAGES/glib20.mo
share/locale/tr/LC_MESSAGES/atk10.mo
share/locale/tr/LC_MESSAGES/gettext-runtime.mo
share/locale/tr/LC_MESSAGES/gettext-tools.mo
share/locale/tr/LC_MESSAGES/glib20.mo
share/locale/tr/LC_MESSAGES/gtk20-properties.mo
share/locale/tr/LC_MESSAGES/gtk20.mo
share/locale/ug/LC_MESSAGES/atk10.mo
share/locale/uk/LC_MESSAGES/atk10.mo
share/locale/uk/LC_MESSAGES/gettext-runtime.mo
share/locale/uk/LC_MESSAGES/gettext-tools.mo
share/locale/uk/LC_MESSAGES/glib20.mo
share/locale/uk/LC_MESSAGES/gtk20-properties.mo
share/locale/uk/LC_MESSAGES/gtk20.mo
share/locale/uz/LC_MESSAGES/gtk20-properties.mo
share/locale/uz/LC_MESSAGES/gtk20.mo
share/locale/uz@Latn/LC_MESSAGES/gtk20-properties.mo
share/locale/uz@Latn/LC_MESSAGES/gtk20.mo
share/locale/vi/LC_MESSAGES/atk10.mo
share/locale/vi/LC_MESSAGES/gettext-runtime.mo
share/locale/vi/LC_MESSAGES/gettext-tools.mo
share/locale/vi/LC_MESSAGES/glib20.mo
share/locale/vi/LC_MESSAGES/gtk20-properties.mo
share/locale/vi/LC_MESSAGES/gtk20.mo
share/locale/wa/LC_MESSAGES/atk10.mo
share/locale/wa/LC_MESSAGES/glib20.mo
share/locale/wa/LC_MESSAGES/gtk20-properties.mo
share/locale/wa/LC_MESSAGES/gtk20.mo
share/locale/xh/LC_MESSAGES/atk10.mo
share/locale/xh/LC_MESSAGES/glib20.mo
share/locale/xh/LC_MESSAGES/gtk20-properties.mo
share/locale/xh/LC_MESSAGES/gtk20.mo
share/locale/yi/LC_MESSAGES/atk10.mo
share/locale/yi/LC_MESSAGES/glib20.mo
share/locale/yi/LC_MESSAGES/gtk20-properties.mo
share/locale/yi/LC_MESSAGES/gtk20.mo
share/locale/zh_CN/LC_MESSAGES/atk10.mo
share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo
share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo
share/locale/zh_CN/LC_MESSAGES/glib20.mo
share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo
share/locale/zh_CN/LC_MESSAGES/gtk20.mo
share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo
share/locale/zh_HK/LC_MESSAGES/glib20.mo
share/locale/zh_TW/LC_MESSAGES/atk10.mo
share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo
share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo
share/locale/zh_TW/LC_MESSAGES/glib20.mo
share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo
share/locale/zh_TW/LC_MESSAGES/gtk20.mo
share/themes/Default/gtk-2.0-key/gtkrc
share/themes/Default/gtk-2.0/gtkrc
share/themes/Emacs/gtk-2.0-key/gtkrc
share/themes/MS-Windows/gtk-2.0/gtkrc

I unpacked it into C:\Windows\System32. Another suggested place to unpack GTK is C:\Program Files\Common Files\GTK\2.6.10. Then, I ran the following commands to update files in /etc.


gdk-pixbuf-query-loaders lib\gtk-2.0\2.4.0\loaders\*.dll > etc\gtk-2.0\gdk-pixbuf.loaders
gtk-query-immodules-2.0 lib\gtk-2.0\2.4.0\immodules\*.dll > etc\gtk-2.0\gtk.immodules
pango-querymodules > etc\pango\pango.modules

Then, I set the environment varibales PATH, HOME, LANG using msconfig. These variables are saved in AUTOEXEC.BAT.


SET PATH=C:\Program Files\Common Files\GTK\2.6.10\BIN;C:\WINDOWS;C:\WINDOWS\COMMAND
SET HOME=C:\WINDOWS\Profiles\Billie
SET LANG=ko

Next, create .gtkrc-2.0 and .pango.aliases in the HOME folder. My .gtkrc-2.0 is pretty generic:


gtk-theme-name = "MS-Windows"

style "user-font"
{
font_name="Sans 9"
}
widget_class "*" style "user-font"

My .pango.aliases file is simple too:


Sans = "Arial,GulimChe,Haansoft Dotum,MS Sans Serif"
Serif = "Times New Roman,Haansoft Batang"
Monospace = "Courier New"

As a final step, run gtk-demo to test your GTK+ setup.


gtk-demo-win-me

Friday, July 10, 2009

Minimalist Cygwin System with GTK+

This is just my little note on how to copy a minimal set of Cygwin files to a Windows system without running the setup program. The single essential piece of Cygwin is of course cygwin1.dll which I prefer to put in C:\Windows\System32 (For Windows 9x/ME, C:\Windows\System). Then, I will edit the Windows registry to define mappings for /, /etc, /tmp, /usr and /usr/local. Here are my Cygwin filesystem mappings:



Cygwin directory   Windows folder
/, /usr C:\Program Files\Common Files\Cygwin
/etc C:\Users\Jocelyn\AppData\Local\Cygwin
/tmp C:\Users\Jocelyn\AppData\Local\Temp
/usr/local C:\Program Files\Cygwin

To realize these mappings, I modified the registry as follows:


REGEDIT4

[HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin]

[HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2]
"cygdrive flags"=dword:00000022
"cygdrive prefix"="/cygdrive"

[HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/]
"flags"=dword:0000000a
"native"="C:\\Program Files\\Common Files\\Cygwin"

[HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/usr]
"flags"=dword:0000000a
"native"="C:\\Program Files\\Common Files\\Cygwin"

[HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/usr/local]
"flags"=dword:0000000a
"native"="C:\\Program Files\\Cygwin"

[HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/etc]
"flags"=dword:0000000a
"native"="C:\\Users\\Jocelyn\\AppData\\Local\\Cygwin"

[HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/tmp]
"flags"=dword:0000000a
"native"="C:\\Users\\Jocelyn\\AppData\\Local\\Temp"

[HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options]



Installing Self-Built Cygwin GTK+ Libraries 2.16.4


After successfully compiling GTK+ 2.16.4 with Cygwin, I copied the following set of files to C:\Program Files\Common files\Cygwin directory:


./bin/cygatk-1.0-0.dll
./bin/cygcairo-2.dll
./bin/cygcharset-1.dll
./bin/cygfontconfig-1.dll
./bin/cygfreetype-6.dll
./bin/cyggailutil-18.dll
./bin/cyggdk-win32-2.0-0.dll
./bin/cyggdk_pixbuf-2.0-0.dll
./bin/cyggio-2.0-0.dll
./bin/cygglib-2.0-0.dll
./bin/cyggmodule-2.0-0.dll
./bin/cyggobject-2.0-0.dll
./bin/cyggthread-2.0-0.dll
./bin/cyggtk-win32-2.0-0.dll
./bin/cygiconv-2.dll
./bin/cygintl-8.dll
./bin/cygjpeg-7.dll
./bin/cygpango-1.0-0.dll
./bin/cygpangocairo-1.0-0.dll
./bin/cygpangoft2-1.0-0.dll
./bin/cygpangowin32-1.0-0.dll
./bin/cygpixman-1-0.dll
./bin/cygpng12.dll
./bin/cygtiff-3.dll
./bin/cygtiffxx-3.dll
./bin/cygwin1.dll
./bin/cygxml2-2.dll
./bin/cygz.dll
./bin/fc-cache.exe
./bin/fc-cat.exe
./bin/fc-list.exe
./bin/fc-match.exe
./bin/fc-query.exe
./bin/fc-scan.exe
./bin/gtk-demo.exe
./bin/gtk-query-immodules-2.0.exe
./bin/gtk-update-icon-cache.exe
./bin/run.exe
./cygdrive
./etc
./lib/gtk-2.0/2.10.0/engines/cygpixmap.dll
./lib/gtk-2.0/2.10.0/engines/cygwimp.dll
./lib/gtk-2.0/2.10.0/immodules/im-am-et.dll
./lib/gtk-2.0/2.10.0/immodules/im-cedilla.dll
./lib/gtk-2.0/2.10.0/immodules/im-cyrillic-translit.dll
./lib/gtk-2.0/2.10.0/immodules/im-inuktitut.dll
./lib/gtk-2.0/2.10.0/immodules/im-ipa.dll
./lib/gtk-2.0/2.10.0/immodules/im-multipress.dll
./lib/gtk-2.0/2.10.0/immodules/im-thai.dll
./lib/gtk-2.0/2.10.0/immodules/im-ti-er.dll
./lib/gtk-2.0/2.10.0/immodules/im-ti-et.dll
./lib/gtk-2.0/2.10.0/immodules/im-viqr.dll
./lib/gtk-2.0/2.10.0/loaders
./lib/gtk-2.0/2.10.0/printbackends/cygprintbackend-file.dll
./lib/gtk-2.0/2.10.0/printbackends/cygprintbackend-lpr.dll
./lib/gtk-2.0/modules/cygferret.dll
./lib/gtk-2.0/modules/cyggail.dll
./local
./share/locale/af/LC_MESSAGES/atk10.mo
./share/locale/af/LC_MESSAGES/gtk20-properties.mo
./share/locale/af/LC_MESSAGES/gtk20.mo
./share/locale/am/LC_MESSAGES/atk10.mo
./share/locale/am/LC_MESSAGES/glib20.mo
./share/locale/am/LC_MESSAGES/gtk20-properties.mo
./share/locale/am/LC_MESSAGES/gtk20.mo
./share/locale/ang/LC_MESSAGES/gtk20-properties.mo
./share/locale/ang/LC_MESSAGES/gtk20.mo
./share/locale/ar/LC_MESSAGES/atk10.mo
./share/locale/ar/LC_MESSAGES/glib20.mo
./share/locale/ar/LC_MESSAGES/gtk20-properties.mo
./share/locale/ar/LC_MESSAGES/gtk20.mo
./share/locale/as/LC_MESSAGES/atk10.mo
./share/locale/as/LC_MESSAGES/glib20.mo
./share/locale/as/LC_MESSAGES/gtk20-properties.mo
./share/locale/as/LC_MESSAGES/gtk20.mo
./share/locale/ast/LC_MESSAGES/gtk20-properties.mo
./share/locale/ast/LC_MESSAGES/gtk20.mo
./share/locale/az/LC_MESSAGES/atk10.mo
./share/locale/az/LC_MESSAGES/glib20.mo
./share/locale/az/LC_MESSAGES/gtk20-properties.mo
./share/locale/az/LC_MESSAGES/gtk20.mo
./share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo
./share/locale/az_IR/LC_MESSAGES/gtk20.mo
./share/locale/be/LC_MESSAGES/atk10.mo
./share/locale/be/LC_MESSAGES/glib20.mo
./share/locale/be/LC_MESSAGES/gtk20-properties.mo
./share/locale/be/LC_MESSAGES/gtk20.mo
./share/locale/be@latin/LC_MESSAGES/atk10.mo
./share/locale/be@latin/LC_MESSAGES/glib20.mo
./share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo
./share/locale/be@latin/LC_MESSAGES/gtk20.mo
./share/locale/bg/LC_MESSAGES/atk10.mo
./share/locale/bg/LC_MESSAGES/glib20.mo
./share/locale/bg/LC_MESSAGES/gtk20-properties.mo
./share/locale/bg/LC_MESSAGES/gtk20.mo
./share/locale/bn/LC_MESSAGES/atk10.mo
./share/locale/bn/LC_MESSAGES/glib20.mo
./share/locale/bn/LC_MESSAGES/gtk20-properties.mo
./share/locale/bn/LC_MESSAGES/gtk20.mo
./share/locale/bn_IN/LC_MESSAGES/atk10.mo
./share/locale/bn_IN/LC_MESSAGES/glib20.mo
./share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo
./share/locale/bn_IN/LC_MESSAGES/gtk20.mo
./share/locale/br/LC_MESSAGES/gtk20-properties.mo
./share/locale/br/LC_MESSAGES/gtk20.mo
./share/locale/bs/LC_MESSAGES/atk10.mo
./share/locale/bs/LC_MESSAGES/glib20.mo
./share/locale/bs/LC_MESSAGES/gtk20-properties.mo
./share/locale/bs/LC_MESSAGES/gtk20.mo
./share/locale/ca/LC_MESSAGES/atk10.mo
./share/locale/ca/LC_MESSAGES/glib20.mo
./share/locale/ca/LC_MESSAGES/gtk20-properties.mo
./share/locale/ca/LC_MESSAGES/gtk20.mo
./share/locale/ca@valencia/LC_MESSAGES/glib20.mo
./share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo
./share/locale/ca@valencia/LC_MESSAGES/gtk20.mo
./share/locale/crh/LC_MESSAGES/gtk20-properties.mo
./share/locale/crh/LC_MESSAGES/gtk20.mo
./share/locale/cs/LC_MESSAGES/atk10.mo
./share/locale/cs/LC_MESSAGES/glib20.mo
./share/locale/cs/LC_MESSAGES/gtk20-properties.mo
./share/locale/cs/LC_MESSAGES/gtk20.mo
./share/locale/cy/LC_MESSAGES/atk10.mo
./share/locale/cy/LC_MESSAGES/glib20.mo
./share/locale/cy/LC_MESSAGES/gtk20-properties.mo
./share/locale/cy/LC_MESSAGES/gtk20.mo
./share/locale/da/LC_MESSAGES/atk10.mo
./share/locale/da/LC_MESSAGES/glib20.mo
./share/locale/da/LC_MESSAGES/gtk20-properties.mo
./share/locale/da/LC_MESSAGES/gtk20.mo
./share/locale/de/LC_MESSAGES/atk10.mo
./share/locale/de/LC_MESSAGES/glib20.mo
./share/locale/de/LC_MESSAGES/gtk20-properties.mo
./share/locale/de/LC_MESSAGES/gtk20.mo
./share/locale/dz/LC_MESSAGES/atk10.mo
./share/locale/dz/LC_MESSAGES/glib20.mo
./share/locale/dz/LC_MESSAGES/gtk20-properties.mo
./share/locale/dz/LC_MESSAGES/gtk20.mo
./share/locale/el/LC_MESSAGES/atk10.mo
./share/locale/el/LC_MESSAGES/glib20.mo
./share/locale/el/LC_MESSAGES/gtk20-properties.mo
./share/locale/el/LC_MESSAGES/gtk20.mo
./share/locale/en_CA/LC_MESSAGES/atk10.mo
./share/locale/en_CA/LC_MESSAGES/glib20.mo
./share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo
./share/locale/en_CA/LC_MESSAGES/gtk20.mo
./share/locale/en_GB/LC_MESSAGES/atk10.mo
./share/locale/en_GB/LC_MESSAGES/glib20.mo
./share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo
./share/locale/en_GB/LC_MESSAGES/gtk20.mo
./share/locale/eo/LC_MESSAGES/atk10.mo
./share/locale/eo/LC_MESSAGES/glib20.mo
./share/locale/eo/LC_MESSAGES/gtk20-properties.mo
./share/locale/eo/LC_MESSAGES/gtk20.mo
./share/locale/es/LC_MESSAGES/atk10.mo
./share/locale/es/LC_MESSAGES/glib20.mo
./share/locale/es/LC_MESSAGES/gtk20-properties.mo
./share/locale/es/LC_MESSAGES/gtk20.mo
./share/locale/et/LC_MESSAGES/atk10.mo
./share/locale/et/LC_MESSAGES/glib20.mo
./share/locale/et/LC_MESSAGES/gtk20-properties.mo
./share/locale/et/LC_MESSAGES/gtk20.mo
./share/locale/eu/LC_MESSAGES/atk10.mo
./share/locale/eu/LC_MESSAGES/glib20.mo
./share/locale/eu/LC_MESSAGES/gtk20-properties.mo
./share/locale/eu/LC_MESSAGES/gtk20.mo
./share/locale/fa/LC_MESSAGES/atk10.mo
./share/locale/fa/LC_MESSAGES/glib20.mo
./share/locale/fa/LC_MESSAGES/gtk20-properties.mo
./share/locale/fa/LC_MESSAGES/gtk20.mo
./share/locale/fi/LC_MESSAGES/atk10.mo
./share/locale/fi/LC_MESSAGES/glib20.mo
./share/locale/fi/LC_MESSAGES/gtk20-properties.mo
./share/locale/fi/LC_MESSAGES/gtk20.mo
./share/locale/fr/LC_MESSAGES/atk10.mo
./share/locale/fr/LC_MESSAGES/glib20.mo
./share/locale/fr/LC_MESSAGES/gtk20-properties.mo
./share/locale/fr/LC_MESSAGES/gtk20.mo
./share/locale/ga/LC_MESSAGES/atk10.mo
./share/locale/ga/LC_MESSAGES/glib20.mo
./share/locale/ga/LC_MESSAGES/gtk20-properties.mo
./share/locale/ga/LC_MESSAGES/gtk20.mo
./share/locale/gl/LC_MESSAGES/atk10.mo
./share/locale/gl/LC_MESSAGES/glib20.mo
./share/locale/gl/LC_MESSAGES/gtk20-properties.mo
./share/locale/gl/LC_MESSAGES/gtk20.mo
./share/locale/gu/LC_MESSAGES/atk10.mo
./share/locale/gu/LC_MESSAGES/glib20.mo
./share/locale/gu/LC_MESSAGES/gtk20-properties.mo
./share/locale/gu/LC_MESSAGES/gtk20.mo
./share/locale/he/LC_MESSAGES/atk10.mo
./share/locale/he/LC_MESSAGES/glib20.mo
./share/locale/he/LC_MESSAGES/gtk20-properties.mo
./share/locale/he/LC_MESSAGES/gtk20.mo
./share/locale/hi/LC_MESSAGES/atk10.mo
./share/locale/hi/LC_MESSAGES/glib20.mo
./share/locale/hi/LC_MESSAGES/gtk20-properties.mo
./share/locale/hi/LC_MESSAGES/gtk20.mo
./share/locale/hr/LC_MESSAGES/atk10.mo
./share/locale/hr/LC_MESSAGES/glib20.mo
./share/locale/hr/LC_MESSAGES/gtk20-properties.mo
./share/locale/hr/LC_MESSAGES/gtk20.mo
./share/locale/hu/LC_MESSAGES/atk10.mo
./share/locale/hu/LC_MESSAGES/glib20.mo
./share/locale/hu/LC_MESSAGES/gtk20-properties.mo
./share/locale/hu/LC_MESSAGES/gtk20.mo
./share/locale/hy/LC_MESSAGES/glib20.mo
./share/locale/hy/LC_MESSAGES/gtk20-properties.mo
./share/locale/hy/LC_MESSAGES/gtk20.mo
./share/locale/ia/LC_MESSAGES/gtk20-properties.mo
./share/locale/ia/LC_MESSAGES/gtk20.mo
./share/locale/id/LC_MESSAGES/atk10.mo
./share/locale/id/LC_MESSAGES/glib20.mo
./share/locale/id/LC_MESSAGES/gtk20-properties.mo
./share/locale/id/LC_MESSAGES/gtk20.mo
./share/locale/io/LC_MESSAGES/gtk20-properties.mo
./share/locale/io/LC_MESSAGES/gtk20.mo
./share/locale/is/LC_MESSAGES/atk10.mo
./share/locale/is/LC_MESSAGES/glib20.mo
./share/locale/is/LC_MESSAGES/gtk20-properties.mo
./share/locale/is/LC_MESSAGES/gtk20.mo
./share/locale/it/LC_MESSAGES/atk10.mo
./share/locale/it/LC_MESSAGES/glib20.mo
./share/locale/it/LC_MESSAGES/gtk20-properties.mo
./share/locale/it/LC_MESSAGES/gtk20.mo
./share/locale/ja/LC_MESSAGES/atk10.mo
./share/locale/ja/LC_MESSAGES/glib20.mo
./share/locale/ja/LC_MESSAGES/gtk20-properties.mo
./share/locale/ja/LC_MESSAGES/gtk20.mo
./share/locale/ka/LC_MESSAGES/atk10.mo
./share/locale/ka/LC_MESSAGES/glib20.mo
./share/locale/ka/LC_MESSAGES/gtk20-properties.mo
./share/locale/ka/LC_MESSAGES/gtk20.mo
./share/locale/kn/LC_MESSAGES/atk10.mo
./share/locale/kn/LC_MESSAGES/glib20.mo
./share/locale/kn/LC_MESSAGES/gtk20-properties.mo
./share/locale/kn/LC_MESSAGES/gtk20.mo
./share/locale/ko/LC_MESSAGES/atk10.mo
./share/locale/ko/LC_MESSAGES/glib20.mo
./share/locale/ko/LC_MESSAGES/gtk20-properties.mo
./share/locale/ko/LC_MESSAGES/gtk20.mo
./share/locale/ku/LC_MESSAGES/atk10.mo
./share/locale/ku/LC_MESSAGES/glib20.mo
./share/locale/ku/LC_MESSAGES/gtk20-properties.mo
./share/locale/ku/LC_MESSAGES/gtk20.mo
./share/locale/li/LC_MESSAGES/atk10.mo
./share/locale/li/LC_MESSAGES/gtk20-properties.mo
./share/locale/li/LC_MESSAGES/gtk20.mo
./share/locale/lt/LC_MESSAGES/atk10.mo
./share/locale/lt/LC_MESSAGES/glib20.mo
./share/locale/lt/LC_MESSAGES/gtk20-properties.mo
./share/locale/lt/LC_MESSAGES/gtk20.mo
./share/locale/lv/LC_MESSAGES/atk10.mo
./share/locale/lv/LC_MESSAGES/glib20.mo
./share/locale/lv/LC_MESSAGES/gtk20-properties.mo
./share/locale/lv/LC_MESSAGES/gtk20.mo
./share/locale/mai/LC_MESSAGES/atk10.mo
./share/locale/mai/LC_MESSAGES/glib20.mo
./share/locale/mai/LC_MESSAGES/gtk20-properties.mo
./share/locale/mai/LC_MESSAGES/gtk20.mo
./share/locale/mg/LC_MESSAGES/glib20.mo
./share/locale/mi/LC_MESSAGES/gtk20-properties.mo
./share/locale/mi/LC_MESSAGES/gtk20.mo
./share/locale/mk/LC_MESSAGES/atk10.mo
./share/locale/mk/LC_MESSAGES/glib20.mo
./share/locale/mk/LC_MESSAGES/gtk20-properties.mo
./share/locale/mk/LC_MESSAGES/gtk20.mo
./share/locale/ml/LC_MESSAGES/atk10.mo
./share/locale/ml/LC_MESSAGES/glib20.mo
./share/locale/ml/LC_MESSAGES/gtk20-properties.mo
./share/locale/ml/LC_MESSAGES/gtk20.mo
./share/locale/mn/LC_MESSAGES/atk10.mo
./share/locale/mn/LC_MESSAGES/glib20.mo
./share/locale/mn/LC_MESSAGES/gtk20-properties.mo
./share/locale/mn/LC_MESSAGES/gtk20.mo
./share/locale/mr/LC_MESSAGES/atk10.mo
./share/locale/mr/LC_MESSAGES/glib20.mo
./share/locale/mr/LC_MESSAGES/gtk20-properties.mo
./share/locale/mr/LC_MESSAGES/gtk20.mo
./share/locale/ms/LC_MESSAGES/atk10.mo
./share/locale/ms/LC_MESSAGES/glib20.mo
./share/locale/ms/LC_MESSAGES/gtk20-properties.mo
./share/locale/ms/LC_MESSAGES/gtk20.mo
./share/locale/nb/LC_MESSAGES/atk10.mo
./share/locale/nb/LC_MESSAGES/glib20.mo
./share/locale/nb/LC_MESSAGES/gtk20-properties.mo
./share/locale/nb/LC_MESSAGES/gtk20.mo
./share/locale/ne/LC_MESSAGES/atk10.mo
./share/locale/ne/LC_MESSAGES/glib20.mo
./share/locale/ne/LC_MESSAGES/gtk20-properties.mo
./share/locale/ne/LC_MESSAGES/gtk20.mo
./share/locale/nl/LC_MESSAGES/atk10.mo
./share/locale/nl/LC_MESSAGES/glib20.mo
./share/locale/nl/LC_MESSAGES/gtk20-properties.mo
./share/locale/nl/LC_MESSAGES/gtk20.mo
./share/locale/nn/LC_MESSAGES/atk10.mo
./share/locale/nn/LC_MESSAGES/glib20.mo
./share/locale/nn/LC_MESSAGES/gtk20-properties.mo
./share/locale/nn/LC_MESSAGES/gtk20.mo
./share/locale/nso/LC_MESSAGES/gtk20-properties.mo
./share/locale/nso/LC_MESSAGES/gtk20.mo
./share/locale/oc/LC_MESSAGES/atk10.mo
./share/locale/oc/LC_MESSAGES/glib20.mo
./share/locale/oc/LC_MESSAGES/gtk20-properties.mo
./share/locale/oc/LC_MESSAGES/gtk20.mo
./share/locale/or/LC_MESSAGES/atk10.mo
./share/locale/or/LC_MESSAGES/glib20.mo
./share/locale/or/LC_MESSAGES/gtk20-properties.mo
./share/locale/or/LC_MESSAGES/gtk20.mo
./share/locale/pa/LC_MESSAGES/atk10.mo
./share/locale/pa/LC_MESSAGES/glib20.mo
./share/locale/pa/LC_MESSAGES/gtk20-properties.mo
./share/locale/pa/LC_MESSAGES/gtk20.mo
./share/locale/pl/LC_MESSAGES/atk10.mo
./share/locale/pl/LC_MESSAGES/glib20.mo
./share/locale/pl/LC_MESSAGES/gtk20-properties.mo
./share/locale/pl/LC_MESSAGES/gtk20.mo
./share/locale/ps/LC_MESSAGES/atk10.mo
./share/locale/ps/LC_MESSAGES/glib20.mo
./share/locale/ps/LC_MESSAGES/gtk20-properties.mo
./share/locale/ps/LC_MESSAGES/gtk20.mo
./share/locale/pt/LC_MESSAGES/atk10.mo
./share/locale/pt/LC_MESSAGES/glib20.mo
./share/locale/pt/LC_MESSAGES/gtk20-properties.mo
./share/locale/pt/LC_MESSAGES/gtk20.mo
./share/locale/pt_BR/LC_MESSAGES/atk10.mo
./share/locale/pt_BR/LC_MESSAGES/glib20.mo
./share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo
./share/locale/pt_BR/LC_MESSAGES/gtk20.mo
./share/locale/ro/LC_MESSAGES/atk10.mo
./share/locale/ro/LC_MESSAGES/glib20.mo
./share/locale/ro/LC_MESSAGES/gtk20-properties.mo
./share/locale/ro/LC_MESSAGES/gtk20.mo
./share/locale/ru/LC_MESSAGES/atk10.mo
./share/locale/ru/LC_MESSAGES/glib20.mo
./share/locale/ru/LC_MESSAGES/gtk20-properties.mo
./share/locale/ru/LC_MESSAGES/gtk20.mo
./share/locale/rw/LC_MESSAGES/atk10.mo
./share/locale/rw/LC_MESSAGES/glib20.mo
./share/locale/rw/LC_MESSAGES/gtk20-properties.mo
./share/locale/rw/LC_MESSAGES/gtk20.mo
./share/locale/si/LC_MESSAGES/atk10.mo
./share/locale/si/LC_MESSAGES/glib20.mo
./share/locale/si/LC_MESSAGES/gtk20-properties.mo
./share/locale/si/LC_MESSAGES/gtk20.mo
./share/locale/sk/LC_MESSAGES/atk10.mo
./share/locale/sk/LC_MESSAGES/glib20.mo
./share/locale/sk/LC_MESSAGES/gtk20-properties.mo
./share/locale/sk/LC_MESSAGES/gtk20.mo
./share/locale/sl/LC_MESSAGES/atk10.mo
./share/locale/sl/LC_MESSAGES/glib20.mo
./share/locale/sl/LC_MESSAGES/gtk20-properties.mo
./share/locale/sl/LC_MESSAGES/gtk20.mo
./share/locale/sq/LC_MESSAGES/atk10.mo
./share/locale/sq/LC_MESSAGES/glib20.mo
./share/locale/sq/LC_MESSAGES/gtk20-properties.mo
./share/locale/sq/LC_MESSAGES/gtk20.mo
./share/locale/sr/LC_MESSAGES/atk10.mo
./share/locale/sr/LC_MESSAGES/glib20.mo
./share/locale/sr/LC_MESSAGES/gtk20-properties.mo
./share/locale/sr/LC_MESSAGES/gtk20.mo
./share/locale/sr@ije/LC_MESSAGES/atk10.mo
./share/locale/sr@ije/LC_MESSAGES/glib20.mo
./share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo
./share/locale/sr@ije/LC_MESSAGES/gtk20.mo
./share/locale/sr@latin/LC_MESSAGES/atk10.mo
./share/locale/sr@latin/LC_MESSAGES/glib20.mo
./share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo
./share/locale/sr@latin/LC_MESSAGES/gtk20.mo
./share/locale/sv/LC_MESSAGES/atk10.mo
./share/locale/sv/LC_MESSAGES/glib20.mo
./share/locale/sv/LC_MESSAGES/gtk20-properties.mo
./share/locale/sv/LC_MESSAGES/gtk20.mo
./share/locale/ta/LC_MESSAGES/atk10.mo
./share/locale/ta/LC_MESSAGES/glib20.mo
./share/locale/ta/LC_MESSAGES/gtk20-properties.mo
./share/locale/ta/LC_MESSAGES/gtk20.mo
./share/locale/te/LC_MESSAGES/atk10.mo
./share/locale/te/LC_MESSAGES/glib20.mo
./share/locale/te/LC_MESSAGES/gtk20-properties.mo
./share/locale/te/LC_MESSAGES/gtk20.mo
./share/locale/th/LC_MESSAGES/atk10.mo
./share/locale/th/LC_MESSAGES/glib20.mo
./share/locale/th/LC_MESSAGES/gtk20-properties.mo
./share/locale/th/LC_MESSAGES/gtk20.mo
./share/locale/tk/LC_MESSAGES/atk10.mo
./share/locale/tk/LC_MESSAGES/gtk20-properties.mo
./share/locale/tk/LC_MESSAGES/gtk20.mo
./share/locale/tl/LC_MESSAGES/glib20.mo
./share/locale/tr/LC_MESSAGES/atk10.mo
./share/locale/tr/LC_MESSAGES/glib20.mo
./share/locale/tr/LC_MESSAGES/gtk20-properties.mo
./share/locale/tr/LC_MESSAGES/gtk20.mo
./share/locale/tt/LC_MESSAGES/atk10.mo
./share/locale/tt/LC_MESSAGES/glib20.mo
./share/locale/tt/LC_MESSAGES/gtk20-properties.mo
./share/locale/tt/LC_MESSAGES/gtk20.mo
./share/locale/ug/LC_MESSAGES/atk10.mo
./share/locale/uk/LC_MESSAGES/atk10.mo
./share/locale/uk/LC_MESSAGES/glib20.mo
./share/locale/uk/LC_MESSAGES/gtk20-properties.mo
./share/locale/uk/LC_MESSAGES/gtk20.mo
./share/locale/ur/LC_MESSAGES/gtk20-properties.mo
./share/locale/ur/LC_MESSAGES/gtk20.mo
./share/locale/uz/LC_MESSAGES/gtk20-properties.mo
./share/locale/uz/LC_MESSAGES/gtk20.mo
./share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo
./share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo
./share/locale/vi/LC_MESSAGES/atk10.mo
./share/locale/vi/LC_MESSAGES/glib20.mo
./share/locale/vi/LC_MESSAGES/gtk20-properties.mo
./share/locale/vi/LC_MESSAGES/gtk20.mo
./share/locale/wa/LC_MESSAGES/atk10.mo
./share/locale/wa/LC_MESSAGES/glib20.mo
./share/locale/wa/LC_MESSAGES/gtk20-properties.mo
./share/locale/wa/LC_MESSAGES/gtk20.mo
./share/locale/xh/LC_MESSAGES/atk10.mo
./share/locale/xh/LC_MESSAGES/glib20.mo
./share/locale/xh/LC_MESSAGES/gtk20-properties.mo
./share/locale/xh/LC_MESSAGES/gtk20.mo
./share/locale/yi/LC_MESSAGES/atk10.mo
./share/locale/yi/LC_MESSAGES/glib20.mo
./share/locale/yi/LC_MESSAGES/gtk20-properties.mo
./share/locale/yi/LC_MESSAGES/gtk20.mo
./share/locale/zh_CN/LC_MESSAGES/atk10.mo
./share/locale/zh_CN/LC_MESSAGES/glib20.mo
./share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo
./share/locale/zh_CN/LC_MESSAGES/gtk20.mo
./share/locale/zh_HK/LC_MESSAGES/atk10.mo
./share/locale/zh_HK/LC_MESSAGES/glib20.mo
./share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo
./share/locale/zh_HK/LC_MESSAGES/gtk20.mo
./share/locale/zh_TW/LC_MESSAGES/atk10.mo
./share/locale/zh_TW/LC_MESSAGES/glib20.mo
./share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo
./share/locale/zh_TW/LC_MESSAGES/gtk20.mo
./share/themes/Default/gtk-2.0-key/gtkrc
./share/themes/Emacs/gtk-2.0-key/gtkrc
./share/themes/MS-Windows/gtk-2.0/gtkrc
./share/themes/Raleigh/gtk-2.0/gtkrc
./tmp
./usr

Then, I copied the following set of files to C:/Users/Jocelyn/AppData/Local/Cygwin:


fonts/conf.avail/10-autohint.conf
fonts/conf.avail/10-no-sub-pixel.conf
fonts/conf.avail/10-sub-pixel-bgr.conf
fonts/conf.avail/10-sub-pixel-rgb.conf
fonts/conf.avail/10-sub-pixel-vbgr.conf
fonts/conf.avail/10-sub-pixel-vrgb.conf
fonts/conf.avail/10-unhinted.conf
fonts/conf.avail/20-fix-globaladvance.conf
fonts/conf.avail/20-unhint-small-vera.conf
fonts/conf.avail/25-unhint-nonlatin.conf
fonts/conf.avail/30-metric-aliases.conf
fonts/conf.avail/30-urw-aliases.conf
fonts/conf.avail/40-nonlatin.conf
fonts/conf.avail/45-latin.conf
fonts/conf.avail/49-sansserif.conf
fonts/conf.avail/50-user.conf
fonts/conf.avail/51-local.conf
fonts/conf.avail/60-latin.conf
fonts/conf.avail/65-fonts-persian.conf
fonts/conf.avail/65-khmer.conf
fonts/conf.avail/65-nonlatin.conf
fonts/conf.avail/69-unifont.conf
fonts/conf.avail/70-no-bitmaps.conf
fonts/conf.avail/70-yes-bitmaps.conf
fonts/conf.avail/80-delicious.conf
fonts/conf.avail/90-synthetic.conf
fonts/conf.d/20-fix-globaladvance.conf
fonts/conf.d/20-unhint-small-vera.conf
fonts/conf.d/30-metric-aliases.conf
fonts/conf.d/30-urw-aliases.conf
fonts/conf.d/40-nonlatin.conf
fonts/conf.d/45-latin.conf
fonts/conf.d/49-sansserif.conf
fonts/conf.d/50-user.conf
fonts/conf.d/51-local.conf
fonts/conf.d/60-latin.conf
fonts/conf.d/65-fonts-persian.conf
fonts/conf.d/65-nonlatin.conf
fonts/conf.d/69-unifont.conf
fonts/conf.d/80-delicious.conf
fonts/conf.d/90-synthetic.conf
fonts/conf.d/README
fonts.conf
fonts.dtd
gtk-2.0/gdk-pixbuf.loaders
gtk-2.0/gtk.immodules
gtk-2.0/gtkrc
gtk-2.0/im-multipress.conf
pango/pango.aliases
pango/pango.modules


Installing Self-Built Cygwin GTK+ Libraries 2.6.10


For Windows 98/ME, I would copy these files into C:\Program Files\Common Files\Cygwin:


bin/cygatk-1.0-0.dll
bin/cygcharset-1.dll
bin/cyggdk-win32-2.0-0.dll
bin/cyggdk_pixbuf-2.0-0.dll
bin/cygglib-2.0-0.dll
bin/cyggmodule-2.0-0.dll
bin/cyggobject-2.0-0.dll
bin/cyggthread-2.0-0.dll
bin/cyggtk-win32-2.0-0.dll
bin/cygiconv-2.dll
bin/cygintl-8.dll
bin/cygjpeg-7.dll
bin/cygpango-1.0-0.dll
bin/cygpangowin32-1.0-0.dll
bin/cygpng12.dll
bin/cygtiff-3.dll
bin/cygz.dll
bin/gdk-pixbuf-query-loaders.exe
bin/gtk-demo.exe
bin/gtk-query-immodules-2.0.exe
bin/pango-querymodules.exe
bin/run.exe
etc/gtk-2.0/gdk-pixbuf.loaders
etc/gtk-2.0/gtk.immodules
etc/gtk-2.0/gtkrc
etc/pango/pango.aliases
etc/pango/pango.modules
lib/gtk-2.0/2.4.0/engines/cygpixmap.dll
lib/gtk-2.0/2.4.0/engines/cygwimp.dll
lib/gtk-2.0/2.4.0/immodules/im-am-et.dll
lib/gtk-2.0/2.4.0/immodules/im-cedilla.dll
lib/gtk-2.0/2.4.0/immodules/im-cyrillic-translit.dll
lib/gtk-2.0/2.4.0/immodules/im-ime.dll
lib/gtk-2.0/2.4.0/immodules/im-inuktitut.dll
lib/gtk-2.0/2.4.0/immodules/im-ipa.dll
lib/gtk-2.0/2.4.0/immodules/im-thai-broken.dll
lib/gtk-2.0/2.4.0/immodules/im-ti-er.dll
lib/gtk-2.0/2.4.0/immodules/im-ti-et.dll
lib/gtk-2.0/2.4.0/immodules/im-viqr.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-ani.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-bmp.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-gif.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-ico.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-jpeg.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-pcx.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-png.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-pnm.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-ras.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-tga.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-tiff.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-wbmp.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-xbm.dll
lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-xpm.dll
share/gtk-2.0/demo/alphatest.png
share/gtk-2.0/demo/apple-red.png
share/gtk-2.0/demo/appwindow.c
share/gtk-2.0/demo/background.jpg
share/gtk-2.0/demo/button_box.c
share/gtk-2.0/demo/changedisplay.c
share/gtk-2.0/demo/clipboard.c
share/gtk-2.0/demo/colorsel.c
share/gtk-2.0/demo/combobox.c
share/gtk-2.0/demo/dialog.c
share/gtk-2.0/demo/drawingarea.c
share/gtk-2.0/demo/editable_cells.c
share/gtk-2.0/demo/entry_completion.c
share/gtk-2.0/demo/expander.c
share/gtk-2.0/demo/floppybuddy.gif
share/gtk-2.0/demo/gnome-applets.png
share/gtk-2.0/demo/gnome-calendar.png
share/gtk-2.0/demo/gnome-foot.png
share/gtk-2.0/demo/gnome-fs-directory.png
share/gtk-2.0/demo/gnome-fs-regular.png
share/gtk-2.0/demo/gnome-gimp.png
share/gtk-2.0/demo/gnome-gmush.png
share/gtk-2.0/demo/gnome-gsame.png
share/gtk-2.0/demo/gnu-keys.png
share/gtk-2.0/demo/gtk-logo-rgb.gif
share/gtk-2.0/demo/hypertext.c
share/gtk-2.0/demo/iconview.c
share/gtk-2.0/demo/images.c
share/gtk-2.0/demo/list_store.c
share/gtk-2.0/demo/menus.c
share/gtk-2.0/demo/panes.c
share/gtk-2.0/demo/pickers.c
share/gtk-2.0/demo/pixbufs.c
share/gtk-2.0/demo/rotated_text.c
share/gtk-2.0/demo/sizegroup.c
share/gtk-2.0/demo/stock_browser.c
share/gtk-2.0/demo/textview.c
share/gtk-2.0/demo/tree_store.c
share/gtk-2.0/demo/ui_manager.c
share/locale/af/LC_MESSAGES/atk10.mo
share/locale/af/LC_MESSAGES/gtk20-properties.mo
share/locale/af/LC_MESSAGES/gtk20.mo
share/locale/am/LC_MESSAGES/atk10.mo
share/locale/am/LC_MESSAGES/glib20.mo
share/locale/am/LC_MESSAGES/gtk20-properties.mo
share/locale/am/LC_MESSAGES/gtk20.mo
share/locale/ar/LC_MESSAGES/atk10.mo
share/locale/ar/LC_MESSAGES/glib20.mo
share/locale/ar/LC_MESSAGES/gtk20-properties.mo
share/locale/ar/LC_MESSAGES/gtk20.mo
share/locale/as/LC_MESSAGES/atk10.mo
share/locale/az/LC_MESSAGES/atk10.mo
share/locale/az/LC_MESSAGES/glib20.mo
share/locale/az/LC_MESSAGES/gtk20-properties.mo
share/locale/az/LC_MESSAGES/gtk20.mo
share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo
share/locale/az_IR/LC_MESSAGES/gtk20.mo
share/locale/be/LC_MESSAGES/atk10.mo
share/locale/be/LC_MESSAGES/glib20.mo
share/locale/be/LC_MESSAGES/gtk20-properties.mo
share/locale/be/LC_MESSAGES/gtk20.mo
share/locale/bg/LC_MESSAGES/atk10.mo
share/locale/bg/LC_MESSAGES/glib20.mo
share/locale/bg/LC_MESSAGES/gtk20-properties.mo
share/locale/bg/LC_MESSAGES/gtk20.mo
share/locale/bn/LC_MESSAGES/atk10.mo
share/locale/bn/LC_MESSAGES/glib20.mo
share/locale/bn/LC_MESSAGES/gtk20-properties.mo
share/locale/bn/LC_MESSAGES/gtk20.mo
share/locale/br/LC_MESSAGES/gtk20-properties.mo
share/locale/br/LC_MESSAGES/gtk20.mo
share/locale/bs/LC_MESSAGES/atk10.mo
share/locale/bs/LC_MESSAGES/glib20.mo
share/locale/bs/LC_MESSAGES/gtk20-properties.mo
share/locale/bs/LC_MESSAGES/gtk20.mo
share/locale/ca/LC_MESSAGES/atk10.mo
share/locale/ca/LC_MESSAGES/glib20.mo
share/locale/ca/LC_MESSAGES/gtk20-properties.mo
share/locale/ca/LC_MESSAGES/gtk20.mo
share/locale/cs/LC_MESSAGES/atk10.mo
share/locale/cs/LC_MESSAGES/glib20.mo
share/locale/cs/LC_MESSAGES/gtk20-properties.mo
share/locale/cs/LC_MESSAGES/gtk20.mo
share/locale/cy/LC_MESSAGES/atk10.mo
share/locale/cy/LC_MESSAGES/glib20.mo
share/locale/cy/LC_MESSAGES/gtk20-properties.mo
share/locale/cy/LC_MESSAGES/gtk20.mo
share/locale/da/LC_MESSAGES/atk10.mo
share/locale/da/LC_MESSAGES/glib20.mo
share/locale/da/LC_MESSAGES/gtk20-properties.mo
share/locale/da/LC_MESSAGES/gtk20.mo
share/locale/de/LC_MESSAGES/atk10.mo
share/locale/de/LC_MESSAGES/glib20.mo
share/locale/de/LC_MESSAGES/gtk20-properties.mo
share/locale/de/LC_MESSAGES/gtk20.mo
share/locale/el/LC_MESSAGES/atk10.mo
share/locale/el/LC_MESSAGES/glib20.mo
share/locale/el/LC_MESSAGES/gtk20-properties.mo
share/locale/el/LC_MESSAGES/gtk20.mo
share/locale/en_CA/LC_MESSAGES/atk10.mo
share/locale/en_CA/LC_MESSAGES/glib20.mo
share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo
share/locale/en_CA/LC_MESSAGES/gtk20.mo
share/locale/en_GB/LC_MESSAGES/atk10.mo
share/locale/en_GB/LC_MESSAGES/glib20.mo
share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo
share/locale/en_GB/LC_MESSAGES/gtk20.mo
share/locale/eo/LC_MESSAGES/atk10.mo
share/locale/eo/LC_MESSAGES/glib20.mo
share/locale/es/LC_MESSAGES/atk10.mo
share/locale/es/LC_MESSAGES/glib20.mo
share/locale/es/LC_MESSAGES/gtk20-properties.mo
share/locale/es/LC_MESSAGES/gtk20.mo
share/locale/et/LC_MESSAGES/atk10.mo
share/locale/et/LC_MESSAGES/glib20.mo
share/locale/et/LC_MESSAGES/gtk20-properties.mo
share/locale/et/LC_MESSAGES/gtk20.mo
share/locale/eu/LC_MESSAGES/atk10.mo
share/locale/eu/LC_MESSAGES/glib20.mo
share/locale/eu/LC_MESSAGES/gtk20-properties.mo
share/locale/eu/LC_MESSAGES/gtk20.mo
share/locale/fa/LC_MESSAGES/atk10.mo
share/locale/fa/LC_MESSAGES/glib20.mo
share/locale/fa/LC_MESSAGES/gtk20-properties.mo
share/locale/fa/LC_MESSAGES/gtk20.mo
share/locale/fi/LC_MESSAGES/atk10.mo
share/locale/fi/LC_MESSAGES/glib20.mo
share/locale/fi/LC_MESSAGES/gtk20-properties.mo
share/locale/fi/LC_MESSAGES/gtk20.mo
share/locale/fr/LC_MESSAGES/atk10.mo
share/locale/fr/LC_MESSAGES/glib20.mo
share/locale/fr/LC_MESSAGES/gtk20-properties.mo
share/locale/fr/LC_MESSAGES/gtk20.mo
share/locale/ga/LC_MESSAGES/atk10.mo
share/locale/ga/LC_MESSAGES/glib20.mo
share/locale/ga/LC_MESSAGES/gtk20-properties.mo
share/locale/ga/LC_MESSAGES/gtk20.mo
share/locale/gl/LC_MESSAGES/atk10.mo
share/locale/gl/LC_MESSAGES/glib20.mo
share/locale/gl/LC_MESSAGES/gtk20-properties.mo
share/locale/gl/LC_MESSAGES/gtk20.mo
share/locale/gu/LC_MESSAGES/atk10.mo
share/locale/gu/LC_MESSAGES/glib20.mo
share/locale/gu/LC_MESSAGES/gtk20-properties.mo
share/locale/gu/LC_MESSAGES/gtk20.mo
share/locale/he/LC_MESSAGES/atk10.mo
share/locale/he/LC_MESSAGES/glib20.mo
share/locale/he/LC_MESSAGES/gtk20-properties.mo
share/locale/he/LC_MESSAGES/gtk20.mo
share/locale/hi/LC_MESSAGES/atk10.mo
share/locale/hi/LC_MESSAGES/glib20.mo
share/locale/hi/LC_MESSAGES/gtk20-properties.mo
share/locale/hi/LC_MESSAGES/gtk20.mo
share/locale/hr/LC_MESSAGES/atk10.mo
share/locale/hr/LC_MESSAGES/glib20.mo
share/locale/hr/LC_MESSAGES/gtk20-properties.mo
share/locale/hr/LC_MESSAGES/gtk20.mo
share/locale/hu/LC_MESSAGES/atk10.mo
share/locale/hu/LC_MESSAGES/glib20.mo
share/locale/hu/LC_MESSAGES/gtk20-properties.mo
share/locale/hu/LC_MESSAGES/gtk20.mo
share/locale/hy/LC_MESSAGES/gtk20-properties.mo
share/locale/hy/LC_MESSAGES/gtk20.mo
share/locale/ia/LC_MESSAGES/gtk20-properties.mo
share/locale/ia/LC_MESSAGES/gtk20.mo
share/locale/id/LC_MESSAGES/atk10.mo
share/locale/id/LC_MESSAGES/glib20.mo
share/locale/id/LC_MESSAGES/gtk20-properties.mo
share/locale/id/LC_MESSAGES/gtk20.mo
share/locale/is/LC_MESSAGES/atk10.mo
share/locale/is/LC_MESSAGES/glib20.mo
share/locale/is/LC_MESSAGES/gtk20-properties.mo
share/locale/is/LC_MESSAGES/gtk20.mo
share/locale/it/LC_MESSAGES/atk10.mo
share/locale/it/LC_MESSAGES/glib20.mo
share/locale/it/LC_MESSAGES/gtk20-properties.mo
share/locale/it/LC_MESSAGES/gtk20.mo
share/locale/ja/LC_MESSAGES/atk10.mo
share/locale/ja/LC_MESSAGES/glib20.mo
share/locale/ja/LC_MESSAGES/gtk20-properties.mo
share/locale/ja/LC_MESSAGES/gtk20.mo
share/locale/kn/LC_MESSAGES/atk10.mo
share/locale/ko/LC_MESSAGES/atk10.mo
share/locale/ko/LC_MESSAGES/glib20.mo
share/locale/ko/LC_MESSAGES/gtk20-properties.mo
share/locale/ko/LC_MESSAGES/gtk20.mo
share/locale/li/LC_MESSAGES/atk10.mo
share/locale/li/LC_MESSAGES/gtk20-properties.mo
share/locale/li/LC_MESSAGES/gtk20.mo
share/locale/lt/LC_MESSAGES/atk10.mo
share/locale/lt/LC_MESSAGES/glib20.mo
share/locale/lt/LC_MESSAGES/gtk20-properties.mo
share/locale/lt/LC_MESSAGES/gtk20.mo
share/locale/lv/LC_MESSAGES/atk10.mo
share/locale/lv/LC_MESSAGES/glib20.mo
share/locale/lv/LC_MESSAGES/gtk20-properties.mo
share/locale/lv/LC_MESSAGES/gtk20.mo
share/locale/mi/LC_MESSAGES/gtk20-properties.mo
share/locale/mi/LC_MESSAGES/gtk20.mo
share/locale/mk/LC_MESSAGES/atk10.mo
share/locale/mk/LC_MESSAGES/glib20.mo
share/locale/mk/LC_MESSAGES/gtk20-properties.mo
share/locale/mk/LC_MESSAGES/gtk20.mo
share/locale/ml/LC_MESSAGES/atk10.mo
share/locale/ml/LC_MESSAGES/glib20.mo
share/locale/ml/LC_MESSAGES/gtk20-properties.mo
share/locale/ml/LC_MESSAGES/gtk20.mo
share/locale/mn/LC_MESSAGES/atk10.mo
share/locale/mn/LC_MESSAGES/glib20.mo
share/locale/mn/LC_MESSAGES/gtk20-properties.mo
share/locale/mn/LC_MESSAGES/gtk20.mo
share/locale/mr/LC_MESSAGES/atk10.mo
share/locale/mr/LC_MESSAGES/gtk20-properties.mo
share/locale/mr/LC_MESSAGES/gtk20.mo
share/locale/ms/LC_MESSAGES/atk10.mo
share/locale/ms/LC_MESSAGES/glib20.mo
share/locale/ms/LC_MESSAGES/gtk20-properties.mo
share/locale/ms/LC_MESSAGES/gtk20.mo
share/locale/nb/LC_MESSAGES/atk10.mo
share/locale/nb/LC_MESSAGES/glib20.mo
share/locale/nb/LC_MESSAGES/gtk20-properties.mo
share/locale/nb/LC_MESSAGES/gtk20.mo
share/locale/ne/LC_MESSAGES/atk10.mo
share/locale/ne/LC_MESSAGES/glib20.mo
share/locale/ne/LC_MESSAGES/gtk20-properties.mo
share/locale/ne/LC_MESSAGES/gtk20.mo
share/locale/nl/LC_MESSAGES/atk10.mo
share/locale/nl/LC_MESSAGES/glib20.mo
share/locale/nl/LC_MESSAGES/gtk20-properties.mo
share/locale/nl/LC_MESSAGES/gtk20.mo
share/locale/nn/LC_MESSAGES/atk10.mo
share/locale/nn/LC_MESSAGES/glib20.mo
share/locale/nn/LC_MESSAGES/gtk20-properties.mo
share/locale/nn/LC_MESSAGES/gtk20.mo
share/locale/no/LC_MESSAGES/atk10.mo
share/locale/no/LC_MESSAGES/glib20.mo
share/locale/no/LC_MESSAGES/gtk20-properties.mo
share/locale/no/LC_MESSAGES/gtk20.mo
share/locale/nso/LC_MESSAGES/gtk20-properties.mo
share/locale/nso/LC_MESSAGES/gtk20.mo
share/locale/or/LC_MESSAGES/glib20.mo
share/locale/pa/LC_MESSAGES/atk10.mo
share/locale/pa/LC_MESSAGES/glib20.mo
share/locale/pa/LC_MESSAGES/gtk20-properties.mo
share/locale/pa/LC_MESSAGES/gtk20.mo
share/locale/pl/LC_MESSAGES/atk10.mo
share/locale/pl/LC_MESSAGES/glib20.mo
share/locale/pl/LC_MESSAGES/gtk20-properties.mo
share/locale/pl/LC_MESSAGES/gtk20.mo
share/locale/pt/LC_MESSAGES/atk10.mo
share/locale/pt/LC_MESSAGES/glib20.mo
share/locale/pt/LC_MESSAGES/gtk20-properties.mo
share/locale/pt/LC_MESSAGES/gtk20.mo
share/locale/pt_BR/LC_MESSAGES/atk10.mo
share/locale/pt_BR/LC_MESSAGES/glib20.mo
share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo
share/locale/pt_BR/LC_MESSAGES/gtk20.mo
share/locale/ro/LC_MESSAGES/atk10.mo
share/locale/ro/LC_MESSAGES/glib20.mo
share/locale/ro/LC_MESSAGES/gtk20-properties.mo
share/locale/ro/LC_MESSAGES/gtk20.mo
share/locale/ru/LC_MESSAGES/atk10.mo
share/locale/ru/LC_MESSAGES/glib20.mo
share/locale/ru/LC_MESSAGES/gtk20-properties.mo
share/locale/ru/LC_MESSAGES/gtk20.mo
share/locale/rw/LC_MESSAGES/atk10.mo
share/locale/rw/LC_MESSAGES/glib20.mo
share/locale/rw/LC_MESSAGES/gtk20-properties.mo
share/locale/rw/LC_MESSAGES/gtk20.mo
share/locale/sk/LC_MESSAGES/atk10.mo
share/locale/sk/LC_MESSAGES/glib20.mo
share/locale/sk/LC_MESSAGES/gtk20-properties.mo
share/locale/sk/LC_MESSAGES/gtk20.mo
share/locale/sl/LC_MESSAGES/atk10.mo
share/locale/sl/LC_MESSAGES/glib20.mo
share/locale/sl/LC_MESSAGES/gtk20-properties.mo
share/locale/sl/LC_MESSAGES/gtk20.mo
share/locale/sq/LC_MESSAGES/atk10.mo
share/locale/sq/LC_MESSAGES/glib20.mo
share/locale/sq/LC_MESSAGES/gtk20-properties.mo
share/locale/sq/LC_MESSAGES/gtk20.mo
share/locale/sr/LC_MESSAGES/atk10.mo
share/locale/sr/LC_MESSAGES/glib20.mo
share/locale/sr/LC_MESSAGES/gtk20-properties.mo
share/locale/sr/LC_MESSAGES/gtk20.mo
share/locale/sr@Latn/LC_MESSAGES/atk10.mo
share/locale/sr@Latn/LC_MESSAGES/glib20.mo
share/locale/sr@Latn/LC_MESSAGES/gtk20-properties.mo
share/locale/sr@Latn/LC_MESSAGES/gtk20.mo
share/locale/sr@ije/LC_MESSAGES/atk10.mo
share/locale/sr@ije/LC_MESSAGES/glib20.mo
share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo
share/locale/sr@ije/LC_MESSAGES/gtk20.mo
share/locale/sv/LC_MESSAGES/atk10.mo
share/locale/sv/LC_MESSAGES/glib20.mo
share/locale/sv/LC_MESSAGES/gtk20-properties.mo
share/locale/sv/LC_MESSAGES/gtk20.mo
share/locale/ta/LC_MESSAGES/atk10.mo
share/locale/ta/LC_MESSAGES/glib20.mo
share/locale/ta/LC_MESSAGES/gtk20-properties.mo
share/locale/ta/LC_MESSAGES/gtk20.mo
share/locale/te/LC_MESSAGES/glib20.mo
share/locale/th/LC_MESSAGES/atk10.mo
share/locale/th/LC_MESSAGES/glib20.mo
share/locale/th/LC_MESSAGES/gtk20-properties.mo
share/locale/th/LC_MESSAGES/gtk20.mo
share/locale/tk/LC_MESSAGES/atk10.mo
share/locale/tk/LC_MESSAGES/gtk20-properties.mo
share/locale/tk/LC_MESSAGES/gtk20.mo
share/locale/tl/LC_MESSAGES/glib20.mo
share/locale/tr/LC_MESSAGES/atk10.mo
share/locale/tr/LC_MESSAGES/glib20.mo
share/locale/tr/LC_MESSAGES/gtk20-properties.mo
share/locale/tr/LC_MESSAGES/gtk20.mo
share/locale/ug/LC_MESSAGES/atk10.mo
share/locale/uk/LC_MESSAGES/atk10.mo
share/locale/uk/LC_MESSAGES/glib20.mo
share/locale/uk/LC_MESSAGES/gtk20-properties.mo
share/locale/uk/LC_MESSAGES/gtk20.mo
share/locale/uz/LC_MESSAGES/gtk20-properties.mo
share/locale/uz/LC_MESSAGES/gtk20.mo
share/locale/uz@Latn/LC_MESSAGES/gtk20-properties.mo
share/locale/uz@Latn/LC_MESSAGES/gtk20.mo
share/locale/vi/LC_MESSAGES/atk10.mo
share/locale/vi/LC_MESSAGES/glib20.mo
share/locale/vi/LC_MESSAGES/gtk20-properties.mo
share/locale/vi/LC_MESSAGES/gtk20.mo
share/locale/wa/LC_MESSAGES/atk10.mo
share/locale/wa/LC_MESSAGES/glib20.mo
share/locale/wa/LC_MESSAGES/gtk20-properties.mo
share/locale/wa/LC_MESSAGES/gtk20.mo
share/locale/xh/LC_MESSAGES/atk10.mo
share/locale/xh/LC_MESSAGES/glib20.mo
share/locale/xh/LC_MESSAGES/gtk20-properties.mo
share/locale/xh/LC_MESSAGES/gtk20.mo
share/locale/yi/LC_MESSAGES/atk10.mo
share/locale/yi/LC_MESSAGES/glib20.mo
share/locale/yi/LC_MESSAGES/gtk20-properties.mo
share/locale/yi/LC_MESSAGES/gtk20.mo
share/locale/zh_CN/LC_MESSAGES/atk10.mo
share/locale/zh_CN/LC_MESSAGES/glib20.mo
share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo
share/locale/zh_CN/LC_MESSAGES/gtk20.mo
share/locale/zh_HK/LC_MESSAGES/glib20.mo
share/locale/zh_TW/LC_MESSAGES/atk10.mo
share/locale/zh_TW/LC_MESSAGES/glib20.mo
share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo
share/locale/zh_TW/LC_MESSAGES/gtk20.mo
share/themes/Default/gtk-2.0-key/gtkrc
share/themes/Default/gtk-2.0/gtkrc
share/themes/Emacs/gtk-2.0-key/gtkrc
share/themes/MS-Windows/gtk-2.0/gtkrc


Post-install


Open /etc/fonts/fonts.conf and change the Font directory list:


<!-- Font directory list -->

<dir>/cygdrive/C/Windows/Fonts</dir>

Also change the Font cache directory list:


<!-- Font cache directory list -->
<cachedir>/cygdrive/C/Windows/Temp</cachedir>

Run fc-cache which will scan all fonts in C:\Windows\Fonts.


CD "C:\Program Files\Common Files\Cygwin\bin"
fc-cache --force --system-only --verbose
fc-list Arial
fc-match Serif

Then, check gtkrc and pango-aliases. Also, set the environment variables %HOME% and %LANG% if necessary.

About This Blog

KBlog logo This blog seeks to share useful information on hottest movies available on the Internet. Thanks for visiting the blog and posting your comments.

© Contents by KBlog

© Blogger template by Emporium Digital 2008

Followers

Total Pageviews

icon
Powered By Blogger