Skip to main content

Ubuntu 9.10: Installing and Working with Malayalalam fonts

Earlier, as a beginner I felt so difficult to work with Linux. Especially in areas like installing a new software, mounting NTFS partitions, installing my CDMA modem driver etc. But Linux is improving day by day. Newer versions of Ubuntu detects wide range of modems automatically! One can easily mount and manage NTFS files by clicking on your windows drives. Installing Malayalam font swanalekha is also a simple task even though the process contain a set of commands. All that you need to do is to create a shell script (Shell script is a script file that can be used in Unix environments to run a set of commands) and store these commands to that file. Save the script. Connect to the Internet and run it as root.


The steps for installing and using swanalekha phonetic keyboard are as follows:-

Step 1. Open Text Editor (Applications-> Accessories->Text Editor)
Step 2. Copy following commands to it:-
===================
apt-get install language-support-ml language-pack-ml language-pack-gnome-ml language-pack-gnome-ml-base language-pack-kde-ml language-pack-kde-ml-base

apt-get install scim scim-gtk2-immodule m17n-contrib scim-m17n

wget http://download.savannah.gnu.org/releases/smc/Swanalekha/scim-ml-phonetic_0.1.3-2_all.deb
dpkg -i scim-ml-phonetic_0.1.3-2_all.deb

wget http://ftp.jp.debian.org/debian/pool/main/t/ttf-indic-fonts/ttf-malayalam-fonts_0.5.4_all.deb
dpkg -i ttf-malayalam-fonts_0.5.4_all.deb

touch /etc/X11/Xsession.d/74custom-scim_startup
chmod 646 /etc/X11/Xsession.d/74custom-scim_startup
echo 'export XMODIFIERS="@im=SCIM"' >> /etc/X11/Xsession.d/74custom-scim_startup
echo 'export GTK_IM_MODULE="scim"' >> /etc/X11/Xsession.d/74custom-scim_startup
echo 'export XIM_PROGRAM="scim -d"' >> /etc/X11/Xsession.d/74custom-scim_startup
echo 'export QT_IM_MODULE="scim"' >> /etc/X11/Xsession.d/74custom-scim_startup
chmod 644 /etc/X11/Xsession.d/74custom-scim_startup

====================

Step 3: Save the text file as install-ml.sh to desktop/ (you can give any name but dont forget to use '.sh' extension)

Step 4: Open Terminal. (Applications -> Accessories -> Terminal)

Step 5: Type-> sudo bash

Step 6: Go to Desktop location (Eg. cd Desktop)

Step 7: Type-> sh install-ml.sh (name of the shell script to be executed)

Step8;: After completion Reboot (or use Ctrl+Alt+Back space).

SCIM tool will be enabled and you can select malayalm swanaslekha phonetic keyboard layout for typing malayalm letters.

Enjoy Linux.....hoorey

Comments

Popular posts from this blog

IPAD and Other Mobile Device Emulators

At present, Each Mobile device has got its own emulators. Some useful IPAD emulators that help application developers to build device specific applications: A List is given below: AIR IPAD Pre requisite : Adobe AIR Remark:  Working smoothly.. Some minor problems have been discovered like low browsing speed, screen flickering etc. JQuery mobile plugin is not working It is still in its ALFA stage Link : http://bit.ly/dtFX1S To test your web app just copy it on to the Application root folder. iOS SDK Current Version : 4 http://developer.apple.com/ipad/sdk/ iOS SDK comes with builtin emulators, this helps developers to test their application before implementation ONLINE EMULATORS Some useful online emulators IPAD Peek:   http://ipadpeek.com/ http://www.ipad-emulator.com/ IPhone Tester:  http://iphonetester.com/ Opera Mini - Demo:  http://www.opera.com/mobile/demo/ T-Mobile Emulator:  http://tmobile.modeaondemand.com/htc/g1/ ...

Configuring Sublime to run in command line for Mac PC

On March 2017, I migrated to 2016 model Macbook Pro and now I am on my way to configure all the web development tools which was using before on Linux PC. Installation of most of the tools are pretty straight forward compared to Linux. On most of the occasions we don't even need to run any commands during installation process. By the way, my mac os version is Sierra (10.12)  I installed latest version of Sublime Text(version 3, build #3126). When I started to do actual development, I encountered this issue. From terminal I tried to run " subl . " . But I received an error saying command not found .   A one line terminal command could resolve this issue: ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl Here we are linking /usr/local/bin/subl with sublime executable command. So later when we run subl . it will open Sublime Text IDE from current working directory. If you again encounter any issue, then you may nee...

Installing AWS CLI on Mac

Recently I started exploring Amazon Web Services. Day by day I am becoming a big fan of cloud technologies. To start with, in this article I am posting a few steps which I did to setup Amazon Command Line Interface (AWS CLI). AWS CLI is a unified tool for managing  different AWS Services. With one tool we can control and manage services given by amazon. To explore more on controlling services through CLI, you can refer to you can refer to the documentation . In this article I'm gonna describe you the steps I've done to configure AWS CLI. To install, we need to have 'pip' a package manager for python. Installation Requirement For installing AWS CLI we need to have the following: Python 2 version 2.6.5+ or Python 3 version 3.3+. Windows, Linux, MAC or Unix. In my case I'm only configuring for MAC PC. Installing pip Download get-pip.py from this location.  Once you download get-pip.py, you need to run the script with following command. python get-pip.py. ...