Getting started with PostgreSQL in Debian based Linux
In this tutorial, we’ll learn how to install and get started with PostgreSQL on Debian based Linux such MX Linux.
linux
In this tutorial, we’ll learn how to install and get started with PostgreSQL on Debian based Linux such MX Linux.
This presents a quick cheatsheet for some of the most frequently used Linux commands
In this tutorial, we’ll install and configure Nginx with PHP-FPM on MX-Linux 23 (Debian 12)
In this tutorial, we’ll learn how to install and manage multiple PHP versions on Debian 12 (bookworm) or any distro based on Debian 12 such as MX-Linux 23
On Linux, sometimes we get following error while trying to run Hot Module Replacement (HMR) server such as Vite; This type of error appears when our system has low inotify file watch limit e.g., 8,192. Linux systems usually keep the limit low due to memory consumption considerations. When we run ‘npm run dev‘ command in … Read more
If you’re new to source code management, kindly note that Git and Github are two different things: Git is the version control system to manage the source code; it’s like a command line utility which we install on our local system to manage different versions / changes of our source code. Whereas Github is an … Read more
While considering to install MySQL on Ubuntu 18.04 one should look into a couple of caveats – first, the Ubuntu 18.04 repositories contain the old MySQL version i.e. 5.7; second, people often prefer to move away from MySQL which is now controlled by Oracle Corporation and install MariaDB, which is the fork of MySQL and … Read more
In this tutorial we’ll learn to install Node.js using NVM (Node Version Manager) on Ubuntu (or any Debian based Linux). Here, we’ve used Ubuntu 18.04 but these instructions should work in other versions too. Usually default versions in Linux distro repositories are old ones. Using NVM we can install latest versions of Node.js and can … Read more
In this tutorial, we’ll learn how to deploy Laravel 8 app on DigitalOcean droplet. This tutorial assumes that you have already set up the droplet server using Ubuntu 18.04 LTS (any other Ubuntu version should do just fine) and installed MySQL, Nginx, PHP7.4 (Laravel 8 requires PHP 7.3+ version) along with Composer. And you’ve ssh’d … Read more
In this article we’ll setup Laravel 8 development environment onto MX Linux box. Since MX Linux is based on Debian, the instructions herein, though untested, may still be valid for any Debian based Linux. Unlike previous article where we used Bitnami Lamp bundled software, here we’ll use repositories to individually install all the components required … Read more