Koha INSTALLATION After installation of ubuntu 20.4 (Focal Fossa), right click on the mouse choose open terminal. past the following comments in terminal. Update Ubuntu using apt sudo apt update sudo apt upgrade -y if the system asks for update make it "Remind me later" it may confuse the process Clear the apt-get packager manager cache sudo apt clean Install MariaDB-server dependence sudo apt install -y mariadb-server Provide MySQL/MariaDB root password (If the password asks during the installation process, enter the password in the window. Apply the following command, if the password window did not appear during the installation secure it) Securing MariaDB Run this command to improve the security of the MariaDB installation: sudo mysql_secure_installation (The script will prompt you to set up the root user password, remove the anonymous user, restrict root user access to the local machine and remove the te...
Integrating Koha Search Interface Into Your Library Website 1. Select the portion of your library Website from the home page, where to display the Search Interface of Koha OPAC 2. Copy and paste the following HTML code into a selected portion of your Library Website Home Page and then you will need to modify the Koha OPAC URL, item codes, and name of the item as per your Koha system and save. <div style="background-color: #87CEEB; border-radius: 7px; border: 3px solid blue;"> <div><form id="searchform" action=" Your Koha OPAC URL/IP Address /cgi-bin/koha/opac-search.pl" method="get" name="searchform"> <table style="height: 50px; width: 600px;"> <tbody> <tr style="height: 50px;"> <td style="width: 90px; height: 50px;"><select id="masthead_search" name="idx"> <option value="kw">Keyword</option> <option value=...
Install EPrints on Ubuntu (LTS Version is Recommended) Requisite Software for EPrints: i) A Linux server ii) Apache iii) MariaDB or MySQL iv) Perl V) EPrints Software Step1: Open the terminal by pressing ( Ctrl+Alt+T ) or go to Applications > Terminal and select it for executing the below command. Become a root user sudo su [Give your root password] Create a File nano /etc/apt/sources.list.d/eprints.list #Add the below line and save it [Press ctrl+x, then type y and press Enter key to save] deb http://deb.eprints-hosting.org/3.4/stable/ ./ Download the key repository wget -O - http://deb.eprints-hosting.org/keyFile | apt-key add - Update & Upgrade Ubuntu apt update; apt upgrade -y Not Required to install xpdf Install xpdf wget http://security.ubuntu.com/ubuntu/pool/main/p/poppler/libpoppler73_0.62.0-2ubuntu2.12_amd64.deb wget http://archive.ubuntu.com/ubuntu/pool/universe/x/xpdf/xpdf_3.04-7_amd64.deb dpkg -i libpoppler73_0.62.0-2ubuntu2.12_amd64.deb; apt install --fix-brok...
Comments
Post a Comment