How to add SWAP space on Ubuntu / Debian linux server? SWAP is virtual memory outside of installed physical memory (RAM). Check the system to see if SWAP information already exists: free -h sudo swapon --show Check free space on the partition: df -h Creat... Linux Ubuntu
Gatsby JS debugging - limit of file watchers reached on Ubuntu / Debian linux system This problem is caused by the way Gatsby.js works, generates static files and optimizes photos, which easily exceeds the defined Listen limit for the number of files that the Linux OS monitors per dir... Gatsby JS Linux Ubuntu
How to add Google fonts to Ubuntu / Debian linux system? Download Google Fonts from: https://github.com/google/fonts/archive/master.zip [1] Create a “.fonts” directory in “home” using the terminal and the command: mkdir ~/.fonts Unzip the contents of the do... Git Linux Ubuntu
How to enable mod_rewrite in Apache server on Ubuntu / Debian linux server? **What is mod_rewrite?** The mod_rewrite module uses a rule-based rewriting mechanism and a regular PCRE parser to rearrange the requested URLs upon request. By default, mod_rewrite maps the URL to th... Apache Linux Ubuntu
How to set up LAMP stack on Ubuntu / Debian linux server? **What is a LAMP?** LAMP is an archetypal model of a set of web services, named as an abbreviation of the names of its original four open components: the Linux operating system, the Apache HTTP server... LAMP Linux Ubuntu
How to install PhpMyAdmin on Ubuntu / Debian linux server? **What is phpMyAdmin?** phpMyAdmin is a free software tool written in PHP, designed to manage MySQL over the Internet. phpMyAdmin supports a wide range of operations on MySQL and MariaDB databases. Fr... Linux PhpMyAdmin Ubuntu