How to Install Anchor CMS on Debian 9
Anchor is a super-simple, lightweight blog system written in PHP. Anchor's source code is hosted on GitHub. In this tutorial, we will go through the Anchor CMS installation process on a Debian 9...
View ArticleLinux C Programming Tutorial Part 20 - Pointer address arithmetic
In our previous tutorial in this ongoing C Programming series, we discussed pointers in a bit of detail. Extending that discussion, here we are with some more discussion worthy concepts related to...
View ArticleThe Perfect Server CentOS 7.6 with Apache, PHP 7.2, Postfix, Dovecot,...
This tutorial shows how to install ISPConfig 3.1 on a CentOS 7.6 (64Bit) server. ISPConfig 3 is a web hosting control panel that allows you to configure the following services through a web browser:...
View ArticleInstalling Ubuntu Cloud as RDP-enabled Remote Desktop in an offline Openstack...
In this tutorial, we’ll be deploying an RDP-enabled Linux host serving as a Remote Desktop on a limited access (no internet connectivity) environment. For that purpose, we’ll be using two mirrored...
View ArticleHow to configure an NFS server and mount NFS shares on Ubuntu 18.04
Network File System (NFS) is a popular distributed filesystem protocol that enables users to mount remote directories on their server. The system lets you leverage storage space in a different location...
View ArticleLinux C Programming tutorial Part 21: Character pointers, array of pointers,...
The concept of pointers is indeed one of the very important concepts in the C programming language. Up until now, we have discussed several aspects of pointers in C. Expanding on that, in this...
View ArticleAnsible Guide: Create Ansible Playbook for LEMP Stack
Ansible is a simple automation tool that automates software application deployment, cloud provisioning, and configuration management. In this tutorial, we're going to show you how to create basic...
View ArticleLinux C Programming tutorial part 22 - Accessing command line arguments...
In the previous tutorial, we discussed multiple concepts related to pointers in C programming language. One of the concepts we discussed was an array of pointers.
View ArticleHow to Install OpenVPN Server and Client with Easy-RSA 3 on CentOS 7
OpenVPN is an open source application that allows you to create a secure private network over the public internet. In this tutorial, we will show you how to step-by-step install and configure OpenVPN...
View ArticleHow to install Stacer System Monitor on Ubuntu 18.04 LTS
Stacer is an open source tool to monitor the performance of an Ubuntu Desktop. It provides a user-friendly dashboard that can be used to monitor CPU, Memory & Disk Usage, and System cleaner to...
View ArticleHow to Install Craft CMS on Debian 9
This tutorial will walk you through the Craft CMS installation procedure on a fresh Debian 9 server using Nginx as the web server and we will secure the website with a Let's encrypt SSL certificate.
View ArticleHow to Install and Configure TaskBoard on Ubuntu 18.04 LTS
TaskBoard is an open source Kanban-inspired app that can be used to keep track of things that need to get done. In this tutorial, we will learn how to install TaskBoard on Ubuntu 18.04 server.
View ArticleLinux C Programming Tutorial Part 23 - Structures
So far in this ongoing C programming tutorial series, we have discussed several aspects, ranging from variables to functions to even pointers. However, that's still like scratching the surface, as...
View ArticleHow to Install October CMS with Nginx on Fedora 29
October CMS is a free, open-source, self-hosted CMS platform based on the Laravel PHP Framework. In this tutorial, we will go through the October CMS installation on Fedora 29 system by using Nginx as...
View ArticleHow to Install Phorum with Nginx on Ubuntu 18.04 LTS
Phorum is a PHP and MySQL based Open Source forum software. In this guide, we will guide you step-by-step through the Phorum installation process on the Ubuntu 18.04 LTS operating system using Nginx as...
View ArticleAnsible Guide: Manage Files using Ansible
In this guide, I'll show you how to manage files using ansible modules. You will learn how to copy, edit, insert, download and replace files using Ansible.
View ArticleLinux C Programming Tutorial Part 24 - Multi dimensional arrays
If you're following this ongoing C programming tutorial series, you'd be aware of the concept of arrays. To quickly refresh, arrays are used to store multiple values of the same type in continuous...
View ArticleHow to create a Jailed SSH User with Jailkit on Debian 9 (Stretch)
This document describes how to install and configure Jailkit in Debian 9 Server. Jailkit is a set of utilities to limit user accounts to specific files using chroot() and or specific commands. Setting...
View ArticleHow to Install Bludit CMS with NGINX on Ubuntu 18.04 LTS
Bludit is a simple, fast, secure, flat-file CMS that allows you to create your own website or blog in seconds. In this tutorial, we will go through the Bludit CMS installation and setup on Ubuntu 18.04...
View ArticleLinux C Programming Tutorial Part 25 - Function pointers
Just like we have pointers to variables, there can also be pointers to functions. Following is an example of a function pointer declaration.
View Article