Showing posts with label web server. Show all posts
Showing posts with label web server. Show all posts

Wednesday, June 20, 2018

How to install Node JS using NVM

How to install Node JS using NVM

The best way to install Node JS on lubuntu (and linux in general) is by using NVM (Node Version Manager), because you can get the latest stable Node JS as well as the future release of Node JS with NVM, so it's more flexible to switch from one version to another. In this article i will show you how to install Node JS via NVM.

Saturday, June 2, 2018

How to install Google Chrome on Lubuntu 18.04

How to install Google Chrome on Lubuntu 18.04

Lubuntu 18.04 bionic beaver comes with mozilla firefox as default web browser, but some of us prefer chrome over firefox. So in this article i will show you how to install google chrome on lubuntu 18.04.

Wednesday, February 28, 2018

How to install Docker CE on Lubuntu 17.10

How to install Docker CE on Lubuntu 17.10

Docker is a very important tool for developers, devops and system administrator, docker can make those people life easier. In this tutorial i will show you how to install docker ce (community edition) on lubuntu 17.10 artful.

How to install Docker CE on Lubuntu 16.04

How to install Docker CE on Lubuntu 16.04

Docker is a very important tool for developers, devops and system administrator, docker can make those people life easier. In this tutorial i will show you how to install docker ce (community edition) on lubuntu 16.04 xenial.

Thursday, December 14, 2017

List of software that i always have on Lubuntu

List of software that i always have on Lubuntu

Whenever a new version of lubuntu coming up (specially the LTS), i always backup my data and then do fresh install, after that i will install software that very important for me. So basically i have list of software that i always have on lubuntu, these software are essential for me, i use them all the time.

Monday, December 11, 2017

How to install HHVM on Lubuntu 17.10

How to install HHVM on Lubuntu 17.10

In this article i will show you how to install HHVM on lubuntu 17.10, some of you may not know about HHVM, what is HHVM? HHVM is like virtual machine or execution engine for php and hack programming language.

Monday, November 20, 2017

How to switch between PHP 5.6 to 7.1 and vice versa

How to switch between PHP 5.6 to 7.1 and vice versa

You can have more than one php version installed on your system, for example you have php 5.6 and php 7.1, but only one can be active at the moment, so basically you can switch back and forth between the two easily, no need to uninstall one version in order to use the other. In this tutorial i will show you how to switch from php 5.6 to php 7.1 and vice versa.

How to install PHP 5.6 on Lubuntu 17.10

How to install PHP 5.6 on Lubuntu 17.10

Lubuntu 17.10 artful aardvark comes with php version 7.1 in the repository, but if you want to have the old php 5.6 back, probably because you are working on a project which works well on php 5.6 but not working very well on php 7.1, then installing php 5.6 is make sense.

Friday, November 10, 2017

How to install Laravel 5.5 on Lubuntu 17.10

How to install Laravel 5.5 on Lubuntu 17.10

Laravel is the most popular web framework for php language, currently the latest stable version of laravel is version 5.5, if you are still using older version of laravel, it's time to upgrade or at least take a look at some of the new features in laravel 5.5, but before that we need to install it first on our lubuntu machine.

Wednesday, November 8, 2017

How to install MyTop on Lubuntu 17.10



How to install MyTop on Lubuntu 17.10

MyTop is a command line tool for monitoring mysql database query, very handy if you want to see what's going on behind the scene on your mysql database server. In this article i will show you how to install and how to use mytop on lubuntu 17.10 artful.

Tuesday, November 7, 2017

How to install MongoDB on Lubuntu 17.10

How to install MongoDB on Lubuntu 17.10

MongoDB is the most popular noSQL type database out there, high performance schema free database, totally different from the regular relationship database that use SQL. In this article i will guide you on how to install MongoDB on lubuntu 17.10 artful. 

Monday, November 6, 2017

How to install XAMPP on Lubuntu 17.10

How to install XAMPP on Lubuntu 17.10

If you don't like installing separately one by one for PHP, MySQL, and Apache web server, maybe you prefer using LAMP stack such as XAMPP, then go for it use XAMPP. In this article i will help you on how to install and use XAMPP on lubuntu 17.10 artful.

How to install PHP MySQL on Lubuntu 17.10

How to install PHP MySQL on Lubuntu 17.10

Alright after installing apache web server, now we can install php and mysql database. By default lubuntu 17.10 has php version 7.1 and mysql 5.7 in the repo, so we are going to install that. In this article i'm going to show you how to install php and mysql on lubuntu 17.10 artful.

Sunday, November 5, 2017

How to install Apache Web Server on Lubuntu 17.10

How to install Apache Web Server on Lubuntu 17.10

You will need a web server if you want to develop website on localhost, people usually use apache 2 for web server whether on localhost or on real production server. In this article i will show you how to install apache web server on lubuntu 17.10.

Friday, October 27, 2017

How to install XAMPP on Lubuntu 16.04

How to install XAMPP on Lubuntu 16.04

On lubuntu/ubuntu you can install Apache web server, PHP and MySQL separately as a service, but you can also use LAMP stack such as XAMPP. In this article i will show you how to install the latest XAMPP on Lubuntu 16.04.

Tuesday, October 24, 2017

How to install MongoDB on Lubuntu 16.04

How to install MongoDB on Lubuntu 16.04

MongoDB is a high performance, schema free document oriented database, sometimes referred as no-SQL database. MongoDB is perfect for storing large data that has no relationship with other table/collection, in this article i'm going to show you how to install MongoDB on Lubuntu 16.04.

Thursday, October 19, 2017

15 most important Git command

15 most important Git command

If you are a web developer or software developer in general, you must be familiar with git as a tool for version control and github as place where you push your codes. Learning git is a must for every software developer, even if you are working alone and not on a team.

Monday, October 16, 2017

Saturday, September 30, 2017

How to upgrade NodeJs on Lubuntu 16.04

How to upgrade NodeJs on Lubuntu 16.04

If you have lubuntu 16.04 and you already install nodejs on your machine, you will see that the nodejs version is not the latest one. We need to find a way to upgrade nodejs on our lubuntu.

Friday, September 22, 2017

How to setup Python Flask on Lubuntu


Flask is a micro framework for python programming language, if you already know basic of python, the next step is to learn the framework. In this article i will show you how to setup a new project with python flask framework on lubuntu operating system.