<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-603722529004266869</id><updated>2012-01-12T01:54:01.994-08:00</updated><category term='awk'/><category term='Fedora'/><category term='Joomla'/><category term='Linux'/><category term='Ghostscript'/><category term='Audio Video Manipulation'/><category term='Content Management Systems'/><category term='Ubuntu'/><category term='Font Problems'/><category term='Latex'/><category term='Skype'/><category term='Mathematica'/><category term='Mathabx'/><category term='Utilities'/><title type='text'>Tech Bites</title><subtitle type='html'>This blog features small tricks to accomplish day-to-day computer tasks.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-4432453249134746769</id><published>2010-12-06T02:35:00.000-08:00</published><updated>2010-12-06T02:38:14.445-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ghostscript'/><title type='text'>Using Ghostscript to concatenate two pdf files</title><content type='html'>&lt;tt&gt;Install Ghostscript and use the following syntax -&lt;br /&gt;&lt;br /&gt;gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=final.pdf file1.pdf file2.pdf&lt;br /&gt;&lt;/tt&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-4432453249134746769?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/4432453249134746769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=4432453249134746769' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/4432453249134746769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/4432453249134746769'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2010/12/using-ghostscript-to-concatenate-two.html' title='Using Ghostscript to concatenate two pdf files'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-529751533421705559</id><published>2010-02-07T11:43:00.001-08:00</published><updated>2010-02-07T11:44:11.014-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='awk'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Extracting fields from multiple files using awk</title><content type='html'>Say, you have two files file1 and file2 containing data in the tabular form in 3 columns each and you want to extract column 2 of file1 and column 1 of file2. We can do it using the combination of paste and awk commands as follows:&lt;br /&gt;&lt;br /&gt;paste file1 file2 | awk '{print $2 " " $4}'&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We can do more! Suppose you want to add column 1 of file1 to column 3 of file2. This can be accomplished using the following command:&lt;br /&gt;&lt;br /&gt;paste file1 file2 | awk '{print $1-$6}'&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-529751533421705559?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/529751533421705559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=529751533421705559' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/529751533421705559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/529751533421705559'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2010/02/extracting-fields-from-multiple-files.html' title='Extracting fields from multiple files using awk'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-7651101777243817680</id><published>2009-09-27T23:42:00.000-07:00</published><updated>2010-05-14T02:16:26.926-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mathabx'/><category scheme='http://www.blogger.com/atom/ns#' term='Latex'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Installing Mathabx package for latex in Ubuntu</title><content type='html'>Mathabx is an important symbol library for latex. The full list of available symbols in latex can be found &lt;a href="http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"&gt;here&lt;/a&gt;. Following steps will help one to install mathabx in Ubuntu 9.04.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Download mathabx.zip from the following &lt;a href="http://www.ctan.org/get/fonts/mathabx.zip"&gt;link&lt;/a&gt;.&lt;/li&gt;&lt;li style="color: rgb(102, 102, 102);"&gt;$ unzip mathabx.zip&lt;/li&gt;&lt;li style="color: rgb(102, 102, 102);"&gt;$ cd mathabx&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;$ sudo mkdir $TEXMF/fonts/source/public/mathabx&lt;/span&gt;&lt;br /&gt;In Ubuntu 9.04, TEXMF is /usr/share/texmf-texlive&lt;/li&gt;&lt;li style="color: rgb(102, 102, 102);"&gt;sudo cp source/*.mf $TEXMF/fonts/source/public/mathabx&lt;/li&gt;&lt;li style="color: rgb(102, 102, 102);"&gt;sudo cp texinputs/* $TEXMF/tex/generic/misc/&lt;/li&gt;&lt;li&gt;Update the database&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;$ sudo texconfig rehash&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Update the format file&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;$ sudo fmtutil --refresh&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;When you build your tex document, you might get an error that /Asterisk is defined again - To avoid that, comment the line in mathabx.dcl where /Asterisk is defined.&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;$ sudo gedit $TEXMF/tex/generic/misc/mathabx.dcl &lt;/span&gt;&lt;br /&gt;Search for line where /Asterisk is present in mathabx.dcl and put a % sign at the start of the line.&lt;/li&gt;&lt;li&gt;You are all set!&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-7651101777243817680?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/7651101777243817680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=7651101777243817680' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/7651101777243817680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/7651101777243817680'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2009/09/installing-mathabx-package-for-latex-in.html' title='Installing Mathabx package for latex in Ubuntu'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-6020499255262040634</id><published>2009-05-14T01:47:00.000-07:00</published><updated>2009-05-14T01:56:07.919-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Utilities'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Scheduled Shutdown using cron</title><content type='html'>Use the command&lt;br /&gt;&lt;blockquote&gt;$  crontab -e&lt;/blockquote&gt;In the editor window write&lt;br /&gt;&lt;blockquote&gt;0 9 * * * /sbin/shutdown -h now&lt;/blockquote&gt;This will shutdown your computer at 9 hrs. After this restart cron service:&lt;br /&gt;&lt;blockquote&gt;sudo /etc/init.d/cron restart&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-6020499255262040634?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/6020499255262040634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=6020499255262040634' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/6020499255262040634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/6020499255262040634'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2009/05/scheduled-shutdown-using-cron.html' title='Scheduled Shutdown using cron'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-5357815879985667381</id><published>2009-05-12T03:44:00.000-07:00</published><updated>2009-05-12T03:48:02.866-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Change file permissions recursively without affecting directories</title><content type='html'>If you want to change the permissions of the file to 600 without affecting the directories permissions, use the following command:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;find . ! -type d -exec chmod 600 {} \;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-5357815879985667381?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/5357815879985667381/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=5357815879985667381' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/5357815879985667381'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/5357815879985667381'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2009/05/change-file-permissions-recursively.html' title='Change file permissions recursively without affecting directories'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-4644179984312080991</id><published>2008-11-25T14:20:00.000-08:00</published><updated>2008-11-25T14:23:15.497-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Latex'/><title type='text'>Starting enumerate with a specified number in Latex</title><content type='html'>If you want to start your enumerate with a specified number but 1, you should use \newcounter tag. The following example illustrates the use of the tag if, for example, we need to start our enumeration from 6 and not 1:&lt;br /&gt;&lt;br /&gt;\begin{enumerate}&lt;br /&gt;\setcounter{enumi}{5}&lt;br /&gt;\item Hello&lt;br /&gt;\item Bye&lt;br /&gt;\end{enumerate}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-4644179984312080991?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/4644179984312080991/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=4644179984312080991' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/4644179984312080991'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/4644179984312080991'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2008/11/starting-enumerate-with-specified.html' title='Starting enumerate with a specified number in Latex'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-6940794341085161977</id><published>2008-11-18T03:07:00.000-08:00</published><updated>2008-11-18T03:09:30.995-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Fedora'/><category scheme='http://www.blogger.com/atom/ns#' term='Mathematica'/><category scheme='http://www.blogger.com/atom/ns#' term='Font Problems'/><title type='text'>TRICK TO GET FONTS CORRECT IN FEDORA 9</title><content type='html'>Install libQtCore and libQtGui first. Then, &lt;br /&gt;&lt;br /&gt;On a 32-bit machine&lt;br /&gt;&lt;br /&gt;rm -f /usr/local/Wolfram/Mathematica/6.0/SystemFiles/Libraries/Linux/libQtCore.so.4&lt;br /&gt;&lt;br /&gt;rm -f /usr/local/Wolfram/Mathematica/6.0/SystemFiles/Libraries/Linux/libQtGui.so.4&lt;br /&gt;&lt;br /&gt;ln -s /usr/lib/libQtCore.so.4 /usr/local/Wolfram/Mathematica/6.0/SystemFiles/Libraries/Linux/libQtCore.so.4&lt;br /&gt;&lt;br /&gt;ln -s /usr/lib/libQtGui.so.4 /usr/local/Wolfram/Mathematica/6.0/SystemFiles/Libraries/Linux/libQtGui.so.4&lt;br /&gt;&lt;br /&gt;On a 64-bit machine, &lt;br /&gt;&lt;br /&gt;rm -f /usr/local/Wolfram/Mathematica/6.0/SystemFiles/Libraries/Linux/libQtCore.so.4&lt;br /&gt;&lt;br /&gt;rm -f /usr/local/Wolfram/Mathematica/6.0/SystemFiles/Libraries/Linux/libQtGui.so.4&lt;br /&gt;&lt;br /&gt;ln -s /usr/lib64/libQtCore.so.4 /usr/local/Wolfram/Mathematica/6.0/SystemFiles/Libraries/Linux/libQtCore.so.4&lt;br /&gt;&lt;br /&gt;ln -s /usr/lib64/libQtGui.so.4 /usr/local/Wolfram/Mathematica/6.0/SystemFiles/Libraries/Linux/libQtGui.so.4&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-6940794341085161977?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/6940794341085161977/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=6940794341085161977' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/6940794341085161977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/6940794341085161977'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2008/11/trick-to-get-fonts-correct-in-fedora-9.html' title='TRICK TO GET FONTS CORRECT IN FEDORA 9'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-1264188848189350714</id><published>2008-11-18T02:52:00.000-08:00</published><updated>2008-11-18T03:03:54.750-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Fedora'/><category scheme='http://www.blogger.com/atom/ns#' term='Mathematica'/><title type='text'>Mathematica : Segmentation fault while starting</title><content type='html'>If you have just started using mathematica on Fedora x (&gt; 4) and the first time you run it from the terminal and it crashes giving segmentation fault at the end, here is what you need to do. The problem arises because the location of Xlib folders are changed from what it was in previous versions.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Login as root&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Make sure that libX11 is installed,&lt;br /&gt;            rpm -q libX11&lt;br /&gt;&lt;br /&gt; If some version is installed, then proceed&lt;br /&gt; else install it&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;        mkdir /usr/X11R6/&lt;br /&gt;   mkdir /usr/X11R6/lib/&lt;br /&gt;mkdir /usr/X11R6/lib/X11/&lt;br /&gt;   cd /usr/X11R6/lib/X11/&lt;br /&gt;   ln -s /usr/share/X11/XKeysymDB XKeysymDB&lt;br /&gt;   ln -s /usr/share/X11/locale/ locale&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Things should be fine now!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-1264188848189350714?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/1264188848189350714/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=1264188848189350714' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/1264188848189350714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/1264188848189350714'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2008/11/mathematica-segmentation-fault-while.html' title='Mathematica : Segmentation fault while starting'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-7193379185664645131</id><published>2008-11-18T02:47:00.000-08:00</published><updated>2008-11-18T02:51:38.719-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Fedora'/><category scheme='http://www.blogger.com/atom/ns#' term='Skype'/><title type='text'>Skype : Problem with Audio Playback</title><content type='html'>If you are getting the message "Problem with Audio Playback" while trying to make call with skype 2.0 on Linux, then you need to do the needful.&lt;br /&gt;&lt;br /&gt;Go to - Options (By pressing Ctrl+O or by clicking Skype symbol on the bottom left and then clicking Options)&lt;br /&gt;&lt;br /&gt;Then go to Sound devices and change Sound In and Sound options to pulse instead of Default device. Say apply and then close.&lt;br /&gt;&lt;br /&gt;Things should be fine !&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-7193379185664645131?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/7193379185664645131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=7193379185664645131' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/7193379185664645131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/7193379185664645131'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2008/11/skype-problem-with-audio-playback.html' title='Skype : Problem with Audio Playback'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-4823327778362263611</id><published>2008-11-16T06:48:00.000-08:00</published><updated>2008-11-16T07:00:45.232-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Fedora'/><category scheme='http://www.blogger.com/atom/ns#' term='Content Management Systems'/><category scheme='http://www.blogger.com/atom/ns#' term='Joomla'/><title type='text'>Getting Started with Joomla! 1.5 on Fedora 9</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_0ji0rihmmzs/SSA0iuoDQKI/AAAAAAAAAbM/wsPXqdIZ_wA/s1600-h/joomla.png"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 200px; height: 137px;" src="http://4.bp.blogspot.com/_0ji0rihmmzs/SSA0iuoDQKI/AAAAAAAAAbM/wsPXqdIZ_wA/s200/joomla.png" alt="" id="BLOGGER_PHOTO_ID_5269269335259693218" border="0" /&gt;&lt;/a&gt;Joomla! is a great open source tool for making great websites with very little effort and absolutely no cost !&lt;br /&gt;&lt;br /&gt;I wanted to host a website on my computer and I was really impressed with the features offered by Joomla! I found it to be a pain in the neck to install it on my Fedora 9 desktop though. So, I thought of writing a beginner's review of how to install Joomla! on a linux machine. The key steps in the installation are&lt;br /&gt;&lt;br /&gt;1) Login as root&lt;br /&gt;&lt;br /&gt;$ su -&lt;br /&gt;&lt;br /&gt;2) Installing Apache server, MySQL server and php&lt;br /&gt;&lt;br /&gt;$ yum -y install mysql mysql-libs php-mysql mysql-server php-cli php-common php-pdo php-mysql php-ldap httpd php&lt;br /&gt;&lt;br /&gt;3) Configuring Apache server&lt;br /&gt;&lt;br /&gt;Add following lines to /etc/httpd/conf/httpd.conf&lt;br /&gt;&lt;br /&gt;#**********************************************&lt;br /&gt;ServerName SERVERNAME&lt;br /&gt;NameVirtualHost IP_ADDRESS&lt;br /&gt;&lt;br /&gt;&lt;virtualhost&gt;&lt;br /&gt;DocumentRoot PATH&lt;br /&gt;&lt;/virtualhost&gt;&lt;br /&gt;&lt;br /&gt;&lt;virtualhost ip_address=""&gt;&lt;br /&gt;DocumentRoot PATH&lt;br /&gt;ServerName SERVERNAME&lt;br /&gt;&lt;/virtualhost&gt;&lt;br /&gt;#**********************************************&lt;br /&gt;&lt;br /&gt;Replace the bold entries with the appropriate values.&lt;br /&gt;&lt;br /&gt;4) Starting Apache and MySQL services&lt;br /&gt;&lt;br /&gt;$ service httpd start&lt;br /&gt;$ service mysqld start&lt;br /&gt;&lt;br /&gt;5) Make sure to configure firewall to allow http connections to your computer&lt;br /&gt;&lt;br /&gt;$ system-config-firewall &amp;amp;&lt;br /&gt;Check the WWW(HTTP) 80/TCP box&lt;br /&gt;&lt;br /&gt;6) Joomla Installation&lt;br /&gt;&lt;br /&gt;$ mkdir /home/www/&lt;br /&gt;$ cd /home/www/&lt;br /&gt;$ mkdir Joomla&lt;br /&gt;$ cd Joomla&lt;br /&gt;$ untar Joomla 1.5&lt;br /&gt;$ chmod -R 755 /home/www/&lt;br /&gt;&lt;br /&gt;Making configuration.php writable&lt;br /&gt;$ touch configuration.php&lt;br /&gt;$ chmod 777 configuration.php&lt;br /&gt;&lt;br /&gt;Open firefox (or any other web browser) and type&lt;br /&gt;http://IP_ADDRESS/Joomla/&lt;br /&gt;&lt;br /&gt;Complete Installation following page 8 of Joomla! v 1.5 Quick Start Guide written by Kevin Hayne.&lt;br /&gt;&lt;br /&gt;$ rm -rf installation/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-4823327778362263611?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/4823327778362263611/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=4823327778362263611' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/4823327778362263611'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/4823327778362263611'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2008/11/getting-started-with-joomla-15-on.html' title='Getting Started with Joomla! 1.5 on Fedora 9'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_0ji0rihmmzs/SSA0iuoDQKI/AAAAAAAAAbM/wsPXqdIZ_wA/s72-c/joomla.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-603722529004266869.post-3226347830305000139</id><published>2008-11-13T01:44:00.001-08:00</published><updated>2008-11-16T02:01:51.896-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Audio Video Manipulation'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Extracting Audio from Video Files</title><content type='html'>&lt;strong&gt;Using Mplayer (Low Quality)&lt;/strong&gt;&lt;br /&gt;mplayer -dumpaudio &lt;span style="font-weight: bold;"&gt; &lt;/span&gt;video_file -dumpfile audio_file.mp3&lt;br /&gt;&lt;br /&gt;To extract audio from live stream, use -dumpstream option instead of -dumpaudio option.&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;Using ffmpeg (Quality Control)&lt;/strong&gt;&lt;br /&gt;ffmpeg -i video_file -ab 128 -ar 44100 audio_file.mp3&lt;br /&gt;&lt;br /&gt;No change in command structure for ffmpeg to extract from live stream.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/603722529004266869-3226347830305000139?l=tech-dailybites.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tech-dailybites.blogspot.com/feeds/3226347830305000139/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=603722529004266869&amp;postID=3226347830305000139' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/3226347830305000139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/603722529004266869/posts/default/3226347830305000139'/><link rel='alternate' type='text/html' href='http://tech-dailybites.blogspot.com/2008/11/first-test.html' title='Extracting Audio from Video Files'/><author><name>Sandeep Pathak</name><uri>http://www.blogger.com/profile/15474899683170418054</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
