<?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>fengcool.com &#187; Nelson</title>
	<atom:link href="http://www.fengcool.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fengcool.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 25 Jan 2012 19:09:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VirtualBox Fedora 13 install guest additions</title>
		<link>http://www.fengcool.com/2010/10/virtualbox-fedora-13-install-guest-additions/</link>
		<comments>http://www.fengcool.com/2010/10/virtualbox-fedora-13-install-guest-additions/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 13:57:56 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=184</guid>
		<description><![CDATA[Install packages needed
yum -y install kernel-devel kernel-headers dkms gcc gcc-c++
in VirtualBox devices, select install guest additions
sh VBoxLinuxAdditions.run 
]]></description>
			<content:encoded><![CDATA[<p>Install packages needed</p>
<p>yum -y install kernel-devel kernel-headers dkms gcc gcc-c++<br />
in VirtualBox devices, select install guest additions<br />
sh VBoxLinuxAdditions.run </p>
<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2010%2F10%2Fvirtualbox-fedora-13-install-guest-additions%2F&amp;linkname=VirtualBox%20Fedora%2013%20install%20guest%20additions"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2010/10/virtualbox-fedora-13-install-guest-additions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VirtualBox Fedora 13 guest use shared folder</title>
		<link>http://www.fengcool.com/2010/10/virtualbox-fedora-12-guest-use-shared-folder/</link>
		<comments>http://www.fengcool.com/2010/10/virtualbox-fedora-12-guest-use-shared-folder/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 13:54:32 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=180</guid>
		<description><![CDATA[Fedora 13 as guest OS on a Windows 7 host

Add a shared folder in virtualbox&#8217;s devices settings.
create a folder &#8220;Shared&#8221; in fedora
su –c “mount.vboxsf Shared ~/Shared -o rw,exec,uid=1000,gid=1000,dev”
]]></description>
			<content:encoded><![CDATA[<p><strong>Fedora 13 as guest OS on a Windows 7 host<br />
</strong></p>
<p>Add a shared folder in virtualbox&#8217;s devices settings.<br />
create a folder &#8220;Shared&#8221; in fedora<br />
su –c “mount.vboxsf Shared ~/Shared -o rw,exec,uid=1000,gid=1000,dev”</p>
<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2010%2F10%2Fvirtualbox-fedora-12-guest-use-shared-folder%2F&amp;linkname=VirtualBox%20Fedora%2013%20guest%20use%20shared%20folder"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2010/10/virtualbox-fedora-12-guest-use-shared-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create multiple volumn zip backup with MD5 check</title>
		<link>http://www.fengcool.com/2010/10/create-multiple-volumn-zip-backup-with-md5-check/</link>
		<comments>http://www.fengcool.com/2010/10/create-multiple-volumn-zip-backup-with-md5-check/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 13:48:58 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=178</guid>
		<description><![CDATA[Download and install p7zip:
http://p7zip.sourceforge.net/
Then use 7z
Code:

7z a -v50m test.zip your-big-file-paths

this makes 50 MB volumes called
Code:
test.zip.001  test.zip.002  test.zip.003  test.zip.004
To extract them just run
Code:

7z x test.zip.001

make md5

# md5sum test.zip.* > MD5SUM
# cat MD5SUM
cb16175f4acad02f977f74d5c142879b  test.zip.001
33c745ca49ab6e63b727658ec148cf67  test.zip.002
14e6952b632fbb7f4c0731067afdb46c  test.zip.003
....

check md5

# md5sum --check MD5SUM

]]></description>
			<content:encoded><![CDATA[<p>Download and install p7zip:<br />
http://p7zip.sourceforge.net/</p>
<p>Then use 7z<br />
Code:<br />
<code><br />
7z a -v50m test.zip your-big-file-paths<br />
</code><br />
this makes 50 MB volumes called<br />
Code:</p>
<p>test.zip.001  test.zip.002  test.zip.003  test.zip.004</p>
<p>To extract them just run<br />
Code:</p>
<p><code><br />
7z x test.zip.001<br />
</code></p>
<p>make md5<br />
<code><br />
# md5sum test.zip.* > MD5SUM<br />
# cat MD5SUM<br />
cb16175f4acad02f977f74d5c142879b  test.zip.001<br />
33c745ca49ab6e63b727658ec148cf67  test.zip.002<br />
14e6952b632fbb7f4c0731067afdb46c  test.zip.003<br />
....<br />
</code><br />
check md5<br />
<code><br />
# md5sum --check MD5SUM<br />
</code></p>
<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2010%2F10%2Fcreate-multiple-volumn-zip-backup-with-md5-check%2F&amp;linkname=Create%20multiple%20volumn%20zip%20backup%20with%20MD5%20check"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2010/10/create-multiple-volumn-zip-backup-with-md5-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN make a sub folder to a seperate new repository</title>
		<link>http://www.fengcool.com/2010/10/svn-make-a-sub-folder-to-a-seperate-new-repository/</link>
		<comments>http://www.fengcool.com/2010/10/svn-make-a-sub-folder-to-a-seperate-new-repository/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 13:41:21 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=176</guid>
		<description><![CDATA[
svnadmin dump /svn/old_repos > ./repository.dump
svndumpfilter include path/to/docs --drop-empty-revs --renumber-revs --preserve-revprops < ./repository.dump > ./docs_only.dump
svnadmin load /svn/new_repos < ./docs_only.dump

]]></description>
			<content:encoded><![CDATA[<p><code><br />
svnadmin dump /svn/old_repos > ./repository.dump<br />
svndumpfilter include path/to/docs --drop-empty-revs --renumber-revs --preserve-revprops < ./repository.dump > ./docs_only.dump<br />
svnadmin load /svn/new_repos < ./docs_only.dump<br />
</code></p>
<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2010%2F10%2Fsvn-make-a-sub-folder-to-a-seperate-new-repository%2F&amp;linkname=SVN%20make%20a%20sub%20folder%20to%20a%20seperate%20new%20repository"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2010/10/svn-make-a-sub-folder-to-a-seperate-new-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql fix crashed tables</title>
		<link>http://www.fengcool.com/2009/10/mysql-fix-crashed-tables/</link>
		<comments>http://www.fengcool.com/2009/10/mysql-fix-crashed-tables/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 02:04:15 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[crashed table]]></category>
		<category><![CDATA[fix crashed table]]></category>
		<category><![CDATA[mysql crashed]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=109</guid>
		<description><![CDATA[Automatically find crashed tables and fix them.]]></description>
			<content:encoded><![CDATA[<p>Sometimes, system halt or power off will make your MySQL database crashed and you without knowing it unless you try to access those bad tables. </p>
<p>Run this Linux command to automatically find crashed tables and fix them.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="mysql" style="font-family:monospace;">mysqlcheck <span style="color: #CC0099;">--</span>auto<span style="color: #CC0099;">-</span>repair <span style="color: #CC0099;">-</span>A <span style="color: #CC0099;">-</span>u <span style="color: #CC0099;">&lt;</span>username<span style="color: #CC0099;">&gt;</span> <span style="color: #CC0099;">-</span>p<span style="color: #CC0099;">&lt;</span>password<span style="color: #CC0099;">&gt;</span></pre></td></tr></table></div>

<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2009%2F10%2Fmysql-fix-crashed-tables%2F&amp;linkname=Mysql%20fix%20crashed%20tables"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2009/10/mysql-fix-crashed-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change Firefox user agent to mobile devices&#8217;</title>
		<link>http://www.fengcool.com/2009/08/change-firefox-user-agent-to-mobile-devices/</link>
		<comments>http://www.fengcool.com/2009/08/change-firefox-user-agent-to-mobile-devices/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 14:57:38 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=121</guid>
		<description><![CDATA[Change Firefox user agent string to mobile device help mobile web development]]></description>
			<content:encoded><![CDATA[<p>Often you need view your mobile web development on mobile devices. Wouldn&#8217;t it be better to have Firefox, web developer, firebug and etc to help you?<br />
You can change your desktop Firefox user agent string to make a mobile web site thinks you are view it from a mobile device.<br />
Here&#8217;s how to do it.</p>
<ul>
<li><strong>Type about:config</strong> in Firefox address bar. And read the scary warning and proceed</li>
<li>Right click on the settings and select New -> String. </li>
<li>Enter the preference name: <strong>general.useragent.override</strong>, enter string value: <strong>BlackBerry9000/4.6.0.266 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/120</strong></li>
</ul>
<p>Then you&#8217;ve done. </p>
<p>In above example, &#8220;BlackBerry9000/4.6.0.266 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/120&#8243;  is Blackberry Bold user agent.</p>
<p><strong>Common user agents</strong><br />
iPhone user agent:<br />
Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3<br />
Windows mobile 6 user agent:<br />
Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile M.N)</p>
<p>In case you want to get full desktop power back, just select the settings you just added, and select &#8220;Reset&#8221;</p>
<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2009%2F08%2Fchange-firefox-user-agent-to-mobile-devices%2F&amp;linkname=Change%20Firefox%20user%20agent%20to%20mobile%20devices%26%238217%3B"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2009/08/change-firefox-user-agent-to-mobile-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk common shell commands</title>
		<link>http://www.fengcool.com/2009/06/plesk-common-shell-commands/</link>
		<comments>http://www.fengcool.com/2009/06/plesk-common-shell-commands/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 18:02:40 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=79</guid>
		<description><![CDATA[Plesk common shell commands]]></description>
			<content:encoded><![CDATA[<p>Reload vhost.conf for single domain</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="ini" style="font-family:monospace;">/usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name<span style="color: #000066; font-weight:bold;">=</span></pre></td></tr></table></div>

<p>Update AWStats for only 1 domain in Plesk</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="ini" style="font-family:monospace;">/usr/local/psa/admin/sbin/statistics --calculate-one --domain-name<span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;">you-domain.com</span></pre></td></tr></table></div>

<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2009%2F06%2Fplesk-common-shell-commands%2F&amp;linkname=Plesk%20common%20shell%20commands"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2009/06/plesk-common-shell-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion client for Windows command line output unreadable characters</title>
		<link>http://www.fengcool.com/2009/05/svn-client-command-line-output-message-problem/</link>
		<comments>http://www.fengcool.com/2009/05/svn-client-command-line-output-message-problem/#comments</comments>
		<pubDate>Fri, 08 May 2009 04:16:08 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=75</guid>
		<description><![CDATA[Subversion windows client command line output problem. SVN ouput message problem with current language for non-unicode programs set to Chinese]]></description>
			<content:encoded><![CDATA[<p>If you use subversion client windows command line</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="ini" style="font-family:monospace;">svn help</pre></td></tr></table></div>

<p>on a Windows system with current language for non-Unicode programs set to a different language such as Chinese Simplified.<br />
You probably will see a screen with strange characters &#8211; garbage output in command prompt window.<br />
It&#8217;s very easy to fix this by set an environment variable for your system</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="ini" style="font-family:monospace;">Set LANG<span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;">C</span></pre></td></tr></table></div>

<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2009%2F05%2Fsvn-client-command-line-output-message-problem%2F&amp;linkname=Subversion%20client%20for%20Windows%20command%20line%20output%20unreadable%20characters"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2009/05/svn-client-command-line-output-message-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple helloworld c++ program to test noexec tmp partition</title>
		<link>http://www.fengcool.com/2008/12/simple-helloworld-c-program-to-test-noexec-tmp-partition/</link>
		<comments>http://www.fengcool.com/2008/12/simple-helloworld-c-program-to-test-noexec-tmp-partition/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 16:46:28 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[c++]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=61</guid>
		<description><![CDATA[c++ helloworld for linux to test secured noexec /tmp partition]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #339900;">#include &lt;iostream&gt;</span>
&nbsp;
<span style="color: #0000ff;">int</span> main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
  std<span style="color: #008080;">::</span><span style="color: #0000dd;">cout</span> <span style="color: #000080;">&lt;&lt;</span> <span style="color: #FF0000;">&quot;Hello world, compiled with g++ on linux&quot;</span> <span style="color: #000080;">&lt;&lt;</span> std<span style="color: #008080;">::</span><span style="color: #007788;">endl</span><span style="color: #008080;">;</span>
  <span style="color: #0000ff;">return</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span></pre></td></tr></table></div>

<p>compile this and move to your secured tmp partition and execute it. If you get a permission error, tmp partition is mounted correctly with noexec.</p>
<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2008%2F12%2Fsimple-helloworld-c-program-to-test-noexec-tmp-partition%2F&amp;linkname=Simple%20helloworld%20c%2B%2B%20program%20to%20test%20noexec%20tmp%20partition"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2008/12/simple-helloworld-c-program-to-test-noexec-tmp-partition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install VMware tools to Fedora 10 client OS on Windows Vista host OS</title>
		<link>http://www.fengcool.com/2008/11/install-vmware-tools-to-fedora-10-client-os-on-windows-vista-host-os/</link>
		<comments>http://www.fengcool.com/2008/11/install-vmware-tools-to-fedora-10-client-os-on-windows-vista-host-os/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 04:02:07 +0000</pubDate>
		<dc:creator>Nelson</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.fengcool.com/?p=55</guid>
		<description><![CDATA[How to install VMware tool to Fedora guest OS on a Windows Vista host OS for VMware workstation 6.5.1]]></description>
			<content:encoded><![CDATA[<p>Software requirements:</p>
<ul>
<li>Windows Vista Ultimate 64bit</li>
<li>VMware workstation 6.5.1</li>
<li>Fedora 10 64bit</li>
</ul>
<p>Install packages that are required to build VMware tools:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"> yum <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #c20cb9; font-weight: bold;">gcc</span> <span style="color: #c20cb9; font-weight: bold;">make</span> kernel-devel<span style="color: #000000; font-weight: bold;">&lt;/</span>li<span style="color: #000000; font-weight: bold;">&gt;</span></pre></td></tr></table></div>

<p>Step by step guide</p>
<ol>
<li>Logon to Fedora, and select &#8220;Install VMware Tools&#8221; from VM menu</li>
<li>After the tool cd was mount, open a terminal window logon as root user and type

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> ~
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> VMware
<span style="color: #7a0874; font-weight: bold;">cd</span> VMWare</pre></td></tr></table></div>

</li>
<li>Type:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span>VMware\ Tools<span style="color: #000000; font-weight: bold;">/</span>VMwareTools-7.8.4-126130.tar.gz .<span style="color: #000000; font-weight: bold;">/</span></pre></td></tr></table></div>

</li>
<li>Untar and install by typing:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> zxpf .<span style="color: #000000; font-weight: bold;">/</span>VMwareTools-7.8.4-126130.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> vmware-tools-distrib<span style="color: #000000; font-weight: bold;">/</span>
.<span style="color: #000000; font-weight: bold;">/</span>vmware-install.pl</pre></td></tr></table></div>

</li>
<li>Config and build VMware tool modules:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">vmware-config-tools.pl</pre></td></tr></table></div>

<p>and type y when prompt to build vmware modules</li>
</ol>
<p>Restart your guest OS and then you should have vmware tool installed. You should be able to see your shared folder from the host OS.</p>
<a rel="external nofollow" class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.fengcool.com%2F2008%2F11%2Finstall-vmware-tools-to-fedora-10-client-os-on-windows-vista-host-os%2F&amp;linkname=Install%20VMware%20tools%20to%20Fedora%2010%20client%20OS%20on%20Windows%20Vista%20host%20OS"><img src="http://www.fengcool.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.fengcool.com/2008/11/install-vmware-tools-to-fedora-10-client-os-on-windows-vista-host-os/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

