Category: Koha

04/12/2019

Install Koha Software on Ubuntu 16.04 & 18.04 LTS

Open Terminal and get ready for installation Update Ubuntu sudo su  apt-get update apt-get upgrade Install Leafpad text editor apt-get install leafpad Add Koha community repository echo deb http://debian.koha-community.org/koha oldstable main | sudo tee /etc/apt/sources.list.d/koha.list wget -O- http://debian.koha-community.org/koha/gpg.asc | sudo apt-key add – Update the software repository sudo apt update Install Koha sudo apt install koha-common Server Configuration In this step, need to edit network […]

06/09/2019

RFID Library Automation Videos

Please click on below links for watching RFID Library Automation Videos: RFID Library Management & Security System Installed at Morigaon College, Assam Attendance Management System using Barcode in Library (Gate Entry Register with Koha Software) RFID Book Tagging Process in CIT Kokrajhar Library using SOUL 2.0 Software (RFID LIBRARY-RFID TAG) Total Views: 1494

18/03/2019

Koha Backup | How to Setup Automatic Backup in Koha 21.05

Create Shell Script for Daily Koha Backup To setup Automatic Daily Koha Backup, Follow the below Commands. First of all, Login to root user and create directory for backup. sudo su Enter Login password when prompted. Next, Create Koha Backup directory mkdir koha_backup Allow write permission to this folder sudo chmod 777 koha_backup (Now, Exit from root directory) Create a backup file. sudo gedit koha_backup/backup.sh Copy below text into […]

16/03/2019

Koha Data Migration | How to Import MARC file into Koha using Terminal

Koha Data Migration is very time consuming process, So you can import you Bibliographic Data into Koha Software by using Terminal Commands In the process of Koha Data Migration, You can import .mrc file into koha directly using Terminal commands. Follow the steps below and run commands one by one carefully: sudo su export PERL5LIB=”/usr/share/koha/lib” export KOHA_CONF=”/etc/koha/sites/library/koha-conf.xml” Next, Move your .mrc file into folder where […]

16/03/2019

Install phpMyAdmin on Ubuntu

After installing MySql/MariaDB Database Server, You can easily install phpMyAdmin on Ubuntu Machine.Follow the steps below:1. Update the package index and upgrade the system packages to the latest versions:     > sudo apt update     > sudo apt upgrade  (optional)2. Install the phpMyAdmin package     > sudo apt install phpmyadmin3. Choose apache2 by pressing Space Key and then Enter on Keyboard, when a popup screen appears.4. Next, you will be asked […]

16/03/2019

Reset Password in MySQL | How to fix Access denied for user ‘root’@’localhost’

Set/Reset Password in MySQL use mysql; SET PASSWORD FOR ‘root’@’localhost’ = PASSWORD(‘newpassword’); OR ALTER USER ‘root’@’localhost’ IDENTIFIED BY ‘newpassword’; OR UPDATE mysql.user SET authentication_string = PASSWORD(‘newpassword’), password_expired = ‘N’ WHERE User = ‘koha_library’ AND Host = ‘localhost’; flush privileges; Mysql(Ubuntu): How to fix Access denied for user ‘root’@’localhost’ sudo mysql -u root use mysql; update user set plugin=’mysql_native_password’ where User=’root’; flush privileges; Koha auto_increment bug […]

28/11/2018

How to Install TeamViewer on Ubuntu 18.04/20.04 LTS

TeamViewer is very popular software for Remote Access. You can Install TeamViewer on Ubuntu by following the process below. Open up the Terminal and enter following command: $ sudo apt install gdebi-core Next, download the latest TeamViewer package: $ wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb Lastly, install the previously downloaded package using below command: $ sudo gdebi teamviewer_amd64.deb Answer y when prompted. The TeamViewer is now installed. Use your start menu to […]

04/09/2017

Linux Bootable USB Creator

Linux Bootable USB Creator      Universal USB Installer aka UUI is a Live Linux Bootable USB Creator that allows you to choose from a selection of Linux Distributions to put on your USB Flash Drive. The Universal USB Installer is easy to use. Simply choose a Live Linux Distribution, the ISO file, your Flash Drive and, Click Install. Upon completion, you should have a ready to run […]