OpenVPN is a full-featured open source SSL VPN solution that accommodates a wide range of configurations, including remote access, site-to-site VPNs, Wi-Fi security, and enterprise-scale remote access solutions with load balancing, failover, and fine-grained access-controls. Starting with the fundamental premise that complexity is the enemy of security, OpenVPN offers a cost-effective, lightweight alternative to other VPN technologies […]
How To Install Odoo 13 on Ubuntu 18.04
Odoo 13 is a suite of web based open source business management apps. The main Odoo Apps include an Open Source CRM, Website Builder, eCommerce, Warehouse Management, Project Management, Billing & Accounting, Point of Sale, Human Resources, Marketing, Manufacturing, and more. Odoos fully-integrated, customizable, an open-source suite of business applications intends to serve SMBs […]
How to Install / Upgrade To MariaDB 10.4 on Ubuntu 18.04 / 20.04
Choose a mirror close to your server to download from: https://downloads.mariadb.org/mariadb/repositories/# Here are the commands to install MariaDB 10.4 from the MariaDB repository: 1. DigitalOcean mirrors for Ubuntu 20.04 “focal” Amsterdam https://downloads.mariadb.org/mariadb/repositories/#distro_release=focal–ubuntu_focal&mirror=digitalocean-ams&version=10.4 $ sudo apt-get install software-properties-common $ sudo apt-key adv –fetch-keys ‘https://mariadb.org/mariadb_release_signing_key.asc’ $ sudo add-apt-repository ‘deb [arch=amd64,arm64,ppc64el] http://ams2.mirrors.digitalocean.com/mariadb/repo/10.4/ubuntu focal main’ Once the key is imported and the repository added […]
How To Install Calibre Server On Ubuntu 14.04/16.04/18.04
Calibre is a free, open source and easy to use e-book manager. Calibre supports organizing existing e-books into virtual libraries, displaying, editing, creating and converting e-books, as well as syncing e-books with a variety of e-readers. Editing books is supported for EPUB and AZW3 formats. 1. Install Python and dependencies $ sudo apt update $ […]
How To Upgrade To PHP7.4-FPM in Ubuntu 16.04/18.04
This will upgrade your php version to php7.4-fpm when using Nginx web server.
How To Install Nodejs On Ubuntu 18.04
Install using Node.js Version Manager (NVM)
How To Install EspoCRM on Ubuntu 16.04/18.04 Using Apache Web Server
EspoCRM is an open source web application that allows you to see, enter and evaluate all your company relationships regardless of the type. EspoCRM is fast and uses very little server resources. Use Cases: Manufacturing, Industrial, B2B (can also be converted to B2C), other purposes such as sales, support, customer service and general CRM […]
How to install ERPNext on Ubuntu 16.04 / 18.04
ERPNext is a free and open-source integrated Enterprise Resource Planning (ERP) software used by manufacturers, distributors and services companies. It includes modules like accounting, CRM, sales, purchasing, website + e-commerce, point of sale, manufacturing, warehouse, project management, inventory and services. Also, it has domain specific modules like schools, healthcare, agriculture and non-profit. This installation […]
How to install Odoo 12 on Ubuntu 18.04
Odoo is a suite of web based open source business management apps. The main Odoo Apps include an Open Source CRM, Website Builder, eCommerce, Warehouse Management, Project Management, Billing & Accounting, Point of Sale, Human Resources, Marketing, Manufacturing, and more. Odoos fully-integrated, customizable, an open-source suite of business applications intends to serve SMBs but […]
How To Manually Upgrade phpMyAdmin
1. Back up phpMyAdmin You should back up your current phpMyAdmin folder by renaming it: $ sudo mv /usr/share/phpmyadmin/ /usr/share/phpmyadmin.bak 2. Create a new phpMyAdmin folder: $ sudo mkdir /usr/share/phpmyadmin/ Change to directory: $ cd /usr/share/phpmyadmin/ 3. Download and Extract phpMyAdmin Go to the phpMyAdmin download page and look for the latest .tar.gz URL and download […]
Adminer – A Simple & Secure Replacement For phpMyAdmin
Why replace phpMyAdmin with Adminer? Replace phpMyAdmin with Adminer and you will get a tidier user interface, better support for MySQL features, higher performance and more security. Adminer development priorities are: 1. Security, 2. User experience, 3. Performance, 4. Feature set, 5. Size. Works with MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, SimpleDB, Elasticsearch, MongoDB. And it’s only a single PHP file! After playing around […]
How To Upgrade OpenProject
OpenProject is an open source project management solution that offers features such as issue tracking, document management, time and cost reporting, and code management. To install OpenProject, click here: This upgrade was completed on Ubuntu 16.04 and also applies to Ubuntu 18.04. As of 2019.01.06 – OpenProject 8.2.0 1. Backup OpenProject $ sudo openproject run backup This […]
How To Upgrade To PHP7.2 in Ubuntu
Check your PHP version: $ php -v 1. Add PPA $ sudo add-apt-repository ppa:ondrej/php $ sudo apt update 2. Save current PHP packages Note down the current PHP packages you have, so we can reinstall them for PHP 7.2 $ dpkg -l | grep php | tee packages.txt This will save your current packages to […]
Nextcloud Upgrade from 14.x.x to 15.0.0
Errors & Solutions When Upgrading from Nextcloud 14.x.x to 15.0.0 Issue/Error 1: A. In Settings > Overview, there is a php-fpm configuration error: https://docs.nextcloud.com/server/14/admin_manual/installation/source_installation.html#php-fpm-tips-label $ sudo nano /etc/php/7.2/fpm/pool.d/www.conf Solution 1 Uncomment these lines: env[HOSTNAME] = $HOSTNAME env[PATH] = /usr/local/bin:/usr/bin:/bin env[TMP] = /tmp env[TMPDIR] = /tmp env[TEMP] = /tmp Issue/Error 2: A. You get a message […]
Nextcloud Upgrade from 13.x.x to 14.x.x
Errors & Solutions When Upgrading from Nextcloud 13.x.x to 14.x.x Issue/Error 1: A. After updating you can not login and are receiving a ‘wrong password’ message. B. When you try to reset the user password via the cli using occ and see a message stating that the ‘User does not exit’ (but you can see in […]