Author Archives: Silver Moon

About Silver Moon

A Tech Enthusiast, Blogger, Linux Fan and a Software Developer. Writes about Computer hardware, Linux and Open Source software and coding in Python, Php and Javascript. He can be reached at [email protected].

Quick Command to check CentOS version

By | April 30, 2023

If you are running a centos server for example then you might need to check the version number and kernel version. This is important to know if you are running the latest version or not and what updates are available for your version. This is an absolutely basic task for a sys admin to find… Read More »

How to Install Xfce desktop on Debian 7 wheezy

By | August 1, 2020

Xfce Desktop Xfce is a lightweight desktop environment system for linux, and is a good alternative to the complex and clumsy gnome. If you are running Debian linux on your computer, then you can easily install the Xfce desktop. In this post I am going to show you how to install xfce on debian. Install… Read More »

Install KDE desktop on Debian 7 wheezy

By | July 3, 2013

KDE In this post I will show you how to install the kde desktop on Debian 7 (wheezy). The packages for the kde desktop are available in the default repository of debian and can be installed directly from synaptic or apt-get. There are 3 different sized kde desktop packages that can be installed depending on… Read More »

How to Install Htop on centos 6.4

By | April 30, 2023

Htop on centos When it comes to monitoring the cpu and ram usage on your linux machine, htop is the best tool to use. It is an ncurses based commandline too that does not require any gui like desktop, but still provides a very interactive and featureful interface to monitor processes running on the system… Read More »

Redirect non-www url to www in nginx

By | June 17, 2013

Nginx Recently I was setting up nginx on my new server where this blog is being hosted. Nginx is very different from the more popular apache web server in many ways. It has an event driven architecture which makes it much faster and high traffic tolerant compared to apache. In apache the redirects used to… Read More »

Output buffering in php and apache

By | June 18, 2013

Output Buffering Output buffering is processing mechanism where the output being generated by a program is held in a place till its size reaches a limit or the generation is complete. Only after, will the output be send to its destination. In php for example, doing and echo generates some output. Now this output might… Read More »