<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for SurlyJake</title>
	<atom:link href="http://www.surlyjake.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.surlyjake.com</link>
	<description></description>
	<lastBuildDate>Sun, 22 Jan 2012 04:38:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on How to update my sparc FreeBSD install by msmith</title>
		<link>http://www.surlyjake.com/2009/03/how-to-update-my-sparc-freebsd-install/comment-page-1/#comment-1004</link>
		<dc:creator>msmith</dc:creator>
		<pubDate>Sun, 22 Jan 2012 04:38:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=112#comment-1004</guid>
		<description>Thanks for the writeup. I haven&#039;t had to upgrade FreeBSD in half a decade so most of the steps were lost to me hehe. Also never had to update a sparc freebsd system. I&#039;m running 8.2-RELEASE but I&#039;d imagine the steps are practically the same.</description>
		<content:encoded><![CDATA[<p>Thanks for the writeup. I haven&#8217;t had to upgrade FreeBSD in half a decade so most of the steps were lost to me hehe. Also never had to update a sparc freebsd system. I&#8217;m running 8.2-RELEASE but I&#8217;d imagine the steps are practically the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Open-VM-tools on Debian 6 squeeze by Nifty Debian packages &#124; cloud.kemta.net</title>
		<link>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/comment-page-1/#comment-1002</link>
		<dc:creator>Nifty Debian packages &#124; cloud.kemta.net</dc:creator>
		<pubDate>Wed, 18 Jan 2012 11:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=700#comment-1002</guid>
		<description>[...] open-vm-tools Opensource vmware tools. Follow the guide on this site: http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/ [...]</description>
		<content:encoded><![CDATA[<p>[...] open-vm-tools Opensource vmware tools. Follow the guide on this site: http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Open-VM-tools on Debian 6 squeeze by Bob</title>
		<link>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/comment-page-1/#comment-991</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sat, 14 Jan 2012 15:38:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=700#comment-991</guid>
		<description>I am bringing up squeeze (Debian 6) on a on a 3.1.0-1-686-pae kernel as a guest of a windows 7 machine.

The latest update of open-vm-tools migrated from module-assistant to DKMS-based kernel module builds.  Unfortunately the DKMS process is broken (but OK with work-arounds).

I installed open-vm-tools and ended up with the the following packages:

ii  open-vm-dkms              2:8.8.0+2011.12.20-562307-1 
ii  open-vm-tools             2:8.8.0+2011.12.20-562307-1

Normally, DKMS will automatically build and install kernel modules.  To get a DKMS build and install of the open-vm kernel modules, I had to patch vmxnet.c and run dkms manually

Patch:

--- vmxnet-original.c   2012-01-07 17:59:02.000000000 -0800
+++ vmxnet-modified.c   2012-01-07 17:59:21.000000000 -0800
@@ -2042 +2042 @@
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)
@@ -2054 +2054 @@
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)
@@ -2077 +2077 @@
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)
@@ -2084 +2084 @@
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)
@@ -2586 +2586 @@
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)


DKMS commands, see dkms (8):

% dkms add open-vm-tools/2011.12.20
% dkms build open-vm-tools/2011.12.20
% dkms install open-vm-tools/2011.12.20

DKMS status: before and after each step I used

% dkms status open-vm-tools/2011.12.20


Finally, I checked the modules using lsmod

% modinfo vmxnet

