Posts

Showing posts with the label Installation

Drupal Installation on Ubuntu

Drupal Installation on Ubuntu Prerequisites 1. Ubuntu 20.04 2. Root access or user with sudo privileges You can check whether you have the proper Ubuntu version installed on your server with the following command: lsb_release -a You should get this output: No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.3 LTS Release: 20.04 Codename: focal Then, run the following command to make sure that all installed packages on the server are updated to the latest available version sudo apt update && sudo apt upgrade 2. Install and Configure Web server Drupal 9 supports many webservers, like Apache, nginx, LiteSpeed, even Microsoft IIS . In this tutorial, we will show you how to install Drupal 9 using apache or nginx on your Ubuntu 20.04. Drupal will be installed in directory /var/www/html/drupal. For this purpose, we need to create the directory. sudo mkdir /var/www/html/drupal a. Apache If you want to use Apache , run this command to install it from the repos

Joomla installation in Ubuntu

Joomla installation in Ubuntu Prerequisites : Ubuntu 20.04 Administrative sudo user with root privileges Step 1: Connect to your Server Once logged in, make sure that your server is up-to-date by running the following commands: sudo apt-get update sudo apt-get upgrade Step 2: Install Apache web server and PHP Joomla requires a webserver to function. Apache is a fast and secure web server and one of the most popular and widely used web servers in the world. You can install it from the official Ubuntu repositories running the following command: sudo apt install apache2 After installing Apache, the commands below can be used to stop, start and enable Apache services to always start up every time your server starts up. sudo systemctl stop apache2.service sudo systemctl start apache2.service sudo systemctl enable apache2.service To verify that Apache is running, execute the following command: sudo systemctl status apache2 installation of joomla 4.0 on ubuntu 20.04 Since Joomla is built on P

Installation of EPrints on Ubuntu

 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-broken -

Installation of VuFind on Ubuntu

 Installation of VuFind on Ubuntu Software need to be installed through the command prompt: i) A Linux server ii) Apache iii) MariaDB or MySQL iv) PHP v) Java JDK vi) VuFind vii) Mousepad (Text-Editor) (Note the red mark lines are the command need to be executed on the terminal) Short Installation:  ( Details Installation  👈🏻 Click Here ) 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 gedit is an open-source text editor, which requires opening configuration files while the installation process of VuFind. sudo apt-get install gedit Download VuFind wget https://github.com/vufind-org/vufind/releases/download/v8.1.1/vufind_8.1.1.deb Install the package sudo dpkg -i vufind_8.1.1.deb If you do not have all of VuFind’s dependencies installed a

Installing Multiple Instances of Koha or Multiple Library of Koha

 Installing Multiple Instances of Koha or  Multiple Library of Koha   First install Mousepad (or) Leafpad If needed ( Already installed ignore the command) Open Terminal and apply the below command (Ctrl + T) sudo apt-get install mousepad             (or) sudo snap install leafpad Add two different port numbers for new Koha instance sudo gedit /etc/apache2/ports.conf Already have Listen 8080 & Listen 80 Add two new ports, Listen 8000 Listen 8001 Create new instance sudo koha-create --create-db library2 We have created an instance (e.g. Library2) for our LIS Library. Open and edit apache site file add port numbers sudo gedit /etc/apache2/sites-available/ library2 .conf   Installing Multiple Instances of Koha Save and close the file. Restart Apache server   sudo /etc/init.d/apache2 restart   Restart Memcached service to open Koha web installer.   sudo service memcached restart   Open Koha staff client and proceed installation post installation process.   http://127.0.1.1:8000   Zebra

How to Upgrade Koha to Stable Version

Image
How to Upgrade Koha to Stable Version A new version of Koha is regularly released every six months with new features and enhancements. Each koha release has a version number that consists of the year and month of the release. Here are the easy steps to upgrade the koha to a stable release. Before upgrading koha to a new version, I would recommend taking a backup of your koha database.  Apply the following commands in the Terminal Upgrade the Koha sudo apt-get update sudo apt-get upgrade apt-cache policy koha-common | grep -E 'Installed|Candidate' It shows Installed: 21.05.01-1 Candidate: 21.05.09-1 Then Update the koha to stable version sudo apt-get upgrade This will upgrade to the latest minor version, e.g. from 22.05.04 til 22.11.05 (It will also upgrade all the other software on your server that needs an upgrade.) The upgrade will print a list of software to be updated, please read this list before proceeding with the upgrade, and if packages related to mysql or mariadb are

Dspace 7.5 Latest Installation on Ubuntu 20.04 LTS

Image
Dspace 7.5 Installation We use Debian 11 (Bull Eye) Ubuntu 20.04 LTS and 22.04 LTS to install DSpace 7. Update the operating system. Apply the following commands one by one to receive new updates. It makes the system new. sudo apt update && sudo apt upgrade -y Create a DSpace user from the terminal after the installation. Here are the commands to create the  DSpace user; sudo useradd -m dspace sudo passwd dspace [enter a password for the new user dspace] Add dspace user to sudoers group sudo usermod -aG sudo dspace  Create the directory for the DSpace installation. sudo mkdir /dspace Change the dspace folder permission to the dspace user. sudo chown dspace /dspace Build the Installation Package Install packages to support the Dspace installation. sudo apt install wget curl git build-essential mousepad zip unzip -y Install Open JDK The JDK is a development environment for building applications, applets, and components using the Java programming language. JDK prepares an environm

Total views