Posts

Showing posts from December, 2023

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

Total views