Pages

How to add Debian software repository

Software repository does not add when we install Debian Linux from CD/DVD without Internet connection. You can't update the Debian Linux without software repository. But you can add software repository later. Find a repository near your area. Download from remote server take long time to download updates.

You can find Debian software repository near your area by visiting Debian Source List Generator

In my experience, repositories from India is slow and so I make use Debian repositories from Japan. 

Add repository address to Debian

Open Applications > Accessories > Terminal 
Open sources file and add repository address.

su
leafpad /etc/apt/sources.list

Copy paste the lines to the file. Here is the repository from Japan,

deb http://ftp.jp.debian.org/debian/ wheezy main
deb-src http://ftp.jp.debian.org/debian/ wheezy main

deb http://security.debian.org/ wheezy/updates main
deb-src http://security.debian.org/ wheezy/updates main

# wheezy-updates, previously known as 'volatile'
deb http://ftp.jp.debian.org/debian/ wheezy-updates main
deb-src http://ftp.jp.debian.org/debian/ wheezy-updates main

Save and close the file. Update the sources list.

apt-get update

Install Indian fonts

India is a country rich with regional languages. You can install regional language fonts in Ubuntu. Apply following command in a terminal,

sudo apt-get update
sudo apt-get install fonts-indic


This font package include Malayalam, Hindi, Tamil, Kannada etc.

Install Malayalam Fonts alone
Apply following command to install only Malayalam Fonts.

sudo apt-get install fonts-mlym

Beautiful Malayalam fonts available at Swathantra Malayalam Computing website.

Image courtesy: IIT Madras

How to uninstall Ubuntu One

Ubuntu One is a cloud storage service operated by Canonical Ltd. Canonical announced that they are going to shut down the service. Ubuntu One service is integrated with Ubuntu Operating system. You can remove Ubuntu One packages by apply following commands in a terminal.

sudo apt-get autoremove ubuntuone-client python-ubuntuone-control-panel

Clean system cache 
sudo apt-get autoremove
sudo apt-get autoclean

Remove Micromax MAD application

MAD application available with Micromax is a disturbance while dialing numbers. In normal case, Micromax does not allow to uninstall MAD application. You can uninstall MAD application after rooting your phone using King Root.

First of all install King Root application.

Open King User application and goto KingTool > Uninstall Tool 
Find MAD app from the list and uninstall.


How to root Android Jelly Bean and Kit Kat using King Root

King Root is an ideal tool to root your Android phone. Download King Root .apk file from this link and install.

Run King Root application.

Click on Root button. It take sometime for the rooting process.


A blue bar appear after finishing the process. Click on blue button.
Restart phone. 

Caution:  This application may not work with all phone brands. You can try various tools like Framaroot and KingoRoot. If these tools does not work with your phone model, search in google to get a solution. Most of the phones have already rooted and you can find detailed documentation with the help of google.

Linux DVD's for distribution

Ubuntu 14.04










Following Linux DVD's are available for distribution. Distribution charge is Rs. 150. It includes expenses of stationery items and postal charge.
Distribution Version and architecture Distribution charge
Ubuntu 12.04 & 14.04 (32&64 bit) Rs. 150
Linux Mint Quiana (MATE & Cinnamon) (32&64 bit) Rs. 150
Debian Wheezy (32&64 bit) Rs. 150
Xubuntu 12.04 & 14.04 (32&64 bit) Rs. 150







Service Area: Inside India Only.
Mode of Delivery: Speed Post (India Post)
Mode of payment Deposit Rs. 150 in the following bank account.
Account Owner: Vimal Kumar V.
Bank: State Bank of India
Account number: 30021430980
Branch name: Karyavattom, Technopark
Branch Code: SBIN0007617
Click here to fill details of bank transaction after depositing the money. Mention in the message about which Linux distribution you want.

Installation of Moodle on Ubuntu 14.04

Install Apache/MySQL/PHP

sudo apt-get update
sudo apt-get install apache2 mysql-client mysql-server php5

sudo apt-get install graphviz aspell php5-pspell php5-curl php5-gd php5-intl php5-mysql php5-xmlrpc php5-ldap
sudo apt-get install git-core

Restart Apache
sudo service apache2 restart

Download Moodle
cd /opt
sudo git clone git://git.moodle.org/moodle.git
cd moodle
sudo git branch -a
sudo git branch --track MOODLE_27_STABLE origin/MOODLE_27_STABLE
sudo git checkout MOODLE_27_STABLE


Copy local repository to /var/www/html/
sudo cp -R /opt/moodle /var/www/html/
sudo mkdir /var/www/moodledata
sudo chown -R www-data /var/www/moodledata
sudo chmod -R 777 /var/www/moodledata
sudo chmod -R 0755 /var/www/html/moodle


Setup MySQL Server
sudo gedit /etc/mysql/my.cnf
Add following lines under Basic settings section.

default-storage-engine = innodb

Save and close the file.

Restart MySQL
sudo service mysql restart

Create the Moodle MySQL User

mysql -u root -p

mysql>

CREATE DATABASE moodle DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;

mysql>

GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON moodle.* TO moodle@localhost IDENTIFIED BY 'moodle';

mysql>

quit;
Complete Setup
sudo chmod -R 777 /var/www/html/moodle
Open your browser and go to http://127.0.1.1/moodle
After you have ran the installer and you have moodle setup, you NEED to revert permissions so that it is no longer writable using the below command.

sudo chmod -R 0755 /var/www/html/moodle

Reference: Moodle Documentation

Add Google Input Tools extension on Chrome browser

Google Input Tool is helpful to type various languages without any hassle. Google Input Tool now has Chrome browser extension. User can type regional languages without leaving Chrome browser. You can add Google Input tools extension from this link,

The Google Input Tools extension provides virtual keyboards for over 90 languages, full IMEs or direct transliteration for over 30 different scripts, and handwriting input for over 40 languages.

Install Google Chrome
Download Google Chrome from the official website. Download .deb package for Ubuntu users.

Install Input Tools extension
Go to Google Chrome > Settings > More tools > Extensions > Get More extensions
Search, find and install Google Input Tools extension.

How to enable your regional language
Google Input Tools extension appear on browser page.


Click on the Google Input Tools extension button and select Extension Options.
Select your languages and close the window.

You can type your language in any browser based applications (e.g. Facebook).

Install LXQt on Ubuntu 14.04

LXQt is the Qt port and the upcoming version of LXDE, the Lightweight Desktop Environment. It is the product of the merge between the LXDE-Qt and the Razor-qt projects: A lightweight, modular, blazing-fast and user-friendly desktop environment.

Installation
Apply following commands in a terminal,

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:lubuntu-dev/lubuntu-daily
sudo add-apt-repository ppa:gilir/q-project
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install lxqt-metapackage lxqt-panel


Logout from desktop, change desktop session to LXQt Desktop.

Home page of LXQt: http://lxqt.org

Update Drupal using Drush

Drush is a command line shell and scripting interface for Druapl. Updating Drupal to latest version is easy with Drush.

sudo su 
apt-get install drush

Check new Drupal updates available. Enter inside the Drupal installation place/folder and apply following commands.
cd /usr/share/drupal7
drush up -n | grep available
drush up

You can find more Drush commands from following link,
http://drush.ws/

Drupal installation
https://help.ubuntu.com/community/Drupal

How to know PHP version number

Open Applications > Accessories > Terminal and apply following command,

php -i


Restore/Reset Firefox browser

Suppose something happened your Firefox browser and don't give performance like before. You can Restore the settings with Firefox. This process will backup and retain your bookmarks, passwords and browsing history.

Firefox > Help > Troubleshooting information