As we know Unix is a multi-user and multi-task operating system. It means that at every instant there might be programs of several users be running in memory. all these programs share the CPU’s attention between them. What is a…
Category: linux
Shell Script to Run Django Development Server Automatically
We all know how boring it can be to start the django development server each time. entering the same commands over and over. The good news is that you can write a simple shell script to do so. and after…
How to upgrade Ubuntu 16.04 to 18.04
Ubuntu 18.04 aka Bionic Beaver was released on 26 April this year. This is a LTS (Long Term Support) Release. It was one of the most awaited release version. In this tutorial we will see how to upgrade ubuntu 16.04…
How to Install Gummi LaTex editor for Ubuntu 18.04 / 16.04
Gummi is a Latex Editor. it is available for both Linux and Windows platform. Gummi has a Live preview, unlike command line tools where you need to compile the tex file to product the pdf. It supports insertion of tables…
How to install Google Chrome on Ubuntu / Linux mint [via PPA]
Google Chrome, the most popular browser, is available for Linux. While Chromium, the open source version of chrome is there by default in ubuntu repository, we need to add google chrome source to the repository by ourself. Follow the below…
How to compile and run Java program in Linux / Ubuntu Terminal
Writing a Java program is quite straight forward in Linux systems, no matter what linux distro (Linux Mint / Ubuntu / Debian / Arch Linux) you have, the steps will same except for step 1 which is installation, it may…
Place a static file in root directory in Apache Server
Sometimes you are required to place files like sitemaps or other files in the root location. Specially while using Web frameworks like Django or anything else, It can be bit tricky to do so within the framework.. So this method…
Install JavaScript & CSS Minifier in Sublime text 3
This is a short guide on how to install Javascript & CSS Minifier, called Sublime-Minifier. This minifier works for both sublime text 2 and 3 and supports all platforms – Linux, Mac OS & Windows. 1. using git, clone the following…
Simple Hello World page with django 1.9 in Ubuntu / Linux Mint [Beginners] [Part – 1]
Django is a web framework written in python. It is good for fast web application development. In this tutorial we will learn how to make a simple web page showing “Hello World” using django templates. we will also be applying…
How to make a gui Calculator in Python using Tkinter
I have written a basic & simple GUI calculator in python using Tkinter module. Since Tkinter is cross-platform so it works on both windows and Linux. If you are a beginner, and want to learn some basic GUI with python,…