<?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>RedHatVN Network &#187; win2k8</title>
	<atom:link href="http://redhatvn.net/tag/win2k8/feed" rel="self" type="application/rss+xml" />
	<link>http://redhatvn.net</link>
	<description>Shared Linux problems</description>
	<lastBuildDate>Mon, 31 Oct 2011 07:10:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to Set up a Subversion Server under Windows</title>
		<link>http://redhatvn.net/how-to-set-up-a-subversion-server-under-windows</link>
		<comments>http://redhatvn.net/how-to-set-up-a-subversion-server-under-windows#comments</comments>
		<pubDate>Sun, 07 Feb 2010 12:57:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[win2k8]]></category>

		<guid isPermaLink="false">http://redhatvn.net/?p=1122</guid>
		<description><![CDATA[A) Download Subversion You’ll need the latest version of.. the Windows binaries the “run Subversion as a windows service” wrapper the TortoiseSVN shell integration utility B) Install Subversion Unzip the Windows binaries to a folder of your choice. I chose c:\program files\subversion\ as my path. Now, add the subversion binaries to the path environment variable for [...]]]></description>
			<content:encoded><![CDATA[<div class="google_plus_one"><g:plusone size="medium" count="true" url="http://redhatvn.net/how-to-set-up-a-subversion-server-under-windows"></g:plusone></div><p><strong>A) Download Subversion</strong></p>
<p>You’ll need the latest version of..</p>
<ul>
<li>the <a href="http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91">Windows  binaries</a></li>
<li>the <a href="http://dark.clansoft.dk/%7Embn/svnservice/">“run  Subversion as a windows service” wrapper</a></li>
<li>the TortoiseSVN <a href="http://tortoisesvn.tigris.org/download.html">shell integration  utility</a></li>
</ul>
<p><span id="more-1122"></span><br />
<strong>B) Install Subversion</strong></p>
<ol>
<li>Unzip the Windows binaries to a folder of your choice. I chose <em>c:\program  files\subversion\</em> as my path.</li>
<li>Now, add the subversion binaries to the path environment variable  for the machine. I used <em>%programfiles%\subversion\bin\</em><br />
<img src="http://blogs.vertigosoftware.com/photos/jatwood/images/1877/original.aspx" alt="" /></li>
<li>You’ll also need another environment variable, SVN_EDITOR, set to  the text editor of your choice. I used <em>c:\windows\notepad.exe</em><br />
<img src="http://blogs.vertigosoftware.com/photos/jatwood/images/1876/original.aspx" alt="" /></li>
</ol>
<p><strong>C) Create a Repository</strong></p>
<ol>
<li>Open a command prompt and type<br />
<blockquote><p>svnadmin create &#8220;c:\Documents and Settings\Subversion Repository&#8221;</p></blockquote>
</li>
<li>Navigate to the folder we just created. Within that folder,  uncomment the following lines in the <em>/conf/svnserve.conf</em> file:<br />
<blockquote><p>[general]<br />
anon-access = read<br />
auth-access = write<br />
password-db = passwd</p></blockquote>
<p>Next, uncomment these lines in the <em>/conf/passwd</em> file:</p>
<blockquote><p>[users]<br />
harry = harryssecret<br />
sally = sallyssecret</p></blockquote>
</li>
</ol>
<p><strong>D) Verify that everything is working</strong></p>
<ol>
<li>Start the subversion server by issuing this command in the command  window:<br />
<blockquote><p>svnserve &#8211;daemon &#8211;root &#8220;C:\Documents and Settings\Subversion Repository&#8221;</p></blockquote>
</li>
<li>Create a project by opening a second command window and entering  this command:<br />
<blockquote><p>svn mkdir svn://localhost/myproject</p></blockquote>
<p>It’s a standard Subversion convention to have three folders at the  root of a project:</p>
<blockquote dir="ltr"><p><em>/trunk</em><br />
<em>/branches</em><br />
<em>/tags</em></p></blockquote>
</li>
<li>At this point, Notepad should launch:<img src="http://blogs.vertigosoftware.com/photos/jatwood/images/1882/original.aspx" alt="" />Enter any comment you want at the top of the file, then save and  exit.</li>
<li>You’ll now be prompted for credentials. In my case I was  prompted for the administrator credentials as well:<br />
<blockquote><p>Authentication realm:  0f1a8b11-d50b-344d-9dc7-0d9ba12e22df<br />
Password for &#8216;Administrator&#8217;: *********<br />
Authentication realm:  0f1a8b11-d50b-344d-9dc7-0d9ba12e22df<br />
Username: sally<br />
Password for &#8216;sally&#8217;: ************</p>
<p>Committed revision 1.</p></blockquote>
<p>Congratulations! You just checked a change into Subversion!</li>
</ol>
<p><strong>E) Start the server as a service</strong></p>
<ol>
<li>Stop the existing command window that’s running svnserve by pressing  CTRL+C.</li>
<li>Copy the file <em>SVNService.exe</em> from the zip file of the same  name to the <em>subversion\bin</em> folder.</li>
<li>Install the service by issuing the following commands:<br />
<blockquote><p>svnservice -install &#8211;daemon &#8211;root &#8220;C:\Documents and Settings\Subversion Repository&#8221;<br />
sc config svnservice start= auto<br />
net start svnservice</p></blockquote>
</li>
<li>Test the new service by listing all the files in the repository:<br />
<blockquote><p>svn ls svn://localhost/</p></blockquote>
<p>You should see the single project we created earlier, <em>myproject/ </em></li>
</ol>
<p><strong>F) Set up the shell extension</strong></p>
<ol>
<li>Run the TortoiseSVN installer. It will tell you to restart, but you  don’t need to.</li>
<li>Create a project folder somewhere on your hard drive. Right click in  that folder and select “SVN Checkout…”<img src="http://blogs.vertigosoftware.com/photos/jatwood/images/1892/original.aspx" alt="" />type <em>svn://localhost/myproject/</em> for the repository URL and  click OK.<img src="http://blogs.vertigosoftware.com/photos/jatwood/images/1891/original.aspx" alt="" /></li>
<li>Create a new file in that directory. Right click the file  and select “TortoiseSVN, Add”<img src="http://blogs.vertigosoftware.com/photos/jatwood/images/1893/original.aspx" alt="" /></li>
<li>The file hasn’t actually been checked in yet. Subversion  batches any changes and commits them as one atomic operation. To send  all your changes to the server, right click and select “SVN Commit”:<img src="http://blogs.vertigosoftware.com/photos/jatwood/images/1895/original.aspx" alt="" /></li>
</ol>
<p>And we’re done! <strong>You now have a networked Subversion server  and client set up on your machine</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://redhatvn.net/how-to-set-up-a-subversion-server-under-windows/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to clear ARP Cache in windows Vista/XP/2003/2000</title>
		<link>http://redhatvn.net/how-to-clear-arp-cache-in-windows-vistaxp20032000</link>
		<comments>http://redhatvn.net/how-to-clear-arp-cache-in-windows-vistaxp20032000#comments</comments>
		<pubDate>Sun, 07 Feb 2010 12:59:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[win2k8]]></category>

		<guid isPermaLink="false">http://redhatvn.net/?p=1124</guid>
		<description><![CDATA[The Address Resolution Protocol (ARP) is very crucial for TCP/IP network communication. If you begin to notice network connectivity problems such as particular webpages not loading or not being able to ping certain IP addresses then clearing your ARP cache is a good place to start.The TCP/IP ARP Command component provides the functionality to add, [...]]]></description>
			<content:encoded><![CDATA[<div class="google_plus_one"><g:plusone size="medium" count="true" url="http://redhatvn.net/how-to-clear-arp-cache-in-windows-vistaxp20032000"></g:plusone></div><p>The Address Resolution Protocol (ARP) is very crucial for TCP/IP  network  communication. If you begin to notice network connectivity  problems such as  particular webpages  not loading or not being able to  ping certain IP addresses then clearing your  ARP cache is a good place  to start.The TCP/IP ARP Command component provides the  functionality to  add, delete, or display the IP address for Media Access Control  (MAC)  address transalation.<a id="KonaLink1" onclick="adlinkMouseClick(event,this,1);" onmouseover="adlinkMouseOver(event,this,1);" onmouseout="adlinkMouseOut(event,this,1);" href="http://www.windowsreference.com/windows-xp/how-to-clear-arp-cache-in-windows-vistaxp20032000/#" target="_top"></a></p>
<p><span id="more-1124"></span>To flush/Delete the ARP cache in windows Vista/XP/2003/2000 follow  this  procedure</p>
<p>Click on Start—&gt;Run—&gt; type the following command click ok</p>
<p><strong>netsh interface ip delete arpcache</strong></p>
<p>Dynamic ARP cache entries update persist for 2-20 minutes depending  on the  system.</p>
<p>Windows 2003 server<a id="KonaLink2" onclick="adlinkMouseClick(event,this,2);" onmouseover="adlinkMouseOver(event,this,2);" onmouseout="adlinkMouseOut(event,this,2);" href="http://www.windowsreference.com/windows-xp/how-to-clear-arp-cache-in-windows-vistaxp20032000/#" target="_top"></a>= 10  minutes</p>
<p>Windows 2000 professional/Server = 10 minutes</p>
<p>Windows XP = 2 minutes</p>
<p>Solaris = 5 minutes</p>
<p>Delete IP address using arp command</p>
<p>arp -d &lt;ip address&gt;</p>
<p>Example</p>
<p>arp -d 10.1.1.2</p>
<p>Display arp table</p>
<p>arp -a</p>
<p>Add static entry to ARP table</p>
<p>arp -s &lt;ip address&gt; &lt;mac address&gt;</p>
<p>Example</p>
<p>arp -s 157.55.85.212 00-aa-00-62-c6-09</p>
]]></content:encoded>
			<wfw:commentRss>http://redhatvn.net/how-to-clear-arp-cache-in-windows-vistaxp20032000/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How to Fix by reconfiguring boot.ini using Recovery Console</title>
		<link>http://redhatvn.net/how-to-fix-by-reconfiguring-boot-ini-using-recovery-console</link>
		<comments>http://redhatvn.net/how-to-fix-by-reconfiguring-boot-ini-using-recovery-console#comments</comments>
		<pubDate>Fri, 15 Jan 2010 07:06:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[win2k8]]></category>

		<guid isPermaLink="false">http://redhatvn.net/?p=1090</guid>
		<description><![CDATA[1.Boot with XP CD or 6 floppy boot disk set. 2. Press R to load the Recovery Console. 3. Type bootcfg. 4. This should fix any boot.ini errors causing setup not to see the  XP OS install. 5. Try the repair install. One more suggestion from MVP Alex Nichol “Reboot, this time taking the immediate R [...]]]></description>
			<content:encoded><![CDATA[<div class="google_plus_one"><g:plusone size="medium" count="true" url="http://redhatvn.net/how-to-fix-by-reconfiguring-boot-ini-using-recovery-console"></g:plusone></div><p>1.Boot with XP CD or 6 floppy boot disk set.</p>
<p>2. Press R to load the Recovery Console.</p>
<p>3. Type <strong><code>bootcfg</code></strong>.</p>
<p>4. This should fix any boot.ini errors causing setup not to see the  XP OS<br />
install.</p>
<p>5. Try the repair install.</p>
<p><strong>One more suggestion from MVP Alex Nichol</strong></p>
<p>“Reboot, this time taking the immediate R option and if the CD letter is say K: give these commands</p>
<p><strong><code>copy K:\i386\ntldr C:\<br />
copy K:\i386\ntdetect.com C:\</code></strong><br />
(two other files needed – just in case)</p>
<p>1. Type: <strong><code>attrib -h -r -s C:\boot.ini del C:\boot.ini</code></strong></p>
<p>2. Type: <code>BootCfg /Rebuild</code></p>
<p>which will get rid of any damaged boot.ini, search the disk for systems and make a new one. This might even result in a damaged windows reappearing; but gives another chance of getting at the repair”</p>
]]></content:encoded>
			<wfw:commentRss>http://redhatvn.net/how-to-fix-by-reconfiguring-boot-ini-using-recovery-console/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Allow Network Access with Blank Passwords with Vista</title>
		<link>http://redhatvn.net/how-to-allow-network-access-with-blank-passwords-with-vista</link>
		<comments>http://redhatvn.net/how-to-allow-network-access-with-blank-passwords-with-vista#comments</comments>
		<pubDate>Wed, 13 Jan 2010 06:43:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[win2k8]]></category>

		<guid isPermaLink="false">http://redhatvn.net/?p=1062</guid>
		<description><![CDATA[Although you can log in locally without a password, by default, Vista does not allow network users to access the computer without a password. To change this setting: Run gpedit.msc Go to Computer Configuration / Windows Settings / Security Settings / Local Policies / Security Options Double click on Accounts: Limit local account use of [...]]]></description>
			<content:encoded><![CDATA[<div class="google_plus_one"><g:plusone size="medium" count="true" url="http://redhatvn.net/how-to-allow-network-access-with-blank-passwords-with-vista"></g:plusone></div><p>Although you can log in locally without a password, by default, Vista does not allow network users to access the computer without a password.</p>
<p>To change this setting:</p>
<ol>
<li>Run <em>gpedit.msc</em></li>
<li>Go to <em>Computer Configuration / Windows Settings / Security Settings /    Local Policies / Security Options</em></li>
<li>Double click on <em>Accounts: Limit local account use of blank passwords to    console login only</em></li>
<li>Disable this option</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://redhatvn.net/how-to-allow-network-access-with-blank-passwords-with-vista/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>How to Enable IP Routing in Windows</title>
		<link>http://redhatvn.net/how-to-enable-ip-routing-in-windows</link>
		<comments>http://redhatvn.net/how-to-enable-ip-routing-in-windows#comments</comments>
		<pubDate>Fri, 15 Jan 2010 03:36:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[win2k8]]></category>

		<guid isPermaLink="false">http://redhatvn.net/?p=1064</guid>
		<description><![CDATA[Routing between subnets is disabled by default for the TCP/IP protocol in Windows NT. To enable routing, following these steps: WARNING: Using Registry Editor incorrectly can cause serious, system-wide problems that may require you to reinstall Windows NT to correct them. Microsoft cannot guarantee that any problems resulting from the use of Registry Editor can [...]]]></description>
			<content:encoded><![CDATA[<div class="google_plus_one"><g:plusone size="medium" count="true" url="http://redhatvn.net/how-to-enable-ip-routing-in-windows"></g:plusone></div><p>Routing between subnets is disabled by default for the TCP/IP protocol in Windows NT. To enable routing, following these steps:<br />
<span id="more-1064"></span><br />
WARNING: Using Registry Editor incorrectly can cause serious, system-wide problems that may require you to reinstall Windows NT to correct them. Microsoft cannot guarantee that any problems resulting from the use of Registry Editor can be solved. Use this tool at your own risk.</p>
<ol>
<li>Start Registry Editor (REGEDT32.EXE) and go to the following subkey:<br />
<blockquote><p><strong>   HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip<br />
      \Parameters</strong></p></blockquote>
</li>
<li>From the Edit menu, choose Add Value.</li>
<li>Enter the following values:<br />
<blockquote><p>Value Name: IpEnableRouter<br />
Data Type: REG_DWORD<br />
Value: 1</p></blockquote>
</li>
<li>Exit Registry Editor and restart Windows NT.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://redhatvn.net/how-to-enable-ip-routing-in-windows/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
