Showing posts with label programming. Show all posts
Showing posts with label programming. Show all posts

Friday, March 17, 2017

How to install Android Studio on Ubuntu



Android studio is the standard IDE for developing android apps, it is the official development tool for android, therefore if you want to develop some apps you need to have android studio installed on your ubuntu.

Tuesday, March 14, 2017

How to monitor LAN traffic on Ubuntu


Monitoring network traffic on your own local area network (LAN) can be a difficult and frustrating task, luckily on ubuntu we have a special tool for monitoring network on LAN, called iptraf. In this article i will talk about iptraf, how to install and how to use this tool.

Monday, February 6, 2017

How to use Graphviz with PHP on Ubuntu


On the previous post, i show you how to install and use graphviz on ubuntu, let's take it to another level, this article i will show you cool tricks using graphviz, php and apache web server.

Sunday, February 5, 2017

How to install and use Graphviz on Ubuntu


Graphviz is an open source tool for creating diagrams on ubuntu, you can create flowchart, data structure and all kind of scientific diagrams using graphviz.

Tuesday, January 10, 2017

How to change default apps on Ubuntu


This is another beginner tutorial, on ubuntu you can change default application for several category such as default app for web browser, default app for email client, default app for music, and so on. In this tutorial i'm going to show you how to change default app on ubuntu.

Saturday, January 7, 2017

Showing MySQL process using MyTop


When working with mysql database server, it would be great if we can monitor all process that's happening inside the database server, this kind of feature could be handy during performance test.

How to reset MySQL root password on Ubuntu


When you install mysql database server on ubuntu, you will prompted to enter password for user root, if you skip this password or leave it blank, you are out of luck my friend, because you can't login to mysql database server.

Friday, January 6, 2017

How to check Apache web server version on Ubuntu

How to check Apache web server version

Okay you probably have apache web server running on your server or your local computer or on virtual machine or somewhere else, whatever it doesn't matter, what i want to know is how to show the version of the apache web server.

How to install PHP MySQL on Ubuntu 16.04


I believe since ubuntu 16.04 LTS, the default php version on ubuntu repo is php version 7.0, so if you want php on ubuntu 16.04, you have to use php 7.0.

Thursday, January 5, 2017

How to install ElasticSearch plugin head on Ubuntu


Besides kibana, elasticsearch itself have it's own plugin, and one of the common plugin that people use on elasticsearch is the 'head' plugin. Using this plugin you can manage elasticsearch data with a nice clean web interface, it's almost like phpmyadmin for mysql.

Sunday, January 1, 2017

How to install Kibana plugins (Sense, Marvel, Timelion)


Kibana is a powerful tool for visualize elasticsearch data, kibana can be even more powerful if you install plugins that available for it, such as sense, marvel, timelion, etc. Note that this tutorial is based on kibana version 4.5.1, newer kibanan version might be different.

How to install Kibana on Ubuntu


Kibana is web based dashboard for elasticsearch, and if you are playing with elasticsearch you might want to install kibana as well. Using kibana you can visualize your elasticsearch data.

Saturday, December 31, 2016

How to install ElasticSearch on Ubuntu


Elasticsearch is a powerful search engine tool for any application that needs relevance search, which simply can't be done using relational databases query. For learning purpose you can setup elasticsearch on your local computer.

How to install Oracle Java on Ubuntu


There are two kinds of java, oracle java JDK and open JDK, you can install both on ubuntu, but only one will be active JDK at one time. This article is about installing oracle java development kit (JDK) on ubuntu.

Thursday, December 29, 2016

How to install docker-machine on Ubuntu 16.04


If you want to provision or manage docker host remotely from your local computer, you will need to install docker-machine. This article i will show you how to install docker-machine on ubuntu.

Tuesday, December 20, 2016

How to install Docker on Ubuntu 16.04



Docker is very popular tool for containerization, docker containers wrap a piece of software in a complete filesystem that contains everything needed to run: code, runtime, system tools, system libraries – anything that can be installed on a server.

Saturday, February 20, 2016

How to install Laravel on Ubuntu


If you are php programmer/developer, you might want to try to use laravel framework, it's one of the best framework for php, in this article i will show you how to install/create laravel project on ubuntu.

How to install Composer on Ubuntu


If you are a php developer, you might want to install composer on your ubuntu, because composer is a package dependencies management tool for php, very similar as npm (node js) and bundler (ruby).

How to install Mcrypt on Ubuntu


Mcrypt is one of the most important module for php, it enables encryption which uses by majority of php framework such as laravel. In this article i will show you how to install mcrypt module for php 5 on lubuntu.

Monday, January 25, 2016

How to compile and run C/C++ program on Ubuntu


Okay, on previous article i show you how to install C/C++ compiler on ubuntu, now it's time for me to show you how to write a C and C++ source code and then compile and run it.