Posts

Showing posts with the label Bengali

Ibus is not working in Ubuntu 14.10

After updating to Ubuntu 14.10 Bus was not working, I have followed the answer given in the question (first question is working) and now it is working. I am using Ibus avro for bengli, I had to reinstall Ibus avro once again. Answer is given here. Run a system update: sudo apt-get update; sudo apt-get upgrade. Remove ibus-pinyin and install ibus-libpinyin: sudo apt-get remove ibus-pinyin; sudo apt-get install ibus-libpinyin. Open a terminal and run im-config, then click "OK" and "YES", then select "ibus" and click "OK" twice. Reinstall ibus and ibus-gtk: sudo apt-get --reinstall install ibus; sudo apt-get --reinstall install ibus-gtk Reboot the system http://askubuntu.com/questions/551025/ubuntu-14-10-ibus-only-working-in-the-search-applicatoin Cheers APaul

installing language pack from command line

To install language from terminal you have to first know the code for the language (for example bn is code for Bengali and hi is the code for Hindi). Now first install the basic language packages for your desktop using the following code: sudo apt-get install language-pack-[cod] language-pack-gnome-[cod] language-pack-[cod]-base language-pack-gnome-[cod]-base It is not still done, because every other software may have its won language pack. To know which more package you have to install more you can use the following command check-language-support -l [cod] And then install those packages also. Example: Suppose you want to install language pack for Bengali, so first run the command sudo apt-get install language-pack-bn language-pack-gnome-bn language-pack-bn-base language-pack-gnome-bn-base Then run check-language-support -l bn And then from list install language packs for all applications. Source: http://askubuntu.com/questions/149876/how-can-i-install-one-language...

Installing ibus avro in linux mint 15

Image
Error message showed during ibus-avro installation Today I installed Linux Mint 15 in my desktop. While I was adding repo for ibus-avro-quantual with the following command sudo add-apt-repository "deb http://download.opensuse.org/repositories/home:/sarimkhan/xUbuntu_13.04/ ./" I was getting following error message. Cannot add PPA: 'No JSON object could be decoded'. I solved the problem by coping the entry of the repository from the source.list of the Ubuntu 13.04. The entries are listed here so just use the following command in linux mint to install ibus-avro-auantual. sudo gedt /etc/apt/source.list and the paste the following line at the end of the file. deb http://download.opensuse.org/repositories/home:/sarimkhan/xUbuntu_13.04/ ./ # deb-src http://download.opensuse.org/repositories/home:/sarimkhan/xUbuntu_13.04/ ./ Then save the file. Now update the database using sudo apt-get update command and then install the ibus-avro using sudo ap...

Installing ibus-avro in Ubuntu 12.10

Avro OmicronLab is one of the best software to write Bengali using phonetic key board. Previously avro was not available for ibus (now default input method for Ubuntu) in Linux, But recently they made it available for ibus which is known as ibus-avro . It was working fine with Ubuntu 12.04, but due to some dependency problem it has stopped working with Ubuntu 12.10. Also reinstalling from .deb file or form official repository is not possible because of the same dependency problem. When trying to install from deb file or from repo, the following error message I was getting: Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: ibus-avro : Depends: gir1.2-gjsdbus-1.0 but it is not instal...