Category Archives: Ubuntu

Ubuntu tips and tricks

Best puzzle solving games for ubuntu

By | May 15, 2023

Here is a list of most popular puzzle games on Ubuntu Linux Marble Arena 2 Excellent graphics and colorful. This is a game where a marble is to be moved around and points to be collected. Project website http://www.marble-arena.com/ Install on ubuntu 1. Download Linux version from http://www.marble-arena.com/ 2. Install libwebkit1.1-cil from synaptic 3. Extract… Read More »

Best php ide and web development tools on ubuntu

By | May 10, 2020

There are a lot of IDEs for ubuntu for doing php related web development. Lets see a few. Aptana Studio Supports PHP, Ruby, Python and more. Autosuggest dropdowns available, Integrated preview available. Project website http://www.aptana.com/ Install on ubuntu Download from http://www.aptana.com/ Quanta Quanta is the Dreamweaver of Linux. However it is not developed anymore. As… Read More »

Install Quanta on Ubuntu 11.10

By | May 10, 2020

I upgraded my ubuntu few hours back from 11.04 to 11.10 ; it all went fine. After the upgrade I noticed that Quanta – my favorite php development tool had vanished. Doing few searches on google lead to the information that its now deprecated and not maintained in the repos anymore. So I got it… Read More »

Traceroute command not working on Ubuntu

By | August 4, 2012

The traceroute utility can be installed from synaptic : $ sudo apt-get install traceroute Some Information : $ traceroute -V Modern traceroute for Linux, version 2.0.15, Oct 17 2010 Copyright (c) 2008 Dmitry Butskoy, License: GPL v2 or any later Doing some test runs $ traceroute www.google.com traceroute to www.google.com (74.125.235.20), 30 hops max, 60… Read More »

Convert vcd dat file to mpeg on ubuntu

By | September 28, 2011

VCDs that are played on vcd players often contain the video in dat format. The dat format is internally mpeg only but has some additional header information attached. So the mpeg portion has to be ripped off to get the mpeg format. Once converted to mpeg format, it can be processed inside any video editor…. Read More »

Install Ruby 1.9.2 on Ubuntu

By | July 30, 2020

As you all know Ruby is one of the most popular programming language on the web. It is recommended to install ruby 1.9.2 instead of 1.8.x I tried to install ruby from the package manager on Ubuntu, but ruby 1.9.2 is not there in the repo. So, I am going to show you how to… Read More »

Install php xdebug profiler on ubuntu

By | April 7, 2010

Install Xdebug Install the packages from synaptic package manager sudo apt-get install php5-dev php5-xdebug Configure php to use xdebug extension Locate the path to xdebug.so file martin@martin-dev:/$ find / -name 'xdebug.so' 2> /dev/null /usr/lib/php5/20060613/xdebug.so An alternative command to find the xdebug.so file is using dpkg and grep as follows $ dpkg -L php5-xdebug | grep… Read More »

Cgi bin directory for each user in Apache

By | May 9, 2020

This page http://httpd.apache.org/docs/2.2/howto/cgi.html describes how to give each user his own cg-bin directory. The following lines should be added to the Apache configuration file http.conf : <Directory /home/*/public_html/cgi-bin> Options ExecCGI SetHandler cgi-script </Directory> Along with this there are some more points to be kept in mind. If you .htaccess file has a section like this… Read More »