<?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-34900172</id><updated>2011-04-21T22:31:57.953-05:00</updated><category term='iWork'/><category term='UNIX'/><category term='office:mac'/><category term='ISP'/><category term='Network'/><category term='Win2003'/><category term='flight simulation'/><category term='ALL OSs'/><category term='Win2K'/><category term='iDVD'/><category term='Mac'/><category term='Solaris'/><category term='games'/><category term='Windows'/><category term='dual boot'/><category term='iMovie'/><category term='hardware'/><title type='text'>Computing (Mac/Unix/Linux/Windows) Tips</title><subtitle type='html'>This is an unofficial blog to provide unsolicited computing tips, ranging from the most to the least common experiences while working with Computers.  &lt;b&gt;Some&lt;/b&gt; tips can leave your system unusable, so please excersise caution with your keyboard.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-774203742183014164</id><published>2008-12-08T17:11:00.003-06:00</published><updated>2008-12-08T17:20:15.384-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Network'/><category scheme='http://www.blogger.com/atom/ns#' term='ISP'/><category scheme='http://www.blogger.com/atom/ns#' term='ALL OSs'/><title type='text'>All OSs &gt; Test your Internet Connection Speed (ii)</title><content type='html'>I just "upgraded" to a different ISP for testing purposes (heck, saving 30% of your internet service in Mexico is good enough).&lt;br /&gt;&lt;br /&gt;And good news for me, it actually gives a little more than expected, of a 2MB connection, I am getting almost 2MB of download speed and almost 600KB of upstream.&lt;br /&gt;&lt;br /&gt;Niiice!&lt;br /&gt;&lt;div align="center"&gt;&lt;br /&gt;&lt;img src="http://www.speedtest.net/result/369531141.png" alt="[Internet Connection Speed]"&gt;&lt;p /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-774203742183014164?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/774203742183014164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=774203742183014164' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/774203742183014164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/774203742183014164'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2008/12/all-oss-test-your-internet-connection.html' title='All OSs &gt; Test your Internet Connection Speed (ii)'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-6500387355602979086</id><published>2007-02-05T12:21:00.000-06:00</published><updated>2007-02-05T12:37:41.621-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><category scheme='http://www.blogger.com/atom/ns#' term='Solaris'/><title type='text'>UNIX &gt; SSH Client displays error in Solaris 9</title><content type='html'>&lt;b&gt;Explanation&lt;/b&gt;: When executing &lt;code&gt;ssh&lt;/code&gt; (&lt;i&gt;Secure SHell&lt;/i&gt;) to open a client connection to a server, displays an error similar to this:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;ssh [hostname] -l [useraccount]&lt;br /&gt;unable to initialize mechanism library [/usr/lib/gss/gl/mech_krb5.so]  &lt;br /&gt;Password: &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to Fix it?&lt;/b&gt;: It must be understood that this is a peculiar bug which only affects Sun Solaris 9 systems as the originating client of any SSH Connection.  It can be fixed by installing some Operating System Patches.&lt;br /&gt;&lt;br /&gt;Or, it can be worked around by modifying the client configuration file: &lt;code&gt;/etc/ssh/ssh_config&lt;/code&gt; via any text editor such as &lt;i&gt;vi&lt;/i&gt; and adding the following lines:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;GSSAPIAuthentication=no&lt;br /&gt;GSSAPIKeyExchange=no&lt;br /&gt;StrictHostKeyChecking=no&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;These settings will apply to new connections only.  If you cannot get your system administrator to do that for you, please modify (or create) your &lt;code&gt;~/.ssh/config&lt;/code&gt; file the same way.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-6500387355602979086?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/6500387355602979086/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=6500387355602979086' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/6500387355602979086'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/6500387355602979086'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2007/02/unix-ssh-client-displays-error-in.html' title='UNIX &gt; SSH Client displays error in Solaris 9'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-6074588796469441632</id><published>2006-12-13T09:25:00.000-06:00</published><updated>2008-12-09T02:25:14.482-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><title type='text'>Windows &gt;  Screen and Window Capture</title><content type='html'>&lt;b&gt;Explanation&lt;/b&gt;: Sometimes there's the need to get a picture of how the screen looks like.  Sometimes there's also the need to get a picture of only a window, without everything else.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to Fix it?&lt;/b&gt;: Not like there's a problem here, but here's the tip:&lt;br /&gt;&lt;ul&gt;&lt;li&gt; For &lt;b&gt;Screen capture&lt;/b&gt;, press the [PrtScrn] key.&lt;/li&gt;&lt;br /&gt;&lt;li&gt; For &lt;b&gt;Window capture&lt;/b&gt;, press and hold the [Alt] key, then press the [PrtScrn] key.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;The [PrtScrn] key is usually found left from [Scroll Lock], here's a sample layout of a standard keyboard with the [PrtScrn] key selected:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_eRlIw14vfgI/RYAen3Lb8GI/AAAAAAAAAAc/5PB7EbYmB38/s1600-h/Keyboard_Layout.PNG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_eRlIw14vfgI/RYAen3Lb8GI/AAAAAAAAAAc/5PB7EbYmB38/s320/Keyboard_Layout.PNG" border="0" alt=""id="BLOGGER_PHOTO_ID_5008036455811641442" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You will not see any particular message on screen, but you can paste that information to any application such as: Microsoft Powerpoint, Microsoft Paint, Microsoft Word and so.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-6074588796469441632?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/6074588796469441632/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=6074588796469441632' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/6074588796469441632'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/6074588796469441632'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/12/windows.html' title='Windows &gt;  Screen and Window Capture'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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://1.bp.blogspot.com/_eRlIw14vfgI/RYAen3Lb8GI/AAAAAAAAAAc/5PB7EbYmB38/s72-c/Keyboard_Layout.PNG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34900172.post-8170625559061406695</id><published>2006-10-15T07:18:00.000-05:00</published><updated>2006-10-15T07:32:07.032-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='games'/><category scheme='http://www.blogger.com/atom/ns#' term='ALL OSs'/><category scheme='http://www.blogger.com/atom/ns#' term='flight simulation'/><title type='text'>ALL OSs &gt; Want to fly (for free)?</title><content type='html'>&lt;a href="http://www.microsoft.com/" target="_new" title=""&gt;Microsoft&lt;/a&gt; is about to release to the general public its latest version of &lt;a href="http://www.microsoft.com/games/flightsimulatorx/" target="_new" title=""&gt;Flight Simulator&lt;/a&gt;.  If you are an enthusiast and would like to try a different product -with similar characteristics- for free, here's the tip.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Explanation&lt;/b&gt;: MS Flight Simulator usually will sell for no less than US$40.  There are different alternatives with similar characteristics available, some of them without charge.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to Get it?&lt;/b&gt;: One of these versions is "&lt;a href="http://www.de.flightgear.org/" target="_new" title="Flight Gear"&gt;Flight Gear&lt;/a&gt; Flight Simulator".  Is an open source and multi-platform flight simulator, runs &lt;i&gt;not only&lt;/i&gt; on Microsoft Windows, but runs on Linux, &lt;a href="http://www.apple.com/macosx/" target="_new" title=""&gt;Apple Mac OS&lt;/a&gt; and &lt;a href="http://www.sun.com/" target="_new" title=""&gt;Solaris&lt;/a&gt;, so you will not be stuck with a &lt;i&gt;particular&lt;/i&gt; operating system and will be able to download just what you want.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note&lt;/b&gt;: Flight Gear Flight Simulator is not available for Mac OS X 10.4 (Tiger) on Intel, so please be patient.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-8170625559061406695?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/8170625559061406695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=8170625559061406695' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/8170625559061406695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/8170625559061406695'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/10/want-to-fly-for-free.html' title='ALL OSs &gt; Want to fly (for free)?'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-7401856828378167215</id><published>2006-10-12T10:59:00.000-05:00</published><updated>2006-10-12T11:22:22.237-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hardware'/><title type='text'>Windows &gt; P4M800PRO-M motherboard won't start</title><content type='html'>Yesterday I went to help a couple of friends, trying to setup a new system for them.  They bought a P4M800PRO-M (v1.0) motherboard with an Intel Celeron D processor and 512MB of 400MHz DDR.  It is an impressive motherboard having a 1066 &lt;acronym title="Front Side Bus"&gt;FSB&lt;/acronym&gt;. &lt;br /&gt;&lt;br /&gt;Once I finished removing the previous hardware and adding the new one, I tried to turn on the system but... it wouldn't boot.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Explanation&lt;/b&gt;: Having read the manual thoroughly, I found there was a note concerning the power requirements for this mother board, which says:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;Page 10&lt;br /&gt;&lt;i&gt;&lt;b&gt;Connecting the 20/24-pin power cable&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;(...)However, using 20-pin power cable may cause the system to become unbootable or unstable because of insufficient electricity.  A minimum power of 300W is recommended for a fully-configured system.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to Fix it?&lt;/b&gt;: Make sure your power supply &lt;b&gt;does&lt;/b&gt; have either a 24-pin cable or a 20-pin cable along with a 4-pin/12v power connector.  Place them as explained in the manual on page 10.  This &lt;i&gt;should&lt;/i&gt; make your system boot.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-7401856828378167215?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/7401856828378167215/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=7401856828378167215' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/7401856828378167215'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/7401856828378167215'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/10/windows-p4m800pro-m-motherboard-wont.html' title='Windows &gt; P4M800PRO-M motherboard won&apos;t start'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-2309266871439499474</id><published>2006-10-02T21:39:00.000-05:00</published><updated>2006-10-02T21:41:19.508-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='office:mac'/><category scheme='http://www.blogger.com/atom/ns#' term='Mac'/><category scheme='http://www.blogger.com/atom/ns#' term='iWork'/><title type='text'>Mac OS X &gt; office:mac expired, what to do?</title><content type='html'>Recently, I opened the &lt;code&gt;Microsoft Office 2004 Test Drive&lt;/code&gt; and got the following message:&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger2/2252/4260/1600/office_mac.0.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/2252/4260/320/office_mac.0.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The question is: Is it possible to add my installation key to this product?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Explanation&lt;/b&gt;:  It is not possible to add the installation key to this product.&lt;br /&gt;The way microsoft designed this so-called "Test Drive", is: try it for 30 days.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to Fix it?&lt;/b&gt;: &lt;br /&gt;Well, whether you like it (or not, there is also the &lt;a href="http://www.apple.com/iwork/" target="_new"&gt;iWork&lt;/a&gt; suite for more professional looking documents and presentations), you would have to:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Click the "Uninstall" button, you'll get the software removed from Mac OS X&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;i&gt;If&lt;/i&gt; you downloaded or got the installation CD for the full Office for Mac delivered to you, run the installation and you'll be able to start working on it in no time&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-2309266871439499474?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/2309266871439499474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=2309266871439499474' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/2309266871439499474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/2309266871439499474'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/10/mac-os-x-officemac-expired-what-to-do.html' title='Mac OS X &gt; office:mac expired, what to do?'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-115939786459132674</id><published>2006-09-27T17:47:00.000-05:00</published><updated>2006-09-27T17:58:31.863-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mac'/><title type='text'>Mac OS X &gt; Unable to read from or write to a DVD</title><content type='html'>A few weeks ago I wanted to watch a movie.  Inserted a DVD and got an error from the DVD player.  It was a strange situation because I had already seen a couple of movies, as well as written blank DVD disks.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Explanation&lt;/b&gt;: After updating the operating system, some permissions are damaged, so the operating system is unable to interact properly with DVDs.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to Fix it?&lt;/b&gt;: Open: &lt;code&gt;Applications &gt; Utilities &gt; Disk Utility&lt;/code&gt;, then select your hard disk (usually the first drive from the left-hand menu).  Once selected, click the "Repair Disk Permissions" button.&lt;br /&gt;You'll be able to see the following output from the "Log" icon at the upper-right hand corner of the window:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;**********&lt;br /&gt;Aug 27 11:31:26: Disk Utility started.&lt;br /&gt;&lt;br /&gt;Repairing permissions for “Macintosh HD”&lt;br /&gt;Determining correct file permissions.&lt;br /&gt;Group differs on ./private/etc/authorization,&lt;br /&gt;  should be 80, group is 0&lt;br /&gt;Owner and group corrected on ./private/etc/authorization&lt;br /&gt;Permissions corrected on ./private/etc/authorization&lt;br /&gt;&lt;br /&gt;Permissions repair complete&lt;br /&gt;&lt;br /&gt;The privileges have been verified or repaired on the selected volume&lt;/pre&gt;&lt;br /&gt;Try again, everything should be right.  Seems to be an update error from the guys at Apple.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-115939786459132674?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/115939786459132674/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=115939786459132674' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115939786459132674'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115939786459132674'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/09/mac-os-x-unable-to-read-from-or-write.html' title='Mac OS X &gt; Unable to read from or write to a DVD'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-115929715550146144</id><published>2006-09-26T13:50:00.000-05:00</published><updated>2006-09-29T00:55:31.196-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='iMovie'/><category scheme='http://www.blogger.com/atom/ns#' term='Mac'/><category scheme='http://www.blogger.com/atom/ns#' term='iDVD'/><title type='text'>Mac OS X &gt; iDVD appears to be not responding/hung</title><content type='html'>While creating my first DVD using iDVD, the system got to a point where iDVD was "Encoding Audio" and seemed to be not responding or hung.&lt;br /&gt;&lt;br /&gt;I even checked from the system menu (Apple &gt; Force Quit) and the window shows "&lt;code&gt;iDVD (not responding)&lt;/code&gt;".&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Explanation&lt;/b&gt;: It seems the "Encoding Audio" process is a very slow task.  It takes a &lt;b&gt;long&lt;/b&gt; time to finish this.  For DVDs longer than an hour it could take more than 6 hours to process everything.&lt;br /&gt;&lt;br /&gt;The Operating system seems to be unaware of the fact that iDVD is doing a lot of painfully slow background processing.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to Fix it?&lt;/b&gt;:&lt;ol&gt;&lt;li&gt; Wait&lt;/li&gt;&lt;br /&gt;&lt;li&gt; If you &lt;span style="font-weight:bold;"&gt;can't wait&lt;/span&gt;, then you'll have to make a shorter iDVD project and start the process from scratch...&lt;/li&gt;&lt;br /&gt;&lt;li&gt; To find out if iDVD is really active and working, do this:&lt;br /&gt;Open "&lt;span style="font-weight:bold;"&gt;Applications&lt;/span&gt;"&lt;br /&gt;Open "&lt;span style="font-weight:bold;"&gt;Terminal&lt;/span&gt;"&lt;br /&gt;Go to your iDVD project, probably within "&lt;span style="font-weight:bold;"&gt;Documents&lt;/span&gt;" (&lt;code&gt;&lt;span style="font-weight:bold;"&gt;cd Documents&lt;/span&gt;[Enter]&lt;/code&gt;), then enter to your project (&lt;code&gt;&lt;span style="font-weight:bold;"&gt;cd [Project-Name].dvdproj&lt;/span&gt;[Enter]&lt;/code&gt;).&lt;br /&gt;Enter to your Audio directory: &lt;br /&gt;&lt;code&gt;&lt;span style="font-weight:bold;"&gt;cd Contents/Resources/Audio&lt;/span&gt;[Enter]&lt;/code&gt;&lt;br /&gt;Enter the following instruction: &lt;code&gt;&lt;span style="font-weight:bold;"&gt;ls -l&lt;/span&gt;[Enter]&lt;/code&gt;&lt;br /&gt;You should see an output similar to:&lt;br /&gt;&lt;code&gt;-rw-r--r--    1 user  user  &lt;b&gt;271776048&lt;/b&gt; Sep 22 15:40 tempmovie.mov&lt;/code&gt;&lt;br /&gt;Wait a few minutes and repeat the same instruction again, you should see the file increase its size:&lt;br /&gt;&lt;code&gt;-rw-r--r--    1 user  user  &lt;b&gt;281856048&lt;/b&gt; Sep 22 15:48 tempmovie.mov&lt;/code&gt;&lt;/li&gt;&lt;/ol&gt;That's the only indication your iDVD project is &lt;b&gt;not&lt;/b&gt; really hung.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-115929715550146144?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/115929715550146144/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=115929715550146144' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115929715550146144'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115929715550146144'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/09/mac-os-x-idvd-appears-to-be-not.html' title='Mac OS X &gt; iDVD appears to be not responding/hung'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-115929131543179113</id><published>2006-09-26T12:14:00.000-05:00</published><updated>2007-01-03T06:49:10.679-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Network'/><category scheme='http://www.blogger.com/atom/ns#' term='ISP'/><title type='text'>All OSs &gt; Test your Internet Connection Speed</title><content type='html'>Found a &lt;em&gt;nice&lt;/em&gt; way to test your internet connection speed.   Should work on all major Operating Systems:&lt;br /&gt;&lt;div align="center"&gt;&lt;br /&gt;Jan. 03/07:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.speedtest.net/result/70966981.png" alt="[Internet Connection Speed]"&gt;&lt;p /&gt;&lt;br /&gt;Sep. 26/06:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.speedtest.net/result/47301277.png" alt="[Internet Connection Speed]"&gt;&lt;/div&gt;&lt;br /&gt;Visit that web site: &lt;a href="http://www.speedtest.net/" target="_new"&gt;http://www.speedtest.net/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-115929131543179113?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/115929131543179113/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=115929131543179113' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115929131543179113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115929131543179113'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/09/all-oss-test-your-internet-connection.html' title='All OSs &gt; Test your Internet Connection Speed'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-115916366024135529</id><published>2006-09-25T00:32:00.000-05:00</published><updated>2006-09-29T00:46:38.380-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='dual boot'/><category scheme='http://www.blogger.com/atom/ns#' term='Win2003'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Win2K'/><title type='text'>Win 2000/XP &gt; XP Won't boot when 2000 is installed after it.</title><content type='html'>On my laptop I had a Win XP installation running without problems.  Then I installed Win 2000 on a different partition.  Everything went fine until I had to boot to Win XP again... wouldn't run.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Explanation&lt;/b&gt;: Windows 2000 had overwritten Windows XP system files located inside the first "Active" partition (Windows XP): &lt;code&gt;ntloader&lt;/code&gt; and &lt;code&gt;ntdetect.com&lt;/code&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to Fix it?&lt;/b&gt;: Start the system from a Windows XP installation disk, wait until you get to the point where you are given three options, and choose: &lt;code&gt;"To repair a Windows XP installation using Recovery Console, press R"&lt;/code&gt;... of course, press "R".&lt;br /&gt;&lt;br /&gt;You will be asked for the Windows installation you want to fix, probably the first one, so select it by number.  Then you will be asked for your &lt;code&gt;Administrator&lt;/code&gt; account password, enter it.&lt;br /&gt;&lt;br /&gt;There you are, this is the "Recovery Console".  You will have to navigate through the installation CD-ROM, probably on "E:" drive, depending on your system.  So, enter the following instructions:&lt;br /&gt;&lt;code&gt;cd E: &lt;i&gt;(or your cdrom drive letter)&lt;/i&gt;&lt;br /&gt;copy i386\ntldr C:\&lt;br /&gt;copy i386\ntdetect.com C:\&lt;br /&gt;exit&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;If no weird error messages are shown, this should have fixed the problem.  Eject the CDROM and wait until you get to the system selection menu.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-115916366024135529?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/115916366024135529/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=115916366024135529' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115916366024135529'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115916366024135529'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/09/win-2000xp-xp-wont-boot-when-2000-is.html' title='Win 2000/XP &gt; XP Won&apos;t boot when 2000 is installed after it.'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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-34900172.post-115901682993256625</id><published>2006-09-23T08:06:00.000-05:00</published><updated>2006-09-23T08:07:09.933-05:00</updated><title type='text'>Welcome</title><content type='html'>As Tom Green would say: "This is my favorite blog, because it is my blog".  Welcome, enjoy your staying here :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34900172-115901682993256625?l=computing-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computing-tips.blogspot.com/feeds/115901682993256625/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34900172&amp;postID=115901682993256625' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115901682993256625'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34900172/posts/default/115901682993256625'/><link rel='alternate' type='text/html' href='http://computing-tips.blogspot.com/2006/09/welcome.html' title='Welcome'/><author><name>Carlos J. Naranjo</name><uri>http://www.blogger.com/profile/01254595561635863433</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></feed>
