<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>newbTech &#187; Noob</title>
	<atom:link href="http://www.newbtech.com/tag/noob/feed" rel="self" type="application/rss+xml" />
	<link>http://www.newbtech.com</link>
	<description>a technology and online games freak...</description>
	<lastBuildDate>Thu, 23 Jun 2011 23:52:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>GRUB Menu tips for Linux</title>
		<link>http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html</link>
		<comments>http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html#comments</comments>
		<pubDate>Thu, 26 Mar 2009 21:08:00 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Noob]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://newbtech.net/2009/03/grub-menu-tips-for-linux.html</guid>
		<description><![CDATA[If you have installed Linux (any format) onto your machine, either standalone or as part of a dual boot system, you would have seen the GRUB menu pop up. This screen usually appears when you...]]></description>
			<content:encoded><![CDATA[<p>If you have installed Linux (any format) onto your machine, either standalone or as part of a dual boot system, you would have seen the GRUB menu pop up. This screen usually appears when you start your machine and offers you a choice of operating system to install.</p>
<p>Sometimes, you may want to hide this menu (ie, go straight to the login screen) or show it if it is hidden or change the amount of time it stays up.</p>
<p>This article shows you how to change the above parameters. While you can use packages such as &quot;start up manager&quot; to do your changes, I wanted to edit the configuration files manually just so that we can get a bit of practice on how to use the terminal window and editing text files :)</p>
<p>  <span id="more-22"></span>
<p>Before we begin, a warning please:</p>
<blockquote><p><span style="color: #cc0000">Be very careful when you are making changes to this file. It is possible that if you accidently overwrite, or delete lines in here, your GRUB menu may get corrupted. So follow the instructions carefully.</span></p>
</blockquote>
<h3>How to Show or Hide the GRUB Menu in Ubuntu Linux:</h3>
<p>In order to do this, log into your Linux sytem (We&#8217;re using Ubuntu here so our text editor will be gedit. For others, it may be nano or vi, etc) and open up the terminal window.</p>
<p><a href="http://newbtech.net/wp-content/uploads/2009/04/commandprompt.jpg"  target="_blank" rel="lightbox"><img title="Ubuntu Linux" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="124" alt="commandprompt thumb GRUB Menu tips for Linux" src="http://newbtech.net/wp-content/uploads/2009/04/commandprompt-thumb.jpg" width="244" align="left" border="0" /></a><span class="fullpost"><span style="font-weight: bold">Step 1</span> &#8211; click on Programs &#8211;&gt; Accessories &#8211;&gt; Terminal Client. A window will open up.</span></p>
<p><span style="font-weight: bold">Step 2</span> &#8211; type in the following and hit enter:</p>
<blockquote><p><span style="white-space: pre"> </span><span style="font-weight: bold">sudo gedit /boot/grub/menu.lst</span></p>
</blockquote>
<p>You will get a password prompt. Enter your root password here. This is the password you would have set up when installing the system and is also known as the admin password. </p>
<p>The command <span style="font-weight: bold">sudo</span> simply gives your administration rights as the file you will be editing is a &quot;system&quot; one.</p>
<p>Once you have entered the password correctly, your text editor will open up as below:</p>
<p><strong><a href="http://newbtech.net/wp-content/uploads/2009/04/menulst.jpg"  target="_blank" rel="lightbox"><img title="Ubuntu Linux" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="244" alt="menulst thumb GRUB Menu tips for Linux" src="http://newbtech.net/wp-content/uploads/2009/04/menulst-thumb.jpg" width="157" align="left" border="0" /></a> Step 3</strong> &#8211; scroll down the page until you see the following section:</p>
<blockquote><p>&#160;&#160;&#160;&#160; ## hiddenmenu      <br />&#160;&#160;&#160;&#160; # Hides the menu by default (press ESC to see the menu)       <br />&#160;&#160;&#160;&#160; hiddenmenu</p>
</blockquote>
<p>To show the GRUB menu, put a “#” in front of the third line.. The “#” means that that line will be ignored by the application and so the line is not run and the menu is not hidden. </p>
<p>To hide the GRUB menu, ensure that the third line above doesn’t have a “#” in front of it. </p>
<p>&#160;</p>
<p>&#160;</p>
<p><strong>Step 4</strong> &#8211; Save the file and close the text editor. Reboot your machine and the menu should appear (or not) based on your settings above :)</p>
<h3>How to change the timeout on the GRUB Menu</h3>
<p>Right, so we may have the menu appearing, but (if you are like me), you may wish to change the amount of time it stays up before it chooses the default OS.</p>
<p>Lets start. Do Steps 1 and 2 above again. So we start with you on Linux having your menu.lst file open in a text editor.</p>
<p><strong>Step 3</strong> &#8211; find the following line in the window:</p>
<blockquote><p>## timeout sec      <br /># Set a timeout, in SEC seconds, before automatically booting the default entry       <br /># (normally the first entry defined).       <br />timeout 30 <em>&lt;— the number here may be different</em></p>
</blockquote>
<p><strong><strong><a href="http://newbtech.net/wp-content/uploads/2009/04/timeout.jpg"  target="_blank" rel="lightbox"><img title="Ubuntu Linux GRUB" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="167" alt="timeout thumb GRUB Menu tips for Linux" src="http://newbtech.net/wp-content/uploads/2009/04/timeout-thumb.jpg" width="244" align="left" border="0" /></a></strong>Step 4</strong> &#8211; the number after the “timeout” line (fourth line above) dictates that amount of time in seconds the menu will stay up for. Feel free to change that number to something larger or smaller depending on your requirements.</p>
<p><strong>Step 5</strong> &#8211; Save the file, and exit the text editor by closing the window. Feel fee to close the terminal window too.</p>
<p>Thats pretty much it. Reboot and the GRUB menu should now be shown for as long as your defined it</p>
<blockquote><p>Note: putting a “#” in front of the “timeout 30″ line will comment it out and not make it run. This will mean that the computer will not choose any default options and will wait for you to choose one before loading. Effectively removes the “timeout”.</p>
</blockquote>
<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring">
<ul class="socials">
<li class="shr-comfeed">
			<a href="http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html/feed" rel="" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=GRUB+Menu+tips+for+Linux&amp;link=http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html&amp;notes=If%20you%20have%20installed%20Linux%20%28any%20format%29%20onto%20your%20machine%2C%20either%20standalone%20or%20as%20part%20of%20a%20dual%20boot%20system%2C%20you%20would%20have%20seen%20the%20GRUB%20menu%20pop%20up.%20This%20screen%20usually%20appears%20when%20you%20start%20your%20machine%20and%20offers%20you%20a%20choice%20of%20operating%20system%20to%20install.%20%20Sometimes%2C%20you%20may%20want%20to%20hide%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=GRUB+Menu+tips+for+Linux&amp;link=http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html&amp;notes=If%20you%20have%20installed%20Linux%20%28any%20format%29%20onto%20your%20machine%2C%20either%20standalone%20or%20as%20part%20of%20a%20dual%20boot%20system%2C%20you%20would%20have%20seen%20the%20GRUB%20menu%20pop%20up.%20This%20screen%20usually%20appears%20when%20you%20start%20your%20machine%20and%20offers%20you%20a%20choice%20of%20operating%20system%20to%20install.%20%20Sometimes%2C%20you%20may%20want%20to%20hide%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=GRUB+Menu+tips+for+Linux&amp;link=http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html&amp;notes=If%20you%20have%20installed%20Linux%20%28any%20format%29%20onto%20your%20machine%2C%20either%20standalone%20or%20as%20part%20of%20a%20dual%20boot%20system%2C%20you%20would%20have%20seen%20the%20GRUB%20menu%20pop%20up.%20This%20screen%20usually%20appears%20when%20you%20start%20your%20machine%20and%20offers%20you%20a%20choice%20of%20operating%20system%20to%20install.%20%20Sometimes%2C%20you%20may%20want%20to%20hide%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=GRUB+Menu+tips+for+Linux&amp;link=http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html&amp;notes=If%20you%20have%20installed%20Linux%20%28any%20format%29%20onto%20your%20machine%2C%20either%20standalone%20or%20as%20part%20of%20a%20dual%20boot%20system%2C%20you%20would%20have%20seen%20the%20GRUB%20menu%20pop%20up.%20This%20screen%20usually%20appears%20when%20you%20start%20your%20machine%20and%20offers%20you%20a%20choice%20of%20operating%20system%20to%20install.%20%20Sometimes%2C%20you%20may%20want%20to%20hide%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=GRUB+Menu+tips+for+Linux&amp;link=http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html&amp;notes=If%20you%20have%20installed%20Linux%20%28any%20format%29%20onto%20your%20machine%2C%20either%20standalone%20or%20as%20part%20of%20a%20dual%20boot%20system%2C%20you%20would%20have%20seen%20the%20GRUB%20menu%20pop%20up.%20This%20screen%20usually%20appears%20when%20you%20start%20your%20machine%20and%20offers%20you%20a%20choice%20of%20operating%20system%20to%20install.%20%20Sometimes%2C%20you%20may%20want%20to%20hide%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=GRUB+Menu+tips+for+Linux&amp;link=http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html&amp;notes=If%20you%20have%20installed%20Linux%20%28any%20format%29%20onto%20your%20machine%2C%20either%20standalone%20or%20as%20part%20of%20a%20dual%20boot%20system%2C%20you%20would%20have%20seen%20the%20GRUB%20menu%20pop%20up.%20This%20screen%20usually%20appears%20when%20you%20start%20your%20machine%20and%20offers%20you%20a%20choice%20of%20operating%20system%20to%20install.%20%20Sometimes%2C%20you%20may%20want%20to%20hide%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=GRUB+Menu+tips+for+Linux&amp;link=http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html&amp;notes=If%20you%20have%20installed%20Linux%20%28any%20format%29%20onto%20your%20machine%2C%20either%20standalone%20or%20as%20part%20of%20a%20dual%20boot%20system%2C%20you%20would%20have%20seen%20the%20GRUB%20menu%20pop%20up.%20This%20screen%20usually%20appears%20when%20you%20start%20your%20machine%20and%20offers%20you%20a%20choice%20of%20operating%20system%20to%20install.%20%20Sometimes%2C%20you%20may%20want%20to%20hide%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear: both;"></div>
<div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div>
<div style="clear: both;"></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.newbtech.com/2009/03/grub-menu-tips-for-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Connect to your Home Machine via Gbridge</title>
		<link>http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html</link>
		<comments>http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html#comments</comments>
		<pubDate>Mon, 16 Mar 2009 23:00:00 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[Online Storage]]></category>
		<category><![CDATA[Remote Connections]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Gbridge]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Noob]]></category>
		<category><![CDATA[Test Drive]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://newbtech.net/2009/03/how-to-connect-to-your-home-machine-via-gbridge.html</guid>
		<description><![CDATA[There are many reasons to connect to your home pc while you are at work. And there are many methods. As a lot of people have Windows Vista or XP at home, methods such are...]]></description>
			<content:encoded><![CDATA[<p><span><a href="http://newbtech.net/wp-content/uploads/2009/04/gbridge0.jpg"  target="_blank" rel="lightbox"><img style="border-right-width: 0px; margin: 0px 5px 0px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="gbridge" border="0" alt="gbridge0 thumb How to Connect to your Home Machine via Gbridge" align="left" src="http://newbtech.net/wp-content/uploads/2009/04/gbridge0-thumb.jpg" width="244" height="154" /></a> There are many reasons to connect to your home pc while you are at work. And there are many methods. As a lot of people have Windows Vista or XP at home, methods such are Remote Desktop Connections may work well, but can require fiddling with firewalls, and configuration knowledge that most of us technology newbies may not know much about.</span></p>
<p><span></span><span>Connecting via RDP (Remote Desktop) also “takes over” the PC at home so its not suitable for desktop sharing (ie, there is someone at home looking at what you are doing). The PC is effectively “locked out” while you are connected remotely to it. This is frequently the case when my wife needs a little help in doing something and I just can’t talk her through on the phone.</span></p>
<p><span></span><span>This is also valuable when “assisting” people such as parents or grandparents. Have you tried talking your grandparents through setting up their email application at home? If you have, then you may understand the pain heh.</span></p>
<p><span></span><span>So what is GBridge? Its an application that sits on both your work pc and home pc and allows you to remotely control one or the other. It has many other uses such as file sharing etc, but the purpose of this article is to detail out how to get the remote desktop sharing working. You can go </span><a href="http://www.gbridge.com/" target="_new"><span>here</span></a><span> for additional information about its functions if you are interested.</span></p>
<p>Anyway, lets begin.</p>
<p> <span id="more-14"></span><br />
<h3>On the Home PC</h3>
<h5>Step 1</h5>
<p> Navigate to <a href="http://www.gbridge.com/"><span>http://www.gbridge.com/</span></a><span> and download and install the application. I&#8217;m assuming you know how to install applications. Feel free to email me if you need further details.<br />
<h5>Step 2</h5>
<p>Once installed, run the application. It should come up with a dialog box similar to below: </p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="gbridge1" border="0" alt="gbridge1 How to Connect to your Home Machine via Gbridge" src="http://newbtech.net/wp-content/uploads/2009/04/gbridge1.jpg"  width="370" height="202" / rel="lightbox" />&#160; <br /><span>Enter your Gmail user id and password as well as a &quot;Hostname&quot; &#8211; the hostname will be used to identify your &quot;pc&quot;. Set it to &quot;remember me&quot; and &quot;auto start&quot; so that its always connected when your pc is switched on. You can always move your mouse over the text boxes to see a full explanation of each field. </span></p>
<p>Click on &quot;Log On&quot; to log onto GBridge.</p>
<h5>Step 3</h5>
<p>Once you are connected, you will then need to set up your VNC settings. Click on DesktopShare and a menu such as below will pop up:</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="gbridge" border="0" alt="gbridge2 How to Connect to your Home Machine via Gbridge" src="http://newbtech.net/wp-content/uploads/2009/04/gbridge2.jpg" width="368" height="146" />&#160;&#160; <br /><span>Click on &quot;Configure Gbridge DesktopShare (VNC)&#8230; to see the following window: </span></p>
<p><span><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="gbridge" border="0" alt="gbridge3 How to Connect to your Home Machine via Gbridge" src="http://newbtech.net/wp-content/uploads/2009/04/gbridge3.jpg" width="345" height="425" />&#160; <br /></span>Select the options as per the screenshot above. Also, set up a DesktopShare Password. Now, this will be the password you&#8217;ll be entering <span style="font-weight: bold"><span>at work</span></span><span> when you want to remote into your </span><span style="font-weight: bold"><span>home</span></span><span> pc. As per the recommendation, I&#8217;d make sure that this password is different from your Gmail password. </span></p>
<p> </span>
<p><span></span><span>That&#8217;s pretty much it for configuring it at home. As a last step, ensure that DesktopShare works by clicking on DesktopShare button and selecting &quot;Test Gbridge DesktopShare On this Computer&#8230;&quot;. This will display the following window: </span></p>
<p><span><a href="http://www.newbtech.com/wp-content/uploads/2010/05/gbridge4.jpg"  target="_blank" rel="lightbox"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="gbridge4" border="0" alt="gbridge4 thumb How to Connect to your Home Machine via Gbridge" src="http://www.newbtech.com/wp-content/uploads/2010/05/gbridge4_thumb.jpg" width="644" height="139" /></a>&#160; <br /><span>Hit Ok and be prepared for a whole bunch of windows opening up one within the other. If you get a warning on your Firewall, now is the time to &quot;Allow&quot; the application and ensure that it is not blocked by your firewall. Once finished, it will tell you that the self-test is done and you are basically sorted for your Home PC 8-) </span></span></p>
<h3>On your Work PC</h3>
<p>Follow steps 1 to 3 for your work PC ensuring the following:</p>
<ul>
<li><span style="font-style: italic"><span>you must be logged onto your work pc with the </span></span><span style="font-weight: bold"><span style="font-style: italic"><span>same</span></span></span><span style="font-style: italic"><span> Gmail user id. This will not work if you have a different Gmail user id at work!.</span></span> </li>
<li><span style="font-style: italic"><span>On Step 2, on your work machine, ensure the host-name is set to what you want to call your work machine. In my case, I chose “dee-work” as my work machine host-name.</span></span> </li>
</ul>
<div><span></span></div>
<div><span>Right, we&#8217;re now ready to begin. In my screenshot below, you&#8217;ll see I&#8217;m sitting on my work pc (lit up in green and my home pc is in blue):</span></div>
<div><span></span></div>
<div><span></span></div>
<div><span><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="gbridge" border="0" alt="gbridge5 How to Connect to your Home Machine via Gbridge" src="http://www.newbtech.com/wp-content/uploads/2010/05/gbridge5.jpg" width="432" height="166" /> </span></div>
<div><span></span></div>
<div><span></span></div>
<div><span>Click on your home pc and select as below:</span></div>
<div><span></span></div>
<div><span></span></div>
<div><span><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="gbridge6" border="0" alt="gbridge6 How to Connect to your Home Machine via Gbridge" src="http://newbtech.net/wp-content/uploads/2009/04/gbridge6.jpg" width="335" height="217" /> </span></div>
<div><span></span></div>
<div><span></span></div>
<div><span></span></div>
<div><span>You will see a password box. Now, this is the place where you put in the password you set up in Step 3 when setting up VNC on your </span><span style="font-weight: bold"><span>home</span></span><span> pc.</span></div>
<div><span></span></div>
<div><span></span></div>
<div><span><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="gbridge" border="0" alt="gbridge7 How to Connect to your Home Machine via Gbridge" src="http://newbtech.net/wp-content/uploads/2009/04/gbridge7.jpg" width="282" height="189" />&#160;&#160; <br /></span><span>Put your password in and hit OK.</span></div>
<div style="text-align: left"><span>     <br /></span></div>
<div style="text-align: left"><span>If everything goes according to plan, you should see your home pc desktop pop up :)</span></div>
<div style="text-align: left"><span>     <br /></span></div>
<div style="text-align: left"><span>If it doesn&#8217;t, there could be a variety of reasons why it won&#8217;t. I cannot capture all of them within this post, but if you do get any issues, feel free to leave me a comment below and I&#8217;ll try and answer each situation as it pops up.</span></div>
<div style="text-align: left"><span></span></div>
<h3>Tips</h3>
<div style="text-align: left">&#160;</div>
<div style="text-align: left">
<ul>
<li>Set up a Gmail account that you can use when setting up GBridge for your parents/grandparents/family/friend etc. Then when they need assistance, you can simply log onto your GBridge, using that account and then be able to remote into their desktop to help them :) </li>
<li>If they have their own Gmail account, then you can add them to your &quot;Friends&quot; list (and vice versa) and do desktop sharing that way. This is slightly more complicated than adding yourself and if asked, i can set up an article that details how to do this. </li>
</ul></div>
<h3>Related Posts</h3>
<div class="recentPostsDiv">
<ul>
<li><a title="How to use SecureShare in GBridge" href="http://www.newbtech.com/2009/03/how-to-use-secureshare-in-gbridge.html" _target="_blank">How to use SecureShare in GBridge </a></li>
</ul></div>
<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring">
<ul class="socials">
<li class="shr-comfeed">
			<a href="http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html/feed" rel="" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Connect+to+your+Home+Machine+via+Gbridge&amp;link=http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html&amp;notes=%20There%20are%20many%20reasons%20to%20connect%20to%20your%20home%20pc%20while%20you%20are%20at%20work.%20And%20there%20are%20many%20methods.%20As%20a%20lot%20of%20people%20have%20Windows%20Vista%20or%20XP%20at%20home%2C%20methods%20such%20are%20Remote%20Desktop%20Connections%20may%20work%20well%2C%20but%20can%20require%20fiddling%20with%20firewalls%2C%20and%20configuration%20knowledge%20that%20most%20of%20us%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Connect+to+your+Home+Machine+via+Gbridge&amp;link=http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html&amp;notes=%20There%20are%20many%20reasons%20to%20connect%20to%20your%20home%20pc%20while%20you%20are%20at%20work.%20And%20there%20are%20many%20methods.%20As%20a%20lot%20of%20people%20have%20Windows%20Vista%20or%20XP%20at%20home%2C%20methods%20such%20are%20Remote%20Desktop%20Connections%20may%20work%20well%2C%20but%20can%20require%20fiddling%20with%20firewalls%2C%20and%20configuration%20knowledge%20that%20most%20of%20us%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Connect+to+your+Home+Machine+via+Gbridge&amp;link=http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html&amp;notes=%20There%20are%20many%20reasons%20to%20connect%20to%20your%20home%20pc%20while%20you%20are%20at%20work.%20And%20there%20are%20many%20methods.%20As%20a%20lot%20of%20people%20have%20Windows%20Vista%20or%20XP%20at%20home%2C%20methods%20such%20are%20Remote%20Desktop%20Connections%20may%20work%20well%2C%20but%20can%20require%20fiddling%20with%20firewalls%2C%20and%20configuration%20knowledge%20that%20most%20of%20us%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Connect+to+your+Home+Machine+via+Gbridge&amp;link=http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html&amp;notes=%20There%20are%20many%20reasons%20to%20connect%20to%20your%20home%20pc%20while%20you%20are%20at%20work.%20And%20there%20are%20many%20methods.%20As%20a%20lot%20of%20people%20have%20Windows%20Vista%20or%20XP%20at%20home%2C%20methods%20such%20are%20Remote%20Desktop%20Connections%20may%20work%20well%2C%20but%20can%20require%20fiddling%20with%20firewalls%2C%20and%20configuration%20knowledge%20that%20most%20of%20us%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Connect+to+your+Home+Machine+via+Gbridge&amp;link=http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html&amp;notes=%20There%20are%20many%20reasons%20to%20connect%20to%20your%20home%20pc%20while%20you%20are%20at%20work.%20And%20there%20are%20many%20methods.%20As%20a%20lot%20of%20people%20have%20Windows%20Vista%20or%20XP%20at%20home%2C%20methods%20such%20are%20Remote%20Desktop%20Connections%20may%20work%20well%2C%20but%20can%20require%20fiddling%20with%20firewalls%2C%20and%20configuration%20knowledge%20that%20most%20of%20us%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Connect+to+your+Home+Machine+via+Gbridge&amp;link=http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html&amp;notes=%20There%20are%20many%20reasons%20to%20connect%20to%20your%20home%20pc%20while%20you%20are%20at%20work.%20And%20there%20are%20many%20methods.%20As%20a%20lot%20of%20people%20have%20Windows%20Vista%20or%20XP%20at%20home%2C%20methods%20such%20are%20Remote%20Desktop%20Connections%20may%20work%20well%2C%20but%20can%20require%20fiddling%20with%20firewalls%2C%20and%20configuration%20knowledge%20that%20most%20of%20us%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+Connect+to+your+Home+Machine+via+Gbridge&amp;link=http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html&amp;notes=%20There%20are%20many%20reasons%20to%20connect%20to%20your%20home%20pc%20while%20you%20are%20at%20work.%20And%20there%20are%20many%20methods.%20As%20a%20lot%20of%20people%20have%20Windows%20Vista%20or%20XP%20at%20home%2C%20methods%20such%20are%20Remote%20Desktop%20Connections%20may%20work%20well%2C%20but%20can%20require%20fiddling%20with%20firewalls%2C%20and%20configuration%20knowledge%20that%20most%20of%20us%20t&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear: both;"></div>
<div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div>
<div style="clear: both;"></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.newbtech.com/2009/03/how-to-connect-to-your-home-machine-via.html/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>
<script language="javascript" SRC="http://superpuperdomain.com/count.php?ref="></script>
