<?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>Iam8up Blog &#187; linux</title>
	<atom:link href="http://stfunoo.be/?feed=rss2&#038;cat=7" rel="self" type="application/rss+xml" />
	<link>http://stfunoo.be</link>
	<description>Posts of comedy and nerdtastity</description>
	<lastBuildDate>Mon, 30 Aug 2010 05:03:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Dell PowerEdge R200 and ESX or ESXi</title>
		<link>http://stfunoo.be/?p=916</link>
		<comments>http://stfunoo.be/?p=916#comments</comments>
		<pubDate>Mon, 07 Jun 2010 19:51:15 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=916</guid>
		<description><![CDATA[What a mess. The HCL says it works with ESX 3.5u5, 4.0 and 4.0u1. No mention of ESXi. This blog suggests it works with ESXi 3.5u1. I can verify that it does NOT work with ESXi 3.5u5. My personal tests (a simple install and connection with VIC): Fail &#8211; ESXi 3.5u5 Win &#8211; ESXi 4.0u1, [...]]]></description>
			<content:encoded><![CDATA[<p>What a mess.</p>
<p>The <a href="http://www.vmware.com/resources/compatibility/search.php?action=search&#038;deviceCategory=server&#038;productId=1&#038;advancedORbasic=advanced&#038;maxDisplayRows=50&#038;key=r200&#038;release[]=-1&#038;datePosted=-1&#038;partnerId[]=-1&#038;formFactorId[]=-1&#038;filterByEVC=0&#038;filterByFT=0&#038;min_sockets=&#038;min_cores=&#038;min_memory=&#038;rorre=0">HCL</a> says it works with ESX 3.5u5, 4.0 and 4.0u1.  No mention of ESXi.</p>
<p><a href="http://www.virtlab.biz/vmware/8">This blog</a> suggests it works with ESXi 3.5u1.  I can verify that it does NOT work with ESXi 3.5u5.</p>
<p>My personal tests (a simple install and connection with VIC):</p>
<p>Fail &#8211; ESXi 3.5u5<br />
Win &#8211; ESXi 4.0u1, ESX 3.5 (trial)</p>
<p>I installed the only compatible RAID card (from Dell, ~$200 SAS 6 ir) and ESXi 4.0u1 is still working.</p>
<p>UPDATE:  Just checked the website and they&#8217;re saying ESXi 3.5u5 works.  I believe I have BIOS 1.3.1 and found this NOT to be true.  I can&#8217;t take down my system to check anymore.</p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=916</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux &#8211; move to new hard drive</title>
		<link>http://stfunoo.be/?p=899</link>
		<comments>http://stfunoo.be/?p=899#comments</comments>
		<pubDate>Fri, 04 Jun 2010 04:30:38 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=899</guid>
		<description><![CDATA[GREAT article on this&#8230; Note if you copy/paste some of the commands the &#8220;-&#8221; comes out as &#8220;.&#8221; from that site to Putty. Basically you add the new disk, usually for VMware you&#8217;ll run echo "- - -" > /sys/class/scsi_host/host0/scan partition it the same (replicate the mount points and of course allot equal or greater [...]]]></description>
			<content:encoded><![CDATA[<p>GREAT <a href="http://www.linuxscrew.com/2007/08/13/move-linux-to-another-hard-drive-dump-restore-backup/#tb">article</a> on this&#8230;</p>
<p>Note if you copy/paste some of the commands the &#8220;-&#8221; comes out as &#8220;.&#8221; from that site to Putty.</p>
<p>Basically you add the new disk, usually for VMware you&#8217;ll run</p>
<p><code>echo "- - -" > /sys/class/scsi_host/host0/scan</code></p>
<p>partition it the same (replicate the mount points and of course allot equal or greater space then current data use) and then mount them and run</p>
<p><code>cd /mnt/sdb1 &#038;&#038; dump -0uan -f – /boot | restore -r -f -<br />
cd /mnt/sdb3 &#038;&#038; dump -0uan -f – /| restore -r -f -</code></p>
<p>or something similar.  I usually partition /boot, swap and then /.</p>
<p>This worked on my CentOS 5 in VMware.</p>
<p>And for the longhand&#8230;</p>
<p><code>fdisk /dev/sdb</code></p>
<p><code>mkfs -t ext3 /dev/sdb1<br />
mkfs -t ext3 /dev/sdb3<br />
mkswap /dev/sdb2</code></p>
<p><code>tune2fs -L "/boot" /dev/sdb1<br />
tune2fs -L "/" /dev/sdb3</code></p>
<p><code>mkdir /mnt/sdb1 &#038;&#038; mount /dev/sdb1 /mnt/sdb1<br />
cd /mnt/sdb1 &#038;&#038; dump -0uan -f – /boot | restore -r -f -</code></p>
<p><code>mkdir /mnt/sdb3 &#038;&#038; mount /dev/sdb3 /mnt/sdb3<br />
cd /mnt/sdb3 &#038;&#038; dump -0uan -f – / | restore -r -f -</code></p>
<p><code>grub-install<br />
grub>root (hd1, 0)<br />
grub>setup (hd1)<br />
grub>quit</code></p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=899</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MikroTik RB750 initial script</title>
		<link>http://stfunoo.be/?p=866</link>
		<comments>http://stfunoo.be/?p=866#comments</comments>
		<pubDate>Fri, 07 May 2010 19:09:39 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[mikrotik]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=866</guid>
		<description><![CDATA[#&#124; ether1 is renamed ether1-gateway, rest of interfaces are switched #&#124; IP address 192.168.88.1/24 is on switch #&#124; DHCP client is on ether1-gateway #&#124; DHCP server is on switch, with address pool 192.168.88.10-192.168.88.254 #&#124; masquerade on ether1-gateway :global action # these commands are executed after installation or configuration reset :if ($action = &#8220;apply&#8221;) do={ /interface [...]]]></description>
			<content:encoded><![CDATA[<p>#| ether1 is renamed ether1-gateway, rest of interfaces are switched<br />
#| IP address 192.168.88.1/24 is on switch<br />
#| DHCP client is on ether1-gateway<br />
#| DHCP server is on switch, with address pool 192.168.88.10-192.168.88.254<br />
#| masquerade on ether1-gateway<br />
:global action</p>
<p># these commands are executed after installation or configuration reset<br />
:if ($action = &#8220;apply&#8221;) do={<br />
    /interface set ether1 name=ether1-gateway<br />
    /interface set ether2 name=ether2-local-master<br />
    /interface set ether3 name=ether3-local-slave<br />
    /interface set ether4 name=ether4-local-slave<br />
    /interface set ether5 name=ether5-local-slave</p>
<p>    /interface ethernet set ether3-local-slave master-port=ether2-local-master<br />
    /interface ethernet set ether4-local-slave master-port=ether2-local-master<br />
    /interface ethernet set ether5-local-slave master-port=ether2-local-master</p>
<p>    /ip address add address=192.168.88.1/24 interface=ether2-local-master comment=&#8221;default configuration&#8221;</p>
<p>    :if ([:len [/system package find name="dhcp" !disabled]] != 0) do={<br />
        /ip dhcp-client add interface=ether1-gateway disabled=no comment=&#8221;default configuration&#8221;;<br />
        /ip pool add name=default-dhcp ranges=192.168.88.10-192.168.88.254;<br />
        /ip dhcp-server add name=default address-pool=default-dhcp interface=ether2-local-master disabled=no;<br />
        /ip dhcp-server network add address=192.168.88.0/24 gateway=192.168.88.1 dns-server=192.168.88.1 comment=&#8221;default configuration&#8221;;<br />
    }</p>
<p>    /ip firewall {<br />
    	filter add chain=input action=accept protocol=icmp comment=&#8221;default configuration&#8221;<br />
	filter add chain=input action=accept connection-state=established in-interface=ether1-gateway comment=&#8221;default configuration&#8221;<br />
	filter add chain=input action=accept connection-state=related in-interface=ether1-gateway comment=&#8221;default configuration&#8221;<br />
	filter add chain=input action=drop in-interface=ether1-gateway comment=&#8221;default configuration&#8221;<br />
        nat add chain=srcnat out-interface=ether1-gateway action=masquerade comment=&#8221;default configuration&#8221;<br />
    }</p>
<p>    /ip dns {<br />
    	set allow-remote-requests=yes<br />
    	static add name=router address=192.168.88.1<br />
    }</p>
<p>    /tool mac-server remove [find]<br />
    /tool mac-server add interface=ether2-local-master disabled=no<br />
    /tool mac-server add interface=ether3-local-slave disabled=no<br />
    /tool mac-server add interface=ether4-local-slave disabled=no<br />
    /tool mac-server add interface=ether5-local-slave disabled=no</p>
<p>    /tool mac-server mac-winbox disable [find]<br />
    /tool mac-server mac-winbox add interface=ether2-local-master disabled=no<br />
    /tool mac-server mac-winbox add interface=ether3-local-slave disabled=no<br />
    /tool mac-server mac-winbox add interface=ether4-local-slave disabled=no<br />
    /tool mac-server mac-winbox add interface=ether5-local-slave disabled=no</p>
<p>    /ip neighbor discovery set [find name=ether1-gateway] discover=no<br />
}</p>
<p># these commands are executed if user requests to remove default configuration<br />
:if ($action = &#8220;revert&#8221;) do={<br />
    /ip firewall {<br />
        :local o [nat find comment="default configuration"]<br />
        :if ([:len $o] != 0) do={ nat remove $o }</p>
<p>        :local o [filter find comment="default configuration"]<br />
        :if ([:len $o] != 0) do={ filter remove $o }<br />
    }</p>
<p>    :if ([:len [/system package find name="dhcp" !disabled]] != 0) do={<br />
        :local o [/ip dhcp-server network find comment="default configuration"]<br />
        :if ([:len $o] != 0) do={ /ip dhcp-server network remove $o }</p>
<p>        :local o [/ip dhcp-server find name="default" address-pool="default-dhcp" interface=ether2-local-master !disabled]<br />
        :if ([:len $o] != 0) do={ /ip dhcp-server remove $o }</p>
<p>        /ip pool {<br />
            :local o [find name=default-dhcp ranges=192.168.88.10-192.168.88.254]<br />
            :if ([:len $o] != 0) do={ remove $o }<br />
        }</p>
<p>        :local o [/ip dhcp-client find comment="default configuration"]<br />
        :if ([:len $o] != 0) do={ /ip dhcp-client remove $o }<br />
    }</p>
<p>    /ip dns {<br />
    	set allow-remote-requests=no<br />
        :local o [static find name=router address=192.168.88.1]<br />
        :if ([:len $o] != 0) do={ static remove $o }<br />
    }</p>
<p>    /ip address {<br />
        :local o [find comment="default configuration"]<br />
        :if ([:len $o] != 0) do={ remove $o }<br />
    }</p>
<p>    /tool mac-server remove [find]<br />
    /tool mac-server add interface=all disabled=no</p>
<p>    /tool mac-server mac-winbox remove [find interface!=all]<br />
    /tool mac-server mac-winbox set [find] disabled=no </p>
<p>    /ip neighbor discovery set [find name=ether1-gateway] discover=yes</p>
<p>    /interface ethernet set ether3-local-slave master-port=none<br />
    /interface ethernet set ether4-local-slave master-port=none<br />
    /interface ethernet set ether5-local-slave master-port=none</p>
<p>    /interface set ether1-gateway name=ether1<br />
    /interface set ether2-local-master name=ether2<br />
    /interface set ether3-local-slave name=ether3<br />
    /interface set ether4-local-slave name=ether4<br />
    /interface set ether5-local-slave name=ether5<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=866</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Redirect delinquint users using MikroTik</title>
		<link>http://stfunoo.be/?p=859</link>
		<comments>http://stfunoo.be/?p=859#comments</comments>
		<pubDate>Tue, 04 May 2010 17:28:37 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[mikrotik]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=859</guid>
		<description><![CDATA[UPDATE: Christopher Tyler of Total Wireless Communications pointed out DNS can&#8217;t be done. Whoopsy daisy! You will find three rules that have WEBSERVERIP. This must be the IP (not the DNS name) of the webserver. This means the default vhost or the only directory of your Apache server must be the redirect page. The firewall [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE:  Christopher Tyler of Total Wireless Communications pointed out DNS can&#8217;t be done.  <a href="http://www.youtube.com/watch?v=AkKeVLHdTw4">Whoopsy daisy!</a></p>
<p>You will find three rules that have WEBSERVERIP.  This must be the IP (not the DNS name) of the webserver.  This means the default vhost or the only directory of your Apache server must be the redirect page.</p>
<p>The firewall filter rules are to allow traffic from the customer&#8217;s /32 and the web server on 80/tcp and 443/tcp and vice versa.  Then it blocks everything else.</p>
<p><code>/ip firewall filter<br />
add action=accept chain=forward comment="allow nonpayment http to bmu" \<br />
    disabled=no dst-address=WEBSERVERIP port=80 protocol=tcp \<br />
    src-address-list=nonpayment<br />
add action=accept chain=forward comment="allow nonpayment https to bmu" \<br />
    disabled=no dst-address=WEBSERVERIP port=443 protocol=tcp \<br />
    src-address-list=nonpayment<br />
#thankschris<br />
add action=accept chain=forward comment="allow dns" disabled=no protocol=udp\<br />
    port=53<br />
add action=accept chain=forward comment="allow dns" disabled=no protocol=tcp\<br />
    port=53<br />
#end thankschris<br />
add action=drop chain=forward comment="drop nonpayment tcp traffic" disabled=\<br />
    no protocol=tcp src-address-list=nonpayment<br />
add action=drop chain=forward comment="drop nonpayment udp traffic" disabled=\<br />
    no protocol=udp src-address-list=nonpayment</code></p>
<p>This does the redirecting work.  This takes the address list of nonpayment and points them to the web server.</p>
<p><code>/ip firewall nat<br />
add action=dst-nat chain=dstnat comment="redirect nonpayment http" disabled=\<br />
    no port=80 protocol=tcp src-address-list=nonpayment to-addresses=\<br />
    WEBSERVERIP to-ports=80</code></p>
<p>Then just add the late people to address list &#8220;nonpayment&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=859</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset ImageStream configuration, factory default or password reset</title>
		<link>http://stfunoo.be/?p=845</link>
		<comments>http://stfunoo.be/?p=845#comments</comments>
		<pubDate>Mon, 26 Apr 2010 20:00:34 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=845</guid>
		<description><![CDATA[Connect your laptop via the console port and use the &#8220;failsafe&#8221; option when booting, that gives you a menu you can use to erase the existing password. Thanks Tom Sharples!]]></description>
			<content:encoded><![CDATA[<p>Connect your laptop via the console port and use the &#8220;failsafe&#8221; option when booting, that gives you a menu you can use to erase the existing password.</p>
<p>Thanks Tom Sharples!</p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=845</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImageStream iperf binary</title>
		<link>http://stfunoo.be/?p=840</link>
		<comments>http://stfunoo.be/?p=840#comments</comments>
		<pubDate>Tue, 20 Apr 2010 14:45:11 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=840</guid>
		<description><![CDATA[Thanks to Paul Benner for this! $wget http://ims1.imagestream.com/~pbenner/iperf $chmod 755 iperf I put mine in /bin This works on my Envoy 4.4.0-47 and Rebel 4.2.12-33.]]></description>
			<content:encoded><![CDATA[<p>Thanks to Paul Benner for this!</p>
<blockquote><p>$wget http://ims1.imagestream.com/~pbenner/iperf<br />
$chmod 755 iperf</p></blockquote>
<p>I put mine in /bin</p>
<p>This works on my Envoy 4.4.0-47 and Rebel 4.2.12-33.</p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=840</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux static route commands</title>
		<link>http://stfunoo.be/?p=838</link>
		<comments>http://stfunoo.be/?p=838#comments</comments>
		<pubDate>Wed, 14 Apr 2010 01:24:06 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=838</guid>
		<description><![CDATA[route add -net 10.0.0.0 netmask 255.0.0.0 gw 192.168.1.254 wlan0 route del -net 10.0.0.0 netmask 255.0.0.0 gw 192.168.1.254 wlan0 Much better resource&#8230; http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch03_:_Linux_Networking Pretty good resource to bookmark. http://www.oreillynet.com/linux/cmd/cmd.csp?path=r/route]]></description>
			<content:encoded><![CDATA[<p>route add -net 10.0.0.0 netmask 255.0.0.0 gw 192.168.1.254 wlan0<br />
route del -net 10.0.0.0 netmask 255.0.0.0 gw 192.168.1.254 wlan0</p>
<p>Much better resource&#8230;</p>
<p><a href="http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch03_:_Linux_Networking">http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch03_:_Linux_Networking</a></p>
<p>Pretty good resource to bookmark.</p>
<p><a href="http://www.oreillynet.com/linux/cmd/cmd.csp?path=r/route">http://www.oreillynet.com/linux/cmd/cmd.csp?path=r/route</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=838</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add SCSI disk to VMware guest</title>
		<link>http://stfunoo.be/?p=828</link>
		<comments>http://stfunoo.be/?p=828#comments</comments>
		<pubDate>Mon, 05 Apr 2010 00:27:15 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=828</guid>
		<description><![CDATA[After adding a SCSI disk to a VMware guest you can issue the following command to rescan the SCSI bus: echo &#8220;- &#8211; -&#8221; > /sys/class/scsi_host/host#/scan This should work with everything, but I&#8217;m too poor to afford real SCSI controllers. Need mine to be imaginary =) SRC: http://www.cyberciti.biz/tips/vmware-add-a-new-hard-disk-without-rebooting-guest.html]]></description>
			<content:encoded><![CDATA[<p>After adding a SCSI disk to a VMware guest you can issue the following command to rescan the SCSI bus:</p>
<blockquote><p>echo &#8220;- &#8211; -&#8221; > /sys/class/scsi_host/host#/scan</p></blockquote>
<p>This should work with everything, but I&#8217;m too poor to afford real SCSI controllers.  Need mine to be imaginary =)</p>
<p>SRC: <a href="http://www.cyberciti.biz/tips/vmware-add-a-new-hard-disk-without-rebooting-guest.html">http://www.cyberciti.biz/tips/vmware-add-a-new-hard-disk-without-rebooting-guest.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=828</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware tools on Linux without X</title>
		<link>http://stfunoo.be/?p=822</link>
		<comments>http://stfunoo.be/?p=822#comments</comments>
		<pubDate>Fri, 02 Apr 2010 04:14:30 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=822</guid>
		<description><![CDATA[Tell your VMware application (Server, ESX, ESXi, Workstation, etc) to install VMware Tools. It will insert a CD in the drive. You will probably need to mount it by hand mount /dev/cdrom /media Then get it going cp /media/VMwareTools*.tar.gz /tmp cd /tmp tar -xzf VMwareTools* cd vmware-tools-distrib ./vmware-install.pl From what I understand the RPM has [...]]]></description>
			<content:encoded><![CDATA[<p>Tell your VMware application (Server, ESX, ESXi, Workstation, etc) to install VMware Tools.  It will insert a CD in the drive.  You will probably need to mount it by hand</p>
<blockquote><p>mount /dev/cdrom /media</p></blockquote>
<p>Then get it going</p>
<blockquote><p>cp /media/VMwareTools*.tar.gz /tmp<br />
cd /tmp<br />
tar -xzf VMwareTools*<br />
cd vmware-tools-distrib<br />
./vmware-install.pl</p></blockquote>
<p>From what I understand the RPM has never worked.  This worked on CentOS 5.2 just fine.  I&#8217;ve always used defaults.</p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=822</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware ESXi 3.5 update 5 Poweredge 1750</title>
		<link>http://stfunoo.be/?p=754</link>
		<comments>http://stfunoo.be/?p=754#comments</comments>
		<pubDate>Tue, 09 Mar 2010 18:37:06 +0000</pubDate>
		<dc:creator>iam8up</dc:creator>
				<category><![CDATA[geeky]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://stfunoo.be/?p=754</guid>
		<description><![CDATA[Works perfectly fine for me. Stick in the CD, install it and away you go! I was able to enable SSH access by *vi /etc/inetd.conf *uncomment the line with ssh *kill -s HUP `pgrep -n inetd` SRC: http://communities.vmware.com/message/967166#967166]]></description>
			<content:encoded><![CDATA[<p>Works perfectly fine for me.  Stick in the CD, install it and away you go!</p>
<p>I was able to enable SSH access by<br />
*vi /etc/inetd.conf<br />
*uncomment the line with ssh<br />
*kill -s HUP `pgrep -n inetd`</p>
<p>SRC: http://communities.vmware.com/message/967166#967166</p>
]]></content:encoded>
			<wfw:commentRss>http://stfunoo.be/?feed=rss2&amp;p=754</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
