Wednesday, May 22, 2013

How to upgrade to Koha 3.12 in Koha Live DVD?

New version of Koha released with bundle of new features.
You can visit the release notes and check new features available with.

http://koha-community.org/koha-3-12-0-released/#more-4403

You can also download illustrated release notes,
http://koha-community.org/files/2013/05/Koha-3.12-release-notes.pdf

If you are Koha Live DVD user, you can easily upgrade to 3.12 version.

http://sourceforge.net/projects/kohalivedvd/

Apply the following command in Applications > Accessories > Terminal

sudo su    [enter the Linux password when it ask, check read me file to find password]
apt-get update
apt-get install koha-common


After upgrading you have to install additional perl modules missing,

Open Koha staff interface and check,  About Koha > Per Modules

You can find missing perl modules highlighted in different colors,

How to install missing perl modules,
Apply following commands in a terminal,

sudo su
sudo cpan


Here is an example to install a perl module called Data::Pagination

install Data::Pagination

The same way, you can install other missing Perl modules.
Now your Koha is upgraded to Koha 3.12 and ready to use.

Thursday, May 2, 2013

How to safeguard the panels of Xubuntu Linux for public use computers

Remove and modify the items in panels of Linux desktop is a common problem in Internet cafe's and libraries. A solution is available with Xubuntu Linux to prevent removing the items from desktop panel accidentally by users. 
Follow the steps below,

1. Configure the panels before start the process. Add/remove/edit items from panels.
2. Apply the following command,

sudo cp /home/vimal/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/

3. Apply the following command to edit the file.

sudo leafpad /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml

4. Find following line at the top of the file.

<channel name="xfce4-panel" version="1.0">

Insert # symbol at the start of the line.

5. Copy the following line and paste after the line above mentioned line.

<channel name="xfce4-panel" version="1.0" locked="*" unlocked="root">


 
Save the file. 
 

6. Restart your system.

Information courtesy:  
https://sites.google.com/site/easylinuxtipsproject/xfce#TOC-Safeguard-the-panels-kiosk-mode- 

Sunday, March 31, 2013

How to recover gnome-shell

If you found that your gnome-shell task bar missing?
And your desktop seems plain and not able to access applications menu.
You can recover your lost desktop. Follow the steps.

Apply the key combinations, Ctrl + Alt + T 
A terminal will open. Enter the following commands,

sudo su
gnome-shell --replace

You can see that, your desktop panels and menus appear again

Friday, March 1, 2013

Change grahical Ubuntu boot splash into text mode

gedit /etc/default/grub

Find the word "quiet splash".
Remove the word "quiet splash".

Save the file.

Update the grub.

update-grub

Wednesday, January 30, 2013

How to create Ubuntu Live CD/DVD using Remastersys

This tutorial is for creating a Live CD/DVD based on Ubuntu 12.04. You can also try latest version of Ubuntu Live CD/DVD by using the following instructions.

Step 1
Install Ubuntu 12.04 in a PC or using a Virtual Box application.
Upgrade the system by installing latest packages, apply the following commands,

sudo su
apt-get update
apt-get upgrade

Install the additional applications (e.g. Gimp) for your Live CD/DVD.

Step 2
Remove the uncessary packages using bleachbit. Otherwise the size of Live DVD will be heavy. Install bleachbit using the following command,

apt-get install bleachbit

Open Bleachbit from Applications > System Tools



To use bleachbit, see the documentation here.

Step 3
Installation of Remastersys in Ubuntu 12.04. Apply the following commands.

sudo su
wget -O - http://www.remastersys.com/ubuntu/remastersys.gpg.key | apt-key add -

gedit /etc/apt/sources.list


Add the following lines in the file, save and close.

#Remastersys Precise
deb http://www.remastersys.com/ubuntu precise main


You can add repository for latest version of Ubuntu from here

Update the package repository and install Remastersys

apt-get update
apt-get install remastersys remastersys-gtk

Remastersys will appear in Applications > System Tools > Administration
  
See the screen shots below,

Main screen of Remastersys.
You can assign name of your project.


You can export user settings to Live DVD.

You can click on appropriate buttons to build Live DVD. You need Internet connection to run Remastersys. Certain packages to be installed from Internet to build the Live DVD. The output will be in .iso format, you can locate it from /home/remastersys. Burn the .iso file in a DVD and boot from computer.

Wednesday, January 2, 2013

How to install Gnome Classic desktop in Ubuntu 12.04

Execute the following command in a terminal,

sudo apt-get install gnome-session-fallback

Log out and select Gnome Classic from login session.


Thursday, December 27, 2012

How to change boot splash in to text mode

You can change Ubuntu traditional graphical boot splash into text mode. See the following commands,

gedit /etc/default/grub

Find the following line,

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"


Delete the words "quiet splash" . See the modified line below,

GRUB_CMDLINE_LINUX_DEFAULT=""

Then update the Grub,

sudo update-grub