Archive
Mount and Unmout ISO Files in Ubuntu
Mount ISO File
First you need to make the directory to put the ISO file into using the following command
sudo mkdir /media/isodir
Then use following command
sudo mount your_image_file.iso /media/isodir/ -t iso9660 -o loop
Now you should have your iso file mounted, and accessible from your desktop.
Unmount ISO File
Just use following command
sudo umount /media/isodir
RIP IE6 for god’s sake
if i hate Microsoft , IE6 will be the reason not BSOD not security not stability , “IE6” i wish it vanish for good
RIPIE6 to donate for memorial service
intel Sponsors of Tomorrow – ads
this Intel ad’s are hilarious. i love them
Remove or force www from domain name
its very simple SEO trick to avoid duplicate content on Google search engine and increase your rank , you have to chose which one suit you www or non-www
first you have to enable “rewrite mod” which is apache server feature click here
then use the following lines in your .htaccess file
to remove WWW
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
to force WWW
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
Please, note that the .htaccess should be located in the web site main folder.
for farther reading about .htaccess Check this great post



