August 31, 2010
For a good long time have been a Firefox beta tester. So far, was pretty much settled with Firefox 3.6.x, but now have started to test Firefox 4. So far, the first impression I had was .. “its lighter”. But wait, more on that later.
There is an instant feedback add-on installed with FF4, as simple as “Firefox makes me happy/sad” links.
The rendering engine is better sure. But the big down part of trying new Firefox beat/releases is the lack of support for existing extensions. For me personally, I tend to use extensions with Firefox than say Firefox with extensions! In earlier times, I would just unpack, the xpi files and change the supported Firefox versions. But not right now.
Also, continuing on the observation that this new installation is lighter/faster, I think it goes only as far as installing or enabling all the extensions I use. Yes, no doubt that Firefox is a big memory hogger at times, atleast on the windows platform. My home Firefox(3.6.10Pre on Ubuntu) is much faster I believe.
Will post more updates later.
Leave a Comment » |
firefox | Tagged: firefox, firefox4 |
Permalink
Posted by Ajo Paul
August 5, 2010
Clive is very useful commandline utility to extract video from video websites like youtube.com and vimeo.com. The recent update to youtube url is causing clive to fail for any youtube url, giving unknown http/404 errors. Although the upstream is fixed the ubuntu package is still not updated with the same version i.e as of this writing clive_2.2.12-1.
In the meantime you can download the debian package for sid from here.
1 Comment |
debian, ubuntu, youtube | Tagged: clive |
Permalink
Posted by Ajo Paul
June 6, 2010
Instructions to detect and delete EXE folder viruses. This virus has an extension of .exe corresponding to the folder name in the drive.
For example if a folder has subfolder called as exam there will be an equivalent exam.exe existing too.
In the windows explorer, these exe files will appear as an folder and user is tricked onto click them hence helping it spread to the host machine.
Well, there comes the solution.(OK its for the privileged, but try finding a linux machine in the vicinity, well even Osx for that matter!)
Open a terminal (Usually gnome-terminal or konsole (kde).
* Proceed to the mount location of the usb drive.
$ cd /media/disk
* Look for exe files which have the file size 496
$ find -i iname “*.exe” | xargs -i du {} | grep 496
* Now if you have a listing, do confirm if they resemble the folder names.
* Now proceed to delete them without mercy. Actually a good idea will be to move
them all to a single folder instead of deleting them.
$mkdir /media/disk/quarantine
$ find -i iname “*.exe” | xargs -i du {} | grep 496 | cut -f 2 | xargs -i mv {} /media/disk/quarantine
* Now after verifying that all those exe’s are the culprits, u can purge them all.
Simillarly look for Autorun.inf in the root folder of the drive. Read the contents, most probably it will be a virus file to initiate a trigger .exe
6 Comments |
linux | Tagged: virus, windows |
Permalink
Posted by Ajo Paul
May 31, 2010
To use the Google Webmaster Tools for your blog, you must first add your blog and allow it to be self verified. This way you tell google, that this ‘site’ is indeed yours.
For a blogger account, the help is given here. If you choose the meta tag verification method for your blogspot blogs, here are the steps to get it verified.
Open your dashboard by visiting blogger.com. Proceed to Settings > Layout > Edit HTML > EDIT Template.
In the code provided copy the <meta> content you picked up from the google’s webmaster tools page. After saving the template, proceed to webmaster page and click on verfiy.
Also to update the sitemap url, proceed to http://yourblog.com/robots.txt copy the sitemap url and update it under Webmaster’s sitemap section.
2 Comments |
google | Tagged: blogger, webmaster |
Permalink
Posted by Ajo Paul
May 12, 2010
Consumer and Service & Support for Kingston pen drives and other products in India.
Phone: 044 42015215
Toll Free No. 1860 425 4515.
Detailed listing of service centers here
Bangalore Service Centre.
re-STORE (A Unit of Aforeserve.com Ltd)
No.2, 1st Floor, Chennakeshava Complex
HAL Airport Road, Marathahalli, Opp. Woodland Showroom
Bangalore-560037
080 42197817, 9611334587, 9945345656
Email id : techsupport_india@kingston.com,techsupport.india@kingston.com
2 Comments |
Uncategorized | Tagged: kingston, pen drive |
Permalink
Posted by Ajo Paul
May 11, 2010
One thing common to bsnl broadband (Dataone) users in Bangalore or elsewhere is the frequent disconnection problem. Am not sure if this is a common problem, but I have spent countless times staring at the modem’s adsl link to appear active. Most of the time complaints fall on deaf ears. The home package of Rs. 500 for 2.5GB of use for 2mbps link is just so affordable, that I cant really think of changing the ISP.
Anyways here are the few links.
http://www.bangaloretelecom.com/index.php
http://www.bangaloretelecom.com/dataone/dataone_compl.php
Phone.
From BSNL Landline : 1504
From Other phones: 1800-424-1600 , 080 29538198
1 Comment |
bsnl | Tagged: bsnl, dataone, broadband |
Permalink
Posted by Ajo Paul
May 1, 2010
By default the document root folder for apache2 in Ubuntu is /var/www. This were you can store your site documents. In order to change the default site location to a different one, /opt/mysite use the following method. A detailed steps to install LAMP on ubuntu is given here.
To do this, we must create a new site and then enable it in Apache2.
To create a new site:
Copy the default website as a starting point. sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/mysite
Edit the new configuration file in a text editor “sudo nano” on the command line or “gksudo gedit”, for example: gksudo gedit /etc/apache2/sites-available/mysite
Change the DocumentRoot to point to the new location. For example, /opt/mysite
Change the Directory directive, replace <Directory /var/www/> to <Directory /opt/mysite/>
You can also set separate logs for each site. To do this, change the ErrorLog and CustomLog directives. This is optional, but handy if you have many sites
Save the file
Now, we must deactivate the old site, and activate our new one. Ubuntu provides two small utilities that take care of this: a2ensite (apache2enable site) and a2dissite (apache2disable site).
sudo a2dissite default && sudo a2ensite mysite
Finally, we restart Apache2:
sudo /etc/init.d/apache2 restart
Leave a Comment » |
apache2, ubuntu | Tagged: apace2, ubuntu |
Permalink
Posted by Ajo Paul
April 21, 2010
Shell provides easy way of renaming multiple files.
Eg: your directory has ’01 – Song1.mp3′, ’02 – Song2.mp3′, ’03 – Song3.mp3′ and you want to rename them to .txt. use the following commane.
$rename mp3 txt *.mp3
The above command renames .mp3 files to .txt.
An alternate script solution from here
#!/bin/sh
ls *.mp3|while read file
do
target=`echo $file|cut -d . -f 1`
#mv "$file" "$target.txt"
echo "$target.txt"
done
First test the above script by seeing the echo "$target.txt" output then uncomment the line above it and comment this line.
Leave a Comment » |
linux, script | Tagged: linux, shell script |
Permalink
Posted by Ajo Paul