Posts
Koha Plugin
- Get link
- X
- Other Apps
Software: Apache (Already there in koha server) PHP MySQL (Already there in koha server) Any text editor like vim/mousepad/leafpad/gedit Hardware: A computer system with a widescreen monitor Automatic barcode scanner Installation: PHP Installation: for Debian 10 & Ubuntu 20.04 LTS Open a terminal and enter the following commands. sudo apt-get install -y git php libapache2-mod-php php-{bcmath,bz2,intl,gd,mbstring,mysql,zip,cli,fpm,opcache,xml,curl,intl,xsl,soap,json} cd /usr/share/koha/opac/htdocs sudo git clone https://github.com/omkar2403/inout.git sudo chmod 777 -R inout Setup the database: Go to MySQL shell and create a database, user, and password for inout sudo su mysql -uroot -p [Enter MySQL Root password] CREATE database libinout; CREATE USER 'libinout'@'localhost' IDENTIFIED BY 'libinout123'; GRANT ALL PRIVILEGES ON *.* TO 'libinout'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES; quit...
Joomla Content Management System
- Get link
- X
- Other Apps
Joomla Joomla is an open-source content management system that is popular for creating and managing websites which is available to anyone under the GPL license. It is the perfect choice for new webmasters due to its user-friendly interface, which makes creating and customizing sites a breeze. The software also provides built-in support for sources like Google Analytics, multi-lingual content creation tools, search engine optimization features, powerful media management tools and much more. With Joomla's vast range of free and paid extensions, you can easily extend the functionality of your sites. What’s more, it supports almost any kind of website – from ecommerce stores to forums to booking systems – quickly and easily. All in all, Joomla makes an outstanding platform for anyone looking to create their own stunning website without any prior coding experience. Salient Features 1. Frontend Edit ...
IP Configration
- Get link
- X
- Other Apps
sudo su ifconfig (Note- inet addr: 192.168.5.156 and Mask 255.255.255.0) ip route sho (Note- defaul via 192.168.5.1 dev) gedit /etc/network/interfaces Add following lines with the network credentials. Following lines contains example network details. Add your own network details. (e.g. free google DNS: 8.8.8.8) auto eth0 iface eth0 inet static address 192.168.5.156 gateway 192.168.5.1 netmask 255.255.255.0 dns-nameservers 8.8.8.8 systemctl restart network-manager.service systemctl restart networking.service systemctl restart resolvconf.service sudo -i apt install resolvconf systemctl enable resolvconf.service systemctl start resolvconf.service systemctl status resolvconf.service sudo service networking restart sudo /etc/init.d/resolvconf restart
Dspace 6.3 Installation
- Get link
- X
- Other Apps
sudo apt-get update sudo apt-get upgrade sudo apt-get install git git --version sudo add-apt-repository ppa:git-core/ppa sudo apt update; apt install git sudo apt-get install openjdk-8-jdk sudo apt-get install maven sudo apt-get install ant Add Postgresql Source file location sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' Add Postgresql Key wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - sudo apt-get update Install Postgresql -9.6 Version sudo apt-get install postgresql-9.6 sudo su postgres createuser --username=postgres --no-superuser --pwprompt dspace createdb --username=postgres --owner=dspace --encoding=UNICODE -T template0 dspace psql --username=postgres dspace -c "CREATE EXTENSION pgcrypto;" exit sudo gedit /etc/postgresql/9.6/main/pg_hba.conf Add this below line to the configuration file at the end local ...