• Web sitemizin içeriğine ve tüm hizmetlerimize erişim sağlamak için Web sitemize kayıt olmalı ya da giriş yapmalısınız. Web sitemize üye olmak tamamen ücretsizdir.
  • Sohbetokey.com ile canlı okey oynamaya ne dersin? Hem sohbet et, hem mobil okey oyna!
  • Soru mu? Sorun mu? ''Bir Sorum Var?'' sistemimiz aktiftir. Paylaşın beraber çözüm üretelim.

Debian Tabanlı GNU/Linux Dağıtımlarında 'X-KeyboardConfig' Modülünün Yüklenmesi

TRWE_2012

Süper Moderatör
Üyelik Tarihi
2 Haz 2020
Konular
3,095
Mesajlar
5,896
MFC Puanı
20,930
Merhabalar

X-Klavye, sizin X-Pencere de iken, Klavye dili ile donanımsal klavye'yi bütünleştirir.Böylece X-Window ortamında Türkçe Karakterler kullanılabilir olur.

1.Adım:

Aşağıda ekran görüntüsü verilen siteden gerekli tar.bz2 kaynak kodu arşivini indirin ve dizine çıkartın.

r0kYNu.png

Web Linki :
Kod:
http://www.linuxfromscratch.org/blfs/view/svn/x/xkeyboard-config.html

2.Adım:

Dizinin içinde root kullanıcı haklarına sahip bir terminal açın.

Bundan sonra ki KOD ÖRNEĞİ olarak gösterilecek sizlere

X-Window Keybord İnstall (Kaynak Koddan Kurma)

A.KAYNAK DOSYALARIN SİSTEM'E GÖRE OLUŞTURULMASI

Kod:
root@notebookpc:/home/ayamutura/İndirilenler/xkeyboard-config-2.31# ./configure $XORG_CONFIG --with-xkb-rules-symlink=xorg
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for xsltproc... /usr/bin/xsltproc
checking for a sed that does not truncate output... (cached) /bin/sed
checking for a Python interpreter with version >= 3.0... python3
checking for python3... /usr/bin/python3
checking for python3 version... 3.6
checking for python3 platform... linux
checking for python3 script directory... ${prefix}/lib/python3.6/site-packages
checking for python3 extension module directory... ${exec_prefix}/lib/python3.6/site-packages
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DEPS... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... none
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for CFPreferencesCopyAppValue... yes
checking for CFLocaleCopyCurrent... yes
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating po/Makefile.in
config.status: creating Makefile
config.status: creating compat/Makefile
config.status: creating geometry/Makefile
config.status: creating keycodes/Makefile
config.status: creating rules/Makefile
config.status: creating symbols/Makefile
config.status: creating types/Makefile
config.status: creating xkeyboard-config.pc
config.status: creating docs/Makefile
config.status: creating man/Makefile
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing depfiles commands
config.status: executing mkdir commands
***********************************************************
  xkeyboard-config is configured with the following parameters:
    XKB base directory: ${datarootdir}/X11/xkb
    Symbolic link(s) to legacy rules: xorg
    Compatibility rules are included
***********************************************************

Burada önemli olan satırlar

checking for DEPS... yes .....>>>>>XORG'un Sistemdeki bağımlılıkları kontrol ediyor.Eğer no olsaydı işlem hata vererek yarıda kesilecekti

checking whether make supports the include directive... yes (GNU style)........>>>Kaynak Kod Bütünlüğünü doğruladı.
checking that generated files are newer than configure... done >>>>>>.config dosyasının yazımına izin verdi
configure: creating ./config.status .....................>>>>>> Derleme için dosya oluşturuldu.

B.DERLEME OLAYI

Kod:
root@notebookpc:/home/ayamutura/İndirilenler/xkeyboard-config-2.31# make
Making all in compat
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/compat'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/compat'
Making all in geometry
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/geometry'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/geometry'
Making all in keycodes
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/keycodes'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/keycodes'
Making all in po
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/po'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/po'
Making all in rules
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
make  all-am
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
./merge.py --srcdir=. --builddir=. 0000-hdr.part 0001-lists.part 0002-base.lists.part 0004-base.m_k.part 0005-l1_k.part 0006-l_k.part 0007-o_k.part 0008-ml_g.part 0009-m_g.part 0011-mlv_s.part 0013-ml_s.part 0015-ml1_s.part 0018-ml2_s.part 0020-ml3_s.part 0022-ml4_s.part 0026-base.m_s.part 0027-base.ml_s1.part 0033-ml_c.part 0034-ml1_c.part 0035-m_t.part 0036-lo_s.part 0037-l1o_s.part 0038-l2o_s.part 0039-l3o_s.part 0040-l4o_s.part 0042-o_s.part 0043-o_c.part 0044-o_t.part compat/0012-ml_s.part compat/0014-ml1_s.part compat/0017-ml2_s.part compat/0019-ml3_s.part compat/0021-ml4_s.part compat/0010-mlv_s.part compat/0016-ml1v1_s.part compat/0023-ml2v2_s.part compat/0024-ml3v3_s.part compat/0025-ml4v4_s.part  compat/0003-lists.part compat/0028-lv_c.part compat/0029-l1v1_c.part compat/0030-l2v2_c.part compat/0031-l3v3_c.part compat/0032-l4v4_c.part compat/0041-o_s.part compat/0041-o_s.part compat/0028-lv_c.part compat/0029-l1v1_c.part compat/0030-l2v2_c.part compat/0031-l3v3_c.part compat/0032-l4v4_c.part  > base
./merge.py --srcdir=. --builddir=. 0000-hdr.part 0001-lists.part 0002-evdev.lists.part 0004-evdev.m_k.part 0005-l1_k.part 0006-l_k.part 0007-o_k.part 0008-ml_g.part 0009-m_g.part 0011-mlv_s.part 0013-ml_s.part 0015-ml1_s.part 0018-ml2_s.part 0020-ml3_s.part 0022-ml4_s.part 0026-evdev.m_s.part 0027-evdev.ml_s1.part 0033-ml_c.part 0034-ml1_c.part 0035-m_t.part 0036-lo_s.part 0037-l1o_s.part 0038-l2o_s.part 0039-l3o_s.part 0040-l4o_s.part 0042-o_s.part 0043-o_c.part 0044-o_t.part compat/0012-ml_s.part compat/0014-ml1_s.part compat/0017-ml2_s.part compat/0019-ml3_s.part compat/0021-ml4_s.part compat/0010-mlv_s.part compat/0016-ml1v1_s.part compat/0023-ml2v2_s.part compat/0024-ml3v3_s.part compat/0025-ml4v4_s.part  compat/0003-lists.part compat/0028-lv_c.part compat/0029-l1v1_c.part compat/0030-l2v2_c.part compat/0031-l3v3_c.part compat/0032-l4v4_c.part compat/0041-o_s.part compat/0041-o_s.part compat/0028-lv_c.part compat/0029-l1v1_c.part compat/0030-l2v2_c.part compat/0031-l3v3_c.part compat/0032-l4v4_c.part  > evdev
perl ./xml2lst.pl < base.xml > base.lst
perl ./xml2lst.pl < evdev.xml > evdev.lst
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
Making all in symbols
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/symbols'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/symbols'
Making all in types
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/types'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/types'
Making all in docs
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/docs'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/docs'
Making all in man
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/man'
/usr/bin/xsltproc -nonet ./man.xsl ../rules/evdev.xml > xkeyboard-config.man
/bin/sed -e 's|@\(\<[a-z_]*\>\)@|__\1__|g' < xkeyboard-config.man | /bin/sed -e 's|__vendorversion__|"xkeyboard-config 2.31" "X Version 11"|'     -e 's|__xorgversion__|"xkeyboard-config 2.31" "X Version 11"|'     -e 's|__xservername__|Xorg|g'     -e 's|__xconfigfile__|xorg.conf|g'     -e 's|__projectroot__|/usr/local|g'     -e 's|__apploaddir__||g'     -e 's|__appmansuffix__|1|g'     -e 's|__drivermansuffix__|4|g'     -e 's|__adminmansuffix__|8|g'     -e 's|__libmansuffix__|3|g'     -e 's|__miscmansuffix__|7|g'     -e 's|__filemansuffix__|5|g' -e 's|__xkb_base__|/usr/local/share/X11/xkb|g' > xkeyboard-config.7
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/man'
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31'

C.SİSTEM KURMA AŞAMASI:

Kod:
root@notebookpc:/home/ayamutura/İndirilenler/xkeyboard-config-2.31# make install
Making install in compat
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/compat'
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/compat'
make[2]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/X11/xkb/compat'
 /usr/bin/install -c -m 644 accessx basic caps complete iso9995 japan ledcaps ledcompose lednum ledscroll level5 misc mousekeys olpc pc pc98 xfree86 xtest README '/usr/local/share/X11/xkb/compat'
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/compat'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/compat'
Making install in geometry
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/geometry'
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/geometry'
make[2]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/X11/xkb/geometry/digital_vndr'
 /usr/bin/install -c -m 644 digital_vndr/lk digital_vndr/pc digital_vndr/unix '/usr/local/share/X11/xkb/geometry/digital_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/geometry'
 /usr/bin/install -c -m 644 amiga ataritt chicony dell everex fujitsu hhk hp keytronic kinesis macintosh microsoft nec nokia northgate pc sanwa sony thinkpad sun teck steelseries typematrix winbook README '/usr/local/share/X11/xkb/geometry'
 /bin/mkdir -p '/usr/local/share/X11/xkb/geometry/sgi_vndr'
 /usr/bin/install -c -m 644 sgi_vndr/indigo sgi_vndr/indy sgi_vndr/O2 '/usr/local/share/X11/xkb/geometry/sgi_vndr'
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/geometry'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/geometry'
Making install in keycodes
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/keycodes'
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/keycodes'
make[2]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/X11/xkb/keycodes/digital_vndr'
 /usr/bin/install -c -m 644 digital_vndr/lk digital_vndr/pc '/usr/local/share/X11/xkb/keycodes/digital_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/keycodes'
 /usr/bin/install -c -m 644 aliases amiga ataritt empty evdev fujitsu hp ibm jolla macintosh olpc sony sun xfree86 xfree98 README '/usr/local/share/X11/xkb/keycodes'
 /bin/mkdir -p '/usr/local/share/X11/xkb/keycodes/sgi_vndr'
 /usr/bin/install -c -m 644 sgi_vndr/indigo sgi_vndr/indy sgi_vndr/iris '/usr/local/share/X11/xkb/keycodes/sgi_vndr'
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/keycodes'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/keycodes'
Making install in po
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/po'
installing af.gmo as /usr/local/share/locale/af/LC_MESSAGES/xkeyboard-config.mo
installing az.gmo as /usr/local/share/locale/az/LC_MESSAGES/xkeyboard-config.mo
installing bg.gmo as /usr/local/share/locale/bg/LC_MESSAGES/xkeyboard-config.mo
installing ca.gmo as /usr/local/share/locale/ca/LC_MESSAGES/xkeyboard-config.mo
installing crh.gmo as /usr/local/share/locale/crh/LC_MESSAGES/xkeyboard-config.mo
installing cs.gmo as /usr/local/share/locale/cs/LC_MESSAGES/xkeyboard-config.mo
installing da.gmo as /usr/local/share/locale/da/LC_MESSAGES/xkeyboard-config.mo
installing de.gmo as /usr/local/share/locale/de/LC_MESSAGES/xkeyboard-config.mo
installing el.gmo as /usr/local/share/locale/el/LC_MESSAGES/xkeyboard-config.mo
installing en_GB.gmo as /usr/local/share/locale/en_GB/LC_MESSAGES/xkeyboard-config.mo
installing eo.gmo as /usr/local/share/locale/eo/LC_MESSAGES/xkeyboard-config.mo
installing es.gmo as /usr/local/share/locale/es/LC_MESSAGES/xkeyboard-config.mo
installing fi.gmo as /usr/local/share/locale/fi/LC_MESSAGES/xkeyboard-config.mo
installing fr.gmo as /usr/local/share/locale/fr/LC_MESSAGES/xkeyboard-config.mo
installing fur.gmo as /usr/local/share/locale/fur/LC_MESSAGES/xkeyboard-config.mo
installing gl.gmo as /usr/local/share/locale/gl/LC_MESSAGES/xkeyboard-config.mo
installing hr.gmo as /usr/local/share/locale/hr/LC_MESSAGES/xkeyboard-config.mo
installing hu.gmo as /usr/local/share/locale/hu/LC_MESSAGES/xkeyboard-config.mo
installing id.gmo as /usr/local/share/locale/id/LC_MESSAGES/xkeyboard-config.mo
installing it.gmo as /usr/local/share/locale/it/LC_MESSAGES/xkeyboard-config.mo
installing ja.gmo as /usr/local/share/locale/ja/LC_MESSAGES/xkeyboard-config.mo
installing ka.gmo as /usr/local/share/locale/ka/LC_MESSAGES/xkeyboard-config.mo
installing ko.gmo as /usr/local/share/locale/ko/LC_MESSAGES/xkeyboard-config.mo
installing ky.gmo as /usr/local/share/locale/ky/LC_MESSAGES/xkeyboard-config.mo
installing lt.gmo as /usr/local/share/locale/lt/LC_MESSAGES/xkeyboard-config.mo
installing nb.gmo as /usr/local/share/locale/nb/LC_MESSAGES/xkeyboard-config.mo
installing nl.gmo as /usr/local/share/locale/nl/LC_MESSAGES/xkeyboard-config.mo
installing pl.gmo as /usr/local/share/locale/pl/LC_MESSAGES/xkeyboard-config.mo
installing pt.gmo as /usr/local/share/locale/pt/LC_MESSAGES/xkeyboard-config.mo
installing pt_BR.gmo as /usr/local/share/locale/pt_BR/LC_MESSAGES/xkeyboard-config.mo
installing ro.gmo as /usr/local/share/locale/ro/LC_MESSAGES/xkeyboard-config.mo
installing ru.gmo as /usr/local/share/locale/ru/LC_MESSAGES/xkeyboard-config.mo
installing rw.gmo as /usr/local/share/locale/rw/LC_MESSAGES/xkeyboard-config.mo
installing sk.gmo as /usr/local/share/locale/sk/LC_MESSAGES/xkeyboard-config.mo
installing sl.gmo as /usr/local/share/locale/sl/LC_MESSAGES/xkeyboard-config.mo
installing sq.gmo as /usr/local/share/locale/sq/LC_MESSAGES/xkeyboard-config.mo
installing sr.gmo as /usr/local/share/locale/sr/LC_MESSAGES/xkeyboard-config.mo
installing sv.gmo as /usr/local/share/locale/sv/LC_MESSAGES/xkeyboard-config.mo
installing tr.gmo as /usr/local/share/locale/tr/LC_MESSAGES/xkeyboard-config.mo
installing uk.gmo as /usr/local/share/locale/uk/LC_MESSAGES/xkeyboard-config.mo
installing vi.gmo as /usr/local/share/locale/vi/LC_MESSAGES/xkeyboard-config.mo
installing zh_CN.gmo as /usr/local/share/locale/zh_CN/LC_MESSAGES/xkeyboard-config.mo
installing zh_TW.gmo as /usr/local/share/locale/zh_TW/LC_MESSAGES/xkeyboard-config.mo
if test "xkeyboard-config" = "gettext-tools"; then \
  /bin/mkdir -p /usr/local/share/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /usr/bin/install -c -m 644 ./$file \
            /usr/local/share/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /usr/local/share/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/po'
Making install in rules
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
make  install-am
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
make[3]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
make[3]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/X11/xkb/rules'
 /usr/bin/install -c -m 644 base evdev xfree98 base.lst evdev.lst xkb.dtd README '/usr/local/share/X11/xkb/rules'
 /bin/mkdir -p '/usr/local/share/X11/xkb/rules'
 /usr/bin/install -c -m 644 base.xml evdev.xml base.extras.xml evdev.extras.xml '/usr/local/share/X11/xkb/rules'
make  install-data-hook
make[4]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
for file in `echo "xorg" | sed 's/,/ /'` ; do \
    extra_rules_file=$file ; \
    extra_dir_file=$extra_rules_file.xml ; \
    extra_lst_file=$extra_rules_file.lst ; \
    ln -sf base     /usr/local/share/X11/xkb/rules/$extra_rules_file ; \
    ln -sf base.lst /usr/local/share/X11/xkb/rules/$extra_lst_file ; \
    ln -sf base.xml /usr/local/share/X11/xkb/rules/$extra_dir_file ; \
done
make[4]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
make[3]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/rules'
Making install in symbols
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/symbols'
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/symbols'
make[2]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/digital_vndr'
 /usr/bin/install -c -m 644 digital_vndr/lk digital_vndr/pc digital_vndr/us digital_vndr/vt '/usr/local/share/X11/xkb/symbols/digital_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/fujitsu_vndr'
 /usr/bin/install -c -m 644 fujitsu_vndr/jp fujitsu_vndr/us '/usr/local/share/X11/xkb/symbols/fujitsu_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/hp_vndr'
 /usr/bin/install -c -m 644 hp_vndr/us '/usr/local/share/X11/xkb/symbols/hp_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/jolla_vndr'
 /usr/bin/install -c -m 644 jolla_vndr/sbj '/usr/local/share/X11/xkb/symbols/jolla_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/macintosh_vndr'
 /usr/bin/install -c -m 644 macintosh_vndr/apple macintosh_vndr/ch macintosh_vndr/de macintosh_vndr/dk macintosh_vndr/fi macintosh_vndr/fr macintosh_vndr/gb macintosh_vndr/is macintosh_vndr/it macintosh_vndr/jp macintosh_vndr/latam macintosh_vndr/nl macintosh_vndr/no macintosh_vndr/pt macintosh_vndr/se macintosh_vndr/us '/usr/local/share/X11/xkb/symbols/macintosh_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/nec_vndr'
 /usr/bin/install -c -m 644 nec_vndr/jp '/usr/local/share/X11/xkb/symbols/nec_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/nokia_vndr'
 /usr/bin/install -c -m 644 nokia_vndr/rx-44 nokia_vndr/rx-51 nokia_vndr/su-8w '/usr/local/share/X11/xkb/symbols/nokia_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/sgi_vndr'
 /usr/bin/install -c -m 644 sgi_vndr/jp '/usr/local/share/X11/xkb/symbols/sgi_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/sharp_vndr'
 /usr/bin/install -c -m 644 sharp_vndr/sl-c3x00 sharp_vndr/ws003sh sharp_vndr/ws007sh sharp_vndr/ws011sh sharp_vndr/ws020sh '/usr/local/share/X11/xkb/symbols/sharp_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/sony_vndr'
 /usr/bin/install -c -m 644 sony_vndr/us '/usr/local/share/X11/xkb/symbols/sony_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/sun_vndr'
 /usr/bin/install -c -m 644 sun_vndr/ara sun_vndr/be sun_vndr/br sun_vndr/ca sun_vndr/ch sun_vndr/cz sun_vndr/de sun_vndr/dk sun_vndr/ee sun_vndr/es sun_vndr/fi sun_vndr/fr sun_vndr/gb sun_vndr/gr sun_vndr/it sun_vndr/jp sun_vndr/kr sun_vndr/lt sun_vndr/lv sun_vndr/nl sun_vndr/no sun_vndr/pl sun_vndr/pt sun_vndr/ro sun_vndr/ru sun_vndr/se sun_vndr/sk sun_vndr/solaris sun_vndr/tr sun_vndr/tw sun_vndr/ua sun_vndr/us '/usr/local/share/X11/xkb/symbols/sun_vndr'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols'
 /usr/bin/install -c -m 644 af al am apl ara at au az ba bd be bg br brai bt bw by ca cd ch cm cn cz de dk dz ee eg es et epo eu fi fo fr gb ge gh gn gr '/usr/local/share/X11/xkb/symbols'
 /usr/bin/install -c -m 644 hr hu id ie il in iq ir is it jp jv ke kg kh kr kz la latam latin lk lt lv ma mao md me mk ml mm mn mt mv my ng nl no np parens pc '/usr/local/share/X11/xkb/symbols'
 /usr/bin/install -c -m 644 ph pk pl pt ro rs ru se si sk sn sy th terminate tg tj tm tr trans tw tz ua us uz vn za altwin capslock compose ctrl empty eurosign rupeesign group inet keypad kpdl level2 level3 level5 '/usr/local/share/X11/xkb/symbols'
 /usr/bin/install -c -m 644 nbsp olpc shift srvr_ctrl typo '/usr/local/share/X11/xkb/symbols'
 /bin/mkdir -p '/usr/local/share/X11/xkb/symbols/xfree68_vndr'
 /usr/bin/install -c -m 644 xfree68_vndr/amiga xfree68_vndr/ataritt '/usr/local/share/X11/xkb/symbols/xfree68_vndr'
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/symbols'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/symbols'
Making install in types
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/types'
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/types'
make[2]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/X11/xkb/types'
 /usr/bin/install -c -m 644 basic cancel caps complete default extra iso9995 level5 mousekeys nokia numpad pc README '/usr/local/share/X11/xkb/types'
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/types'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/types'
Making install in docs
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/docs'
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/docs'
make[2]: Nothing to be done for 'install-exec-am'.
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/docs'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/docs'
Making install in man
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/man'
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/man'
make[2]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/man/man7'
 /usr/bin/install -c -m 644 xkeyboard-config.7 '/usr/local/share/man/man7'
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/man'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31/man'
make[1]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31'
make[2]: Entering directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31'
make[2]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/pkgconfig'
 /usr/bin/install -c -m 644 xkeyboard-config.pc '/usr/local/share/pkgconfig'
make[2]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31'
make[1]: Leaving directory '/home/ayamutura/İndirilenler/xkeyboard-config-2.31'
root@notebookpc:/home/ayamutura/İndirilenler/xkeyboard-config-2.31#

D.Sistem Re-Start
 
Üst