How to Install Ruby on Rails on Arch Linux with RVM

Introduction   Ruby on Rails is an open source web framework that runs on Ruby programming language. The integrated use of Ruby programming language and Rails development framework makes it popular among developers creating sites and web apps. Installing Ruby on Rails on to a virtual private server does take some time and that’s what…

How To Deploy Node.js Applications Using Systemd and Nginx

Introduction Duringinstallation of any web application to a Droplet, it’s quite alluring to simply utilize the similar setup as was used during i.e. running “node server.js” in a terminal or “ruby app.rb” to start the server. This is not only easy and simple, but it also provides visible logs. One can also utilize“nohup”  or “tmux”…

How to Install LEMP Stack on Arch Linux

Introduction LEMP is an open source software configuration used in web server and it stands for Linux, Nginx, MySQL, and PHP. This tutorial describes how to install LEMP stack on to your Arch Linux system. The only difference between LAMP and LEMP stack is the web server in which the stack runs. Before we get…

How to Create an SSL Certificate on Apache on Arch Linux

Introduction Self Signed Certificates are useful for securing the information between web server and the user. A secure connection will be made by encrypting the site’s information. An SSL certificate can reveal the virtual private server’s identification information to the site visitors. This tutorial will guide you to create and install Self Signed Certificates on…

How to Add a Swap File on an Arch Linux Cloud Server

Introduction Addition of some swap space is  a great alternative for increasing the responsiveness of your cloud server. Swap is that space of the hard drive which can be utilized for transitorily holding that information which typically reside in RAM. This results in the availability of increased RAM for your processes that are running currently. …

How to Install WordPress on Arch Linux

Introduction In this tutorial you will learn how to install WordPress on Arch Linux. WordPress is a free and open source Content Management System, built on PHP and MySQL. It provides over 30,000 plugins for easy customization of appearance and functionality. WordPress is the most popular blogging platform, estimated to be running on 60 million…

Installation and Setup of ownCloud on Arch Linux

Preconditions This tutorial presumes that a preferred stack like LAMP stack is  already deployed and configured on the system. If a file or a command needs changes at any time, then the text to be changed will appear red. ownCloud- what is it? An open source, online storage solution- ownCloud is very similar to Google Drive or…

How to Install LAMP stack on Arch Linux

Introduction LAMP is the most common configuration used in web server and it stands for Linux, Apache, MySQL, and PHP. This tutorial describes how to install LAMP stack on to your Arch Linux system. Pacman, a package manager designed specifically for Arch Linux will be used to install and update all required software packages. Installing…