Features Library System

Total Page:16

File Type:pdf, Size:1020Kb

Features Library System FEATURES Library System David Maska, 123RF Maska, David Easy library administration with Koha Book Keeper Information technology plays a key role in modern library In this article, I describe Koha and, more environments. We check out Koha, an open source specifically, the configuration of Koha 3.02 on a 64-bit openSUSE [2] server. integrated system that can help manage a library’s daily Initial Configuration operations. By Evelthon Prodromou Installing Koha on your server is quite easy. The first thing you should do is in- ibrary catalogs were originally by both patrons and staff through an in- stall the required packages: Apache web based on a card system that was tuitive web interface. server [3], some Perl modules, and the tedious and time-consuming to The setup is a pilot system for second- MySQL [4] database. Start by opening a Lupdate. Fortunately, this task is ary schools in Cyprus. Three lyceums console and issuing: now done by modern electronic systems are currently participating in this effort, for easy central administration of li- and the Library of the University of Cy- yast -i apache2 apache2-mod-perlU brary catalogs. Recently, I had the plea- prus is helping with setup, fine-tuning, mysql-community-server make gcc sure of installing one such system, and hosting the project. Koha. Koha [1] is an open source inte- For the initial test bed, I imported the After installing these packages, you need grated library system initially developed library’s catalog from another system to to tune the system locale, Apache, and by Katipo Communications Ltd. in New Koha. The next step was to import the MySQL. Your system’s locale must be Zealand. Cyprus Union Catalog to Koha (planned UTF-8. To see whether this is the case, The Koha system includes modules for for the near future). The union catalog circulation, cataloging, acquisitions, seri- includes bibliographic data from 38 dif- LISTING 1: System Locale als, reserves, patron (user) management, ferent libraries across the island, with locale and more. Koha uses the well-known more than half a million records, which LANG=en_US.UTF-8 MySQL database and is easily accessible will give a major boost to the project. LC_CTYPE="en_US.UTF-8" For example, a school library will no LC_NUMERIC="en_US.UTF-8" AUTHOR longer need to catalog its books be- LC_TIME="en_US.UTF-8" cause most of them will be in the union LC_COLLATE="en_US.UTF-8" Evelthon Prodromou is catalog. LC_MONETARY="en_US.UTF-8" an electrical and com- LC_MESSAGES="en_US.UTF-8" puter engineer. He is cur- Additionally, the solution will benefit LC_PAPER="en_US.UTF-8" rently working as IT Offi- everyone participating in the school LC_NAME="en_US.UTF-8" cer at the Library of the union catalog. One installation serves an LC_ADDRESS="en_US.UTF-8" University of Cyprus. His interests in- arbitrary number of libraries through LC_TELEPHONE="en_US.UTF-8" clude server virtualization, ranking algo- web-based access, with no locally in- LC_MEASUREMENT="en_US.UTF-8" rithms, e-learning, and human-computer stalled clients. This system will require LC_IDENTIFICATION="en_US.UTF-8" interaction. You can view his personal fewer support hours and will be easier to LC_ALL= website at http://​­www.​­prodromou.​­eu. maintain and update. 56 AUGUST 2011 ISSUE 129 LINUX-MAGAZINE.COM | LINUXPROMAGAZINE.COM 056-062_Koha.indd 56 7/1/11 1:27:57 PM FEATURES Library System go to a shell console and type locale. enable or disable The output should look like Listing 1. If Apache modules LISTING 2: MySQL Variable Set Values your system is not already in UTF-8, you and other param- 01 mysql> show variables like 'char%'; can follow the procedure in the “Setting eters of the web 02 +--------------------------+----------------------------+ Locale to UTF-8” box. server. 03 | Variable_name | Value | To download Koha, issue 04 +--------------------------+----------------------------+ MySQL 05 | character_set_client | utf8 | 06 | character_set_connection | utf8 | wget http://download.koha-community.U Config 07 | character_set_database | utf8 | org/koha-version.tar.gz If you get this far, MySQL is already 08 | character_set_filesystem | binary | and extract it with tar, installed. So, you 09 | character_set_results | utf8 | need to make sure 10 | character_set_server | utf8 | 11 | character_set_system | utf8 | tar xvfz koha-version.tar.gz it starts on boot, turns on, and 12 | character_sets_dir | /usr/share/mysql/charsets/ | 13 +--------------------------+----------------------------+ which goes into folder koha‑version. takes care of secu- 14 8 rows in set (0.00 sec) rity: Apache Configuration The next step is to set Apache encoding. chkconfig mysql on Koha ships with a shell utility that you To set default encoding to UTF-8, create rcmysql start can use for this: a local configuration file and add the /usr/bin/mysql_secure_installation Add DefaultCharset directive: koha_root_folder/misc/sax_parser_print.pl The last command tightens security and vi /etc/apache2/httpd.conf.local allows you to remove the test databases In my case, Koha’s SAX parser checker and the anonymous user account created returned the contents of Listing 4. Add the following to the file: by default. This step is strongly recom- As it says in line 5, it looks bad, but mended for production servers. Apart fixing this error is easy: You just need to AddDefaultCharset UTF-8 from setting a root password, the rest of locate a file called ParserDetails.ini as the questions are better left to their de- follows: and save. Next, enter: fault values by simply pressing Enter. Now make sure the My SQL encoding find / -iname ParserDetails.ini a2enmod perl5 is set to UTF-8. To change it, go to a chkconfig apache2 on MySQL prompt with mysql ‑p, answer You will get a reply like: rcapache2 restart the challenge by entering the root pass- word, then check the encoding settings /usr/lib/perl5/vendor_perl/5.12.1/XML/U The preceding commands enable Perl as in Listing 2 with show. In this case, all SAX/ParserDetails.ini scripting, restart Apache, and make sure settings are in UTF-8, so no changes are it starts on boot. necessary. The next step is to edit ParserDetails. The last step for MySQL is to grant ini and change [XML::SAX::PurePerl] to Configuring Apache privileges to the Koha user for the Koha [XML:: LibXML:: SAX:: Parser] and save. To I set up the system on openSUSE, which database. You can do this through the verify, rerun sax_parser_print.pl. You uses the YaST configuration tool. The MySQL command interface. On success- should get a Looks good message (List- basic steps for other distros are similar, ful creation of the database, you need to ing 5). but the details will differ. On openSUSE create a My SQL user and grant that user systems, use YaST to install the yast2- the necessary privileges for Koha’s data- Installing Perl Modules http package, which offers a GUI tool for base. In the case described in this article, When you are finished with the XML easy HTTP server management. After in- the MySQL user is called kohaadmin parser, you need to install a few Perl stalling this package, reload YaST and go (Listing 3). modules. To discover which, execute to Network Services | http server. Make perl Makefile.PL. sure the HTTP server is allowed through SAX Parser At this point, I had hoped I would be the firewall. From this tool, you can also Koha is primarily built on Perl, so you greeted by some sort of installation mes- need to make sure the perl-XML-SAX sage, but I was not. Instead, I got a com- SETTING LOCALE TO UTF-8 and perl-XML-LibXML packages are in- plaint from the installer saying Can’t lo- stalled. If not, you can install them from cate ZOOM.pm in @INC (@INC con- 1. Load YaST. a shell prompt: tains:. 2. Go to System | Languages. Further investigation in Makefile.PL 3. Click on Details. A new window ap- pears. Make sure Locale settings for yast -i perl-XML-SAX perl-XML-LibXML showed that I was missing the perl-Net- User root is set to yes and the Use Z3950-ZOOM package. This package is UTF-8 Encoding checkbox is checked. Next, you need to check which XML not located in the standard openSUSE re- 4. Accept your changes. parser your system is using. Fortunately, positories (those added when the system LINUX-MAGAZINE.COM | LINUXPROMAGAZINE.COM ISSUE 129 AUGUST 2011 57 056-062_Koha.indd 57 7/1/11 1:28:00 PM FEATURES Library System sc11.supercomputing.org Conference firsts: storage and analysis across a LISTING 3: MySQL User Creation and Setup LISTING 4: Parser Checker • a full day of technical diverse range of science and mysql -u root -p 01 Koha wants something like: sessions on Friday, engineering disciplines. Enter password: 02 XML::LibXML::SAX::Parser=HASH( November 18, the last day 0x81fe220) Welcome to the MySQL monitor. Commands end with ; or \g. 03 You have: • the most Technical Your MySQL connection id is 53 04 XML::SAX::PurePerl=HASH(0x9a2bd0) Program submissions ever SC11 will continue to recog- Server version: 5.1.53-log SUSE MySQL RPM Seattle, WA 05 Looks bad, check INSTALL.* • a State of the Practice track nize exceptional individual documentation. Connecting communities Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. through HPC • a Scientific Visualization accomplishments through This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you Showcase the awards and fellowship are welcome to modify and redistribute it under the GPL v2 license LISTING 5: Verifying Parser November 12-18, 2011 • the largest number of programs. The Communities 01 misc/sax_parser_print.pl exhibitors ever—nearly 300 Program offers opportunities Type 'help;' or '\h' for help.
Recommended publications
  • Install Koha on Ubuntu 20.04 LTS
    Install Koha on Ubuntu 20.04 LTS Software need to be installed through the command prompt: i) A Linux server ii) Apache iii) MariaDB or MySQL iv) Perl V) Koha vi) Mousepad (Text-Editor) (Note the red mark lines are the command need to be executed on the terminal) Step1: Open the terminal by pressing (Ctrl+Alt+T) or go to Applications > Accessories > Terminal and select it for executing the below command. #Update Ubuntu This process will update the Linux operating system latest by downloading new packages. sudo apt update #Install Mousepad text editor Mousepad is a lightweight text editor, which requires opening configuration files while the installation process of Koha. sudo apt-get install mousepad #Add Koha community repository Add Koha software channel into Ubuntu. It will install the current (latest) version of Koha. Apply the following two commands one by one: 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 MariaDB server sudo apt install mariadb-server #Assign Root password for MariaDB If password asks during the installation process, enter the password in the window. Apply following command, if the password window did not appear during the installation. sudo mysqladmin -u root password newpass [Replace ‘newpass‘] #Install Koha The following command will install the latest release of Koha. sudo apt install koha-common #Server configuration In this step, need to edit network information like domain name and port numbers.
    [Show full text]
  • The Use and Application of Open Source Integrated Library System in Academic Libraries in Nigeria: Koha Example
    University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln Library Philosophy and Practice (e-journal) Libraries at University of Nebraska-Lincoln 2015 The seU and Application of Open Source Integrated Library System in Academic Libraries in Nigeria: Koha Example Emeka C. Uzomba Mr. Federal University,Oye-Ekiti, Ekiti State, [email protected] OLUWATOFUNMI JESUDUNNI OYEBOLA Mrs. Federal University Oye-Ekiti, Nigeria, [email protected] ANTHONY CHUKWUMA IZUCHUKWU Mr. University of Nigeria, Nsukka, [email protected] Follow this and additional works at: http://digitalcommons.unl.edu/libphilprac Part of the Educational Assessment, Evaluation, and Research Commons, and the Library and Information Science Commons Uzomba, Emeka C. Mr.; OYEBOLA, OLUWATOFUNMI JESUDUNNI Mrs.; and IZUCHUKWU, ANTHONY CHUKWUMA Mr., "The sU e and Application of Open Source Integrated Library System in Academic Libraries in Nigeria: Koha Example" (2015). Library Philosophy and Practice (e-journal). 1250. http://digitalcommons.unl.edu/libphilprac/1250 THE USE AND APPLICATION OF OPEN SOURCE INTEGRATED LIBRARY SYSTEM IN ACADEMIC LIBRARIES IN NIGERIA: KOHA EXAMPLE BY EMEKA CHRISTIAN UZOMBA Federal University Oye-Ekiti (Corresponding Author) Phone: +2348036996747 P.M.B.2273 Oye-Ekiti, Ekiti State, Nigeria. [email protected] , [email protected] , OLUWATOFUNMI JESUDUNNI OYEBOLA Federal University Oye-Ekiti (Co-Author) Phone: +2348030617819 P.M.B.2273 Oye-Ekiti, Ekiti State, Nigeria. [email protected] , [email protected] ANTHONY CHUKWUMA IZUCHUKWU Department of Library and Information Science, University of Nigeria, Nsukka (Co-Author) Phone: +2348067699821 [email protected] ABSTRACT This study examined the use of open source integrated library system in academic libraries in Nigeria, with the aim of highlighting the capabilities and potentials of open source software (Koha) and its practical importance to academic libraries across the globe.
    [Show full text]
  • Open Source ILS Software: KOHA
    Open Source ILS Software: KOHA What does Open Source mean? • The term “open source” refers to software that is free and that includes the original source code used to create it so that users can modify it to make it work better for them. • open source software may be free, a developer or distributor may charge for services, including special programming, installation, training, and technical support. • Quality, not profit drives open source developers who take personal pride. Advantages of Open Source Software : • Ability to tailor to fit local needs : The availability of the source code means that a user can modify and enhance the software to more closely fit its own needs . • No restriction on use : There are no contractual restrictions on how the software is used . • Low cost : There is no charge for the software itself. The major cost is local development. If the number of users is large, and they share their efforts, each user’s cost is reduced. Disadvantages of Open Source Software: • Unanticipated Efforts : A library may find that it needs to do a great deal more work than anticipated to adapt the software to local needs. • Lack of coordination : The decentralized development of open source software means that progress can be chaotic and there may be delays in addressing bugs. • Inadequate technical support : Documentation tends to be limited and aimed at developers. There usually is limited technical support, especially for users of the software • Customization : Open source software may not offer the level of customization as it is being done in case of commercial software.
    [Show full text]
  • ABCD Vs KOHA
    Bojan Macan, prof. Lic. Gladys Vanesa Fernández Ruđer Bošković Institute, Zagreb, Croatia INIDEP Institute, Mar del Plata, Argentina 36th IAMSLIC Annual Conference: Netting Knowledge: Two Hemispheres – One World 17-21 October, 2010, Mar del Plata, Argentina Content • Integrated library management system (ILMS) • Open Source Definition • Library Open Source Software • Available ILMS's • Reasons for ILMS • Reasons for implementing Open Source ILMS • Comparison of ABCD and Koha – General Information – Modules – Cataloging – Circulation – Reports and Statistics – OPAC – Aditional functionalities – Web 2.0 features • Conclusions 36th IAMSLIC Annual Conference: Netting Knowledge: Two Hemispheres – One World 17-21 October, 2010, Mar del Plata, Argentina Integrated library management system (ILMS) Integrated library management system (ILMS) is an automated library system that is capable of managing the operations of more than one basic library functions. (UNESCO) 36th IAMSLIC Annual Conference: Netting Knowledge: Two Hemispheres – One World 17-21 October, 2010, Mar del Plata, Argentina Open Source Definition Open source doesn't just mean access to the source code. The distribution terms of open-source software must comply with the following criteria: • Free Redistribution • Source Code • Derived Works • Integrity of The Author's Source Code • No Discrimination Against Persons or Groups • No Discrimination Against Fields of Endeavor • Distribution of License • License Must Not Be Specific to a Product • License Must Not Restrict Other Software • License Must Be Technology-Neutral (Open Source Inicitive: http://www.opensource.org/docs/osd) 36th IAMSLIC Annual Conference: Netting Knowledge: Two Hemispheres – One World 17-21 October, 2010, Mar del Plata, Argentina Library Open Source Software Open source software’s are available with source code and the libraries can make changes in software.
    [Show full text]
  • Customization of Koha Online Public Access Catalogue: an Experimental Study
    University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln Library Philosophy and Practice (e-journal) Libraries at University of Nebraska-Lincoln 6-22-2020 Customization of Koha Online Public Access Catalogue: An Experimental Study Dr. Anupam Chanda Assam Don Bosco University, [email protected] Follow this and additional works at: https://digitalcommons.unl.edu/libphilprac Part of the Library and Information Science Commons Chanda, Dr. Anupam, "Customization of Koha Online Public Access Catalogue: An Experimental Study" (2020). Library Philosophy and Practice (e-journal). 4661. https://digitalcommons.unl.edu/libphilprac/4661 Customization of Koha Online Public Access Catalogue: An Experimental Study Dr. Anupam Chanda Librarian Assam Don Bosco University Guwahati, Assam, India-781017 Email: [email protected] Abstract Purpose: An online public access catalogue (OPAC) is an online database of all the resources and materials available in a particular library. OPAC could potentially replace the old fashioned card catalogue as a means of helping library users to find the resources which they want. The purpose of the study is to explore various aspects of the customization of Koha OPAC. Methodology: An experimental research method has been adopted for the study to customize the OPAC. HTML, Java and CSS coding has been used as a command to customize the front view of the OPAC. Findings: Koha OPAC is distributed into six parts namely Header, Left (Upper & Bottom) Navigation, Main User Block (The centre area of the OPAC where content will be written), Right Navigation and Footer. The technology is highly interactive for editing provision to a library professional with less experience in advanced programming skills.
    [Show full text]
  • KOHA Overview & Features
    PresentedPresented By:By: MukeshMukesh A.A. PundPund Principal Scientist NISCAIR, New Delhi . Overview of Open Source ILMS . About Koha . Koha Features . Koha System Overview . Koha Software Requirements . OPAC Module . Member Module . Circulation . Cataloging . Serials . Acquisitions . Koha Personalization . Koha Operating Parameters . Koha Resources . FAQ Open Source ILMS . A Library Management System (LMS) or Integrated Library System (ILS) is an enterprise resource planning system for a library, used to track items owned, orders made, bills paid, and patrons who have borrowed. And Open Source LMS is available for use as free with its source code made available and licensed with a license in which the copyright holder provides the rights to study, change and distribute the software to anyone and for any purpose Open Source Integrated Library System (ILMS) Products MicroLCS,MicroLCS, OpenBiblioOpenBiblio EmildaEmilda phpMyLibrarphpMyLibrar EvergreeEvergree yy nn PMBPMB FireFlyFireFly PYTHEASPYTHEAS GNUTecaGNUTeca WEBLIS.WEBLIS. AvantiAvanti KohaKoha Differences between OSS and Proprietary LMS . OSS LMS are easier to customize (including reports) . Proprietary LMS normally has more features . Costs . OSS LMS have more flexible support options . Hard to generalize, but OSS LMS are not as complex . OSS LMS modules are mostly web based . OSS LMS are easier to evaluate Criteria for Evaluating Open Source Integrated Library Systems . Active current development under way. Availability of modules and their completeness: At least the cataloging, circulation, patron access catalog modules, acquisitions and serials control should be available. It should be Integrated library system. International Standards Supported: MARC , Z39.50 etc. Current source code and documentation are available for downloading under the GNU General Public License . The product is currently in use in libraries.
    [Show full text]
  • Open Source Software's and Their Impact on Library and Information
    Vol. 5(4), pp. 90-96, May, 2013 International Journal of Library and Information DOI: 10.5897/IJLIS12.038 ISSN 2141–2537 ©2013 Academic Journals Science http://www.academicjournals.org/IJLIS Review Open source software’s and their impact on library and information centre: An overview T. Raghunadha Reddy* and K. Kumar Sri Venkateswara College of Engineering and Technology (SVCET), Chittoor, Andhra Pradesh, India. Accepted 12 April, 2013 In this era of transition from information age to knowledge society, the libraries have much greater challenges to face. The whole insight of library has now changed from collection of books to a single window knowledge bank. This paper discusses the definition and features of open source library management software, criteria of selection of best open source library management software, their, advantages and limitations. Open source library management software is a solution to reducing that cost. The paper describes in brief about the feature of some of the open source library management software like Greenstone Digital Library, DSpace, KOHA, E-Prints, NewGenlib, PhpMyLibrary, OpenBiblio, Avanti, etc., which are useful for developing digital library and institutional repositories. Key words: Greenstone, DSpace, KOHA, E-Prints software. INTRODUCTION In the present era digitalized databases are being of source code (Kamble, 2012). To be certified as open compiled in majority of the library services, which are source, the license of a program must guarantee the right based on information technology as well as resources to read, redistribute, modify, and use it freely” (Rich available in electronic formats. In order to manage all Christie, 1999). kinds of resources and information, libraries require high “Open Source Software is computer software whose quality integrated software, along with cutting edge source code is available under a license (or arrangement retrieval tools.
    [Show full text]
  • 1 Open Source Systems Bring Web 2.0 to Special Libraries Edmund
    Open source systems bring Web 2.0 to special libraries Edmund Balnaves Don Keast Prosentient Systems Department of Rural Health Sydney, Australia Sydney University Broken Hill, Australia Abstract The library management systems market place has been transformed by two innovations: Web 2.0 and open source systems. Open source developers have been quick to implement Web 2.0 functionality in their systems, making it possible for special libraries to be early adaptors of new technology that supports community networking with their members. These services are particularly important for special libraries, who can have disparate, often widely separated, patrons and who can benefit greatly from the library 2.0 community networking innovations. Their free source code base and help bring web-based functionality to small (and often isolated) libraries whose budget does not measure up to conventional vendor-based systems. The experiences of implementing the open source Koha library management system will be explored in the context of the Greater Western Area Health Service network. Introduction Special libraries providing health services are characterised by a community of library users that are often highly engaged with electronic services and have critical requirements for information discovery. Health libraries have therefore been enthusiastic adopters of Web 2.0 technologies to enhance their communication with a disparate user base. The Greater Western Area Health Service (GWAHS) has an added need for effective communication with their user base given the wide dispersal of their client population, with libraries situated in Dubbo, Bathurst, Orange, and Newcastle being dispersed over a region of more than 800 kilometres. In this context there is an emerging revolution in the ways in which library clients engage with library systems.
    [Show full text]
  • Koha on Windows 4/28/2005 6:04 PM 1 of 12
    Koha on Windows 4/28/2005 6:04 PM 1 of 12 Koha on Windows Rob Weir <robweir AT alum.drexel.edu > Copyright © 2003 - 2005 Rob Weir This document is related to Koha and is licensed to you under the GNU General Public License version 2 or later ( http://www.gnu.org/licenses/gpl.html ). Koha-related documents may be reproduced and distributed in whole or in part, in any medium physical or electronic, as long as this copyright notice is retained on all copies. You may create a derivative work and distribute it provided that you: 1. License the derivative work with this same license, or the Linux Documentation Project License (http://www.tldp.org/COPYRIGHT.html ). Include a copyright notice and at least a pointer to the license used. 2. Give due credit to previous authors and major contributors. Commercial redistribution is allowed and encouraged; however, the author would like to be notified of any such distributions. No liability for the contents of this document can be accepted. Use the concepts, examples and information at your own risk. There may be errors and inaccuracies that could be damaging to your system. Although this is highly unlikely, proceed with caution; the author(s) do not take any responsibility. All copyrights are held by their respective owners, unless specifically noted otherwise. Use of a term in this document should not be regarded as affecting the validity of any trademark or service mark. Naming of particular products or brands should not be seen as endorsements. 2005-01-20 Revision History Revision 2.0.0 2004-05-11 rw Compilation of several related wiki pages posted at http://www.saas.nsw.edu.au/koha_wiki/index.php?page=KohaOnWindows between 2003-07-16 and 2004-05-11.
    [Show full text]
  • Koha Ubuntu 14.04.4
    KOHA In Compatible With UBUNTU 14.04.4 1 | P a g e http://wasimrlis.blogspot.in https://coprofessionals.wordpress.com 2 | P a g e Koha is an open source Integrated Library System (ILS), used world-wide. The name comes from a Maori term for a gift or donation. Koha is web-based ILS, with a SQL database (MySQL) backend with cataloguing data stored in MARC and accessible via Z39.50. The user interface is very configurable and adaptable and has been translated into many languages. Koha has most of the features that would be expected in an ILS, including: Web 2.0, Union catalog facility, Customizable search, Circulation and borrower management, Serials system, Reporting etc. Koha was created in 1999 by Katipo Communications for the Horowhenua Library Trust in New Zealand, and the first installation went live in January 2000. From 2000, companies started providing commercial support for Koha, building to more than 20 today. The latest stable release of Koha is 16.05.00. Koha is currently a very active project. According to Ohloh, it has a very large, active development team and a mature, well-established codebase. The analysis of the size of the code base may be deceptive because Koha stores user interface translations alongside actual source code and Ohloh cannot always distinguish them. In this manual I have illustrated, how to install koha, what are the pre-requisites, and the process of step by step installing DSpace in Ubuntu. ____________________ 3 | P a g e Hardware Requirement Processor Pentium- 4, 2.6 GHz or higher RAM- 2 GB HDD- 80 GB DVD Drive/ USB Drive Software Requirement To install Koha for use we recommend A Linux server – Ubuntu is what most people use Apache MySQL Perl Root access to the server A better than average level of skill with the command line, Apache, and MySQL tools Manpower Professionals having well knowledge in Linux operating system and knowledge of Local Area Network (LAN).
    [Show full text]
  • Assessment of the Use of Koha Library Software in Four Selected
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Landmark University Repository Assessment of the Use of Koha Library Software in four Selected University Libraries in Nigeria Tella, Adeyinka1, Dina, Neemah2, Olaniyi, O.T3, Memudu, Suleiman Ajala5, & Oguntayo, Sunday Adebisi5 Department of Library and Information Science, University of Ilorin.2, Federal College of Education, Akoka, Lagos3 , Department of Information Communication Science, University of Ilorin, Nigeria4 , Centre for Learning Resources Technical Services Librarian Landmark University, Omu Aran, Kwara State5 [email protected], [email protected] Abstract Purpose: This study examined the use of KOHA library software in some selected university libraries in Kwara and Oyo States, Nigeria. Design/Methodology/Approach: The study adopted a descriptive survey design and the data was collected using a questionnaire. Census of the available librarian when the questionnaire was administered was taken this gave a total of 37 librarians spread across the four university libraries that participated in the study. Data collected was analyzed using frequency count and percentage. Findings: The findings indicated that 90% of the respondents of the study had positive perception that KOHA has a customizable and easy to search options and that KOHA is free library software with original source code that users can modify to make it work better for them. Findings reveal that majority of the respondents have positive perception towards the use of KOHA and also library staffs have commended the decision of the University Library for installing dynamic software like KOHA. The findings revealed that erratic power supply and insufficient manpower are bane for the smooth running of the software.
    [Show full text]
  • Stirring Automated to Integrated Library System 1*MORUF, HA
    PRINT ISSN 1119-8362 Full-text Available Online at J. Appl. Sci. Environ. Manage. Electronic ISSN 1119-8362 https://www.ajol.info/index.php/jasem Vol. 24 (7) 1273-1278 July 2020 http://ww.bioline.org.br/ja Open Source Automation Software: Stirring Automated to Integrated Library System 1*MORUF, HA; 2SANI, S; 3ABU, ZI *1Department of Library and Information Science, Federal University Dutsin-Ma, Katsina State, Nigeria 2University Main Library, Federal University Dutsin-Ma, Dutsin-Ma, Katsina State, Nigeria 3 Department of Computer Science, Bayero University, Kano, Kano State, Nigeria *Corresponding author e-mail: [email protected], Tel: +234-8022429983 ABSTRACT: The explosion of the World Wide Web; dynamic nature of information technologies, such as open source; the increase in electronic resources; and the rising expectations of library users have contributed to the changing nature of the Automated Library System (ALS) since its inception in the 1970s. These changes are reflected in the conceptual differences between the ALS and the Integrated Library System (ILS). The ALS is identified as simply a database to house and retrieve a library’s holdings while ILS is identified as robust clusters of systems involving every process and module related to library operations. This article presents a review on the evolving features of some commonly adopted Open-Source ILS Software (Koha, NewGenLib, Evergreen, PMB and OpenBiblio) which had stirred ALS to ILS, as well as justifications and barriers to the use of open source software in academic libraries. DOI: https://dx.doi.org/10.4314/jasem.v24i7.21 Copyright: Copyright © 2020 Moruf et al.
    [Show full text]