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].

Ajax based streaming and progress monitor

By | May 2, 2023

Streaming (Comet) Streaming means to send content part by part at some intervals in the same request. Or in other words, the client is able to process the response part by part, instead of waiting for the whole transfer to complete. In the context of http and web applications it is more specifically called Comet…. Read More »

How to Create Password Protected ZIP Archives on Ubuntu

By | August 15, 2020

Password Protected Zip Files Often times we need to create secure zip files that cannot be opened by anyone other than the intended recipient. The simplest way to do this is by creating an encrypted zip file. On Linux systems the popular archive format “tar” does not support encryption natively. But “zip” format does support… Read More »

Monitor and auto restart crond in cpanel/whm

By | June 9, 2013

Crond is the cron daemon that is responsible for running the cron tasks of all users on a linux system. Most hosting providers provide it on the servers they sell. Cpanel is a popular server management application that can manage various such daemons and services and restart them if they shut down for some reason…. Read More »

How to Get the UUID of devices on Linux, Ubuntu, Debian

By | July 28, 2020

Unique identifier for each storage device UUID is the “universally unique identifier” that is assigned to devices on a linux system for the purpose of identification. For example if your hard disk has 3 partitions then each partition is a device and has a uuid. Similarly cd/dvd, usb drives etc all are assigned a uuid…. Read More »

Speed up menus in lxde desktop

By | February 26, 2013

Here is a quick trick that can speed up the main/navigation menus and menus in file manager like pcmanfm inside the lxde desktop. This trick is a setting for the gtk library. 1. Open the file named .gtkrc-2.0 in the home directory. If the file does not exist, then create one. 2. Put in the… Read More »

Speed up mouse click speed on lxde desktop

By | February 26, 2013

The lxde desktop is a lightweight desktop for linux systems. Similar to xfce but requires lesser resources than the heavier gnome and kde desktops. Many linux distros have a lxde spin as well for those who prefer the lxde desktops. For example Lubuntu is the lxde variant of ubuntu. Fedora too has a lxde version…. Read More »

Install Backtrack 5 rc3 on virtualbox

By | February 25, 2013

Backtrack 5 rc3 is at the present the latest release of backtrack linux and is based on ubuntu. Virtualbox supports such oses very well and installation of guest additions is also very swift and smooth. So now we are going to install the backtrack distro inside Virtualbox. Get the latest virtualbox for your system (windows,… Read More »

Install Virtualbox Guest Additions in OpenSUSE 12.2

By | January 15, 2023

Opensuse 12.2 by default has the virtualbox guest additions inbuilt. But if you want to reinstall then follow the steps. First install the C compiler and make utilities required to compile the guest additions. sudo zypper in gcc make Now install the kernel development packages for the current distro version Find the kernel type ~>… Read More »

Wget – automatically resume broken downloads

By | February 20, 2013

Wget is a commandline utility to download files over the http protocols. To download a file for example the syntax would be $ wget http://www.somesite.com/file.zip The above command will start downloading the file and save it in the home directory of the user. However if the download breaks, due to poor internet for example then… Read More »