Result: open-vm-tools kernel modules loaded successfully.</description>
		<content:encoded><![CDATA[<p>I am bringing up squeeze (Debian 6) on a on a 3.1.0-1-686-pae kernel as a guest of a windows 7 machine.</p>
<p>The latest update of open-vm-tools migrated from module-assistant to DKMS-based kernel module builds.  Unfortunately the DKMS process is broken (but OK with work-arounds).</p>
<p>I installed open-vm-tools and ended up with the the following packages:</p>
<p>ii  open-vm-dkms              2:8.8.0+2011.12.20-562307-1<br />
ii  open-vm-tools             2:8.8.0+2011.12.20-562307-1</p>
<p>Normally, DKMS will automatically build and install kernel modules.  To get a DKMS build and install of the open-vm kernel modules, I had to patch vmxnet.c and run dkms manually</p>
<p>Patch:</p>
<p>&#8212; vmxnet-original.c   2012-01-07 17:59:02.000000000 -0800<br />
+++ vmxnet-modified.c   2012-01-07 17:59:21.000000000 -0800<br />
@@ -2042 +2042 @@<br />
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)<br />
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)<br />
@@ -2054 +2054 @@<br />
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)<br />
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)<br />
@@ -2077 +2077 @@<br />
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)<br />
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)<br />
@@ -2084 +2084 @@<br />
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)<br />
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)<br />
@@ -2586 +2586 @@<br />
-#if COMPAT_LINUX_VERSION_CHECK_LT(3, 1, 0)<br />
+#if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)</p>
<p>DKMS commands, see dkms (8):</p>
<p>% dkms add open-vm-tools/2011.12.20<br />
% dkms build open-vm-tools/2011.12.20<br />
% dkms install open-vm-tools/2011.12.20</p>
<p>DKMS status: before and after each step I used</p>
<p>% dkms status open-vm-tools/2011.12.20</p>
<p>Finally, I checked the modules using lsmod</p>
<p>% modinfo vmxnet</p>
<p>Result: open-vm-tools kernel modules loaded successfully.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Open-VM-tools on Debian 6 squeeze by Chris</title>
		<link>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/comment-page-1/#comment-962</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 30 Dec 2011 18:46:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=700#comment-962</guid>
		<description>Thanks! Worked perfectly with VMware 4 and Debian Squeeze. One thing you may want to add for folks is to make sure they also install the appropriate linux headers for their kernel.</description>
		<content:encoded><![CDATA[<p>Thanks! Worked perfectly with VMware 4 and Debian Squeeze. One thing you may want to add for folks is to make sure they also install the appropriate linux headers for their kernel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Open-VM-tools on Debian 6 squeeze by powit</title>
		<link>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/comment-page-1/#comment-959</link>
		<dc:creator>powit</dc:creator>
		<pubDate>Wed, 28 Dec 2011 11:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=700#comment-959</guid>
		<description>this doesn&#039;t work for kernel 3

#uname -r
3.1.0-1-686-pae

linux-headers-3.1.0-1-686-pae installed 

I think not yet supported!</description>
		<content:encoded><![CDATA[<p>this doesn&#8217;t work for kernel 3</p>
<p>#uname -r<br />
3.1.0-1-686-pae</p>
<p>linux-headers-3.1.0-1-686-pae installed </p>
<p>I think not yet supported!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pstools: Access Denied in a Domain Environment by Brad</title>
		<link>http://www.surlyjake.com/2010/09/pstools-access-denied-in-a-domain-environment/comment-page-1/#comment-956</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Wed, 30 Nov 2011 00:13:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=669#comment-956</guid>
		<description>I&#039;ll see your credentials and raise you one :-)  If you do the Shift+RightClick on the &#039;CMD&#039; in the start box and enter the Local Administrator credentials for the target machine, you can leave off the PsExec -u and -p params altogether!  Since I started using Ver. 1.98 I&#039;m now including the -h param, and that lets me connect fine to a Win2K8,R2 or Win7 machine from XP, but it seems to have no effect whatsoever connecting FROM a Win2K8 or Win7 machine.

BTW, I had my Network Engineers check and UAC is disabled on the target as well as on my Win7 PC where I&#039;m executing from, so that&#039;s no solution to this issue.

Is there a way to automate that Shift+RightClick from the command-line?  If so, I could modify my scripts to perform those additional steps when the target is either Win7, Win2K8, or (I assume) Win8.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll see your credentials and raise you one <img src='http://www.surlyjake.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   If you do the Shift+RightClick on the &#8216;CMD&#8217; in the start box and enter the Local Administrator credentials for the target machine, you can leave off the PsExec -u and -p params altogether!  Since I started using Ver. 1.98 I&#8217;m now including the -h param, and that lets me connect fine to a Win2K8,R2 or Win7 machine from XP, but it seems to have no effect whatsoever connecting FROM a Win2K8 or Win7 machine.</p>
<p>BTW, I had my Network Engineers check and UAC is disabled on the target as well as on my Win7 PC where I&#8217;m executing from, so that&#8217;s no solution to this issue.</p>
<p>Is there a way to automate that Shift+RightClick from the command-line?  If so, I could modify my scripts to perform those additional steps when the target is either Win7, Win2K8, or (I assume) Win8.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Batch extract a directory full of split RAR archives &#8220;part1&#8243;, &#8220;part2&#8243; by enolive</title>
		<link>http://www.surlyjake.com/2009/07/batch-extract-a-directory-full-of-split-rar-archives-part1-part2/comment-page-1/#comment-955</link>
		<dc:creator>enolive</dc:creator>
		<pubDate>Mon, 28 Nov 2011 21:18:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/uncategorized/batch-extract-a-directory-full-of-split-rar-archives-part1-part2/#comment-955</guid>
		<description>thanks +1

this saves a lot work when extracting tons of stuff from a file hosting service</description>
		<content:encoded><![CDATA[<p>thanks +1</p>
<p>this saves a lot work when extracting tons of stuff from a file hosting service</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Open-VM-tools on Debian 6 squeeze by GT</title>
		<link>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/comment-page-1/#comment-954</link>
		<dc:creator>GT</dc:creator>
		<pubDate>Sun, 27 Nov 2011 08:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=700#comment-954</guid>
		<description>Great job - works with ESX 5 too</description>
		<content:encoded><![CDATA[<p>Great job &#8211; works with ESX 5 too</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Open-VM-tools on Debian 6 squeeze by Dominic</title>
		<link>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/comment-page-1/#comment-953</link>
		<dc:creator>Dominic</dc:creator>
		<pubDate>Wed, 16 Nov 2011 16:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=700#comment-953</guid>
		<description>At last I found your good advice for getting vmware tools to work using VMWare Player 4.0 and Debian Squeeze. Thanks very much!</description>
		<content:encoded><![CDATA[<p>At last I found your good advice for getting vmware tools to work using VMWare Player 4.0 and Debian Squeeze. Thanks very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vmware &#8211; Unable to change virtual machine power state: Internal error. by VPelagatti</title>
		<link>http://www.surlyjake.com/2009/08/vmware-unable-to-change-virtual-machine-power-state-internal-error/comment-page-1/#comment-951</link>
		<dc:creator>VPelagatti</dc:creator>
		<pubDate>Sat, 12 Nov 2011 02:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.surlyjake.com/?p=528#comment-951</guid>
		<description>Great! Work for me too</description>
		<content:encoded><![CDATA[<p>Great! Work for me too</p>
]]></content:encoded>
	</item>
</channel>
</rss>

