Tag: Universities
-
How to Re-index Bibliographic Records in Koha
Sometimes after entering Bibliographic (Books) data to Koha, they are not visible in the search. Due to this issue we need to rebuild the Koha index using command: sudo koha-rebuild-zebra -f -v instancename
-
How to install Koha – A Library Software on Ubuntu
Step 1: Execute the script by giving the following command: #!/bin/bash #export HTTP_PROXY_HOST=10.3.100.207 #export HTTP_PROXY_PORT=8080 wget -O- http://debian.koha-community.org/koha/gpg.asc | sudo apt-key add – echo deb http://debian.koha-community.org/koha stable main | sudo tee /etc/apt/sources.list.d/koha.list sudo apt-get update sudo apt-get install libgd-perl sudo apt-get upgrade sudo apt-get install koha-common Koha installation gives error related with apache2-mpm-itk issue. The…