<?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>Tech Blog &#187; admin</title>
	<atom:link href="http://informationideas.com/news/category/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://informationideas.com/news</link>
	<description>Using technology to help your business</description>
	<lastBuildDate>Sat, 17 Mar 2012 02:14:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Auto start Sphinx searchd after reboot on Linux</title>
		<link>http://informationideas.com/news/2012/02/16/auto-start-sphinx-searchd-after-reboot-on-linux/</link>
		<comments>http://informationideas.com/news/2012/02/16/auto-start-sphinx-searchd-after-reboot-on-linux/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 22:09:07 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Sphinx]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=212</guid>
		<description><![CDATA[By default, after you install and configure Sphinx, you will find that once your OS restarts, search will not be working. That is because searchd is not setup to auto start. The following will solve that problem. Create file /etc/init.d/searchd. sudo vi /etc/init.d/searchd Copy the following into searchd. #!/bin/bash case "${1:-''}" in 'start') /usr/local/bin/searchd ;; [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>By default, after you install and configure Sphinx, you will find that once your OS restarts, search will not be working. That is because searchd is not setup to auto start. The following will solve that problem.</p>
<p>Create file /etc/init.d/searchd.<br />
<code>sudo vi /etc/init.d/searchd</code></p>
<p>Copy the following into searchd.<br />
<code>#!/bin/bash</code></p>
<p>case "${1:-''}" in<br />
'start')<br />
/usr/local/bin/searchd<br />
;;<br />
'stop')<br />
/usr/local/bin/searchd --stop<br />
;;<br />
'restart')<br />
/usr/local/bin/searchd --stop &amp;&amp; /usr/local/bin/searchd<br />
;;<br />
*)<br />
echo "Usage: $SELF start|stop|restart"<br />
exit 1<br />
;;<br />
esac</p>
<p>Add execute to the file<br />
<code>sudo chmod -x /etc/init.d/searchd</code></p>
<p>Register with auto start<br />
<code>sudo update-rc.d searchd defaults</code></p>
<div class="shr-publisher-212"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2012/02/16/auto-start-sphinx-searchd-after-reboot-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scaling down from MS to open source</title>
		<link>http://informationideas.com/news/2011/03/03/scaling-down-from-ms-to-open-source/</link>
		<comments>http://informationideas.com/news/2011/03/03/scaling-down-from-ms-to-open-source/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 00:37:31 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MSSql]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[our development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=167</guid>
		<description><![CDATA[We just moved a service that was running on the Microsoft stack (Windows Server 2008, .NET, MSSql Server, IIS) to an open source stack (Ubuntu Server, php, Codeigniter framework, apache2, postgres). We now run the service on a cloud server with dual cpu and 256MB ram (Yes, that's megabytes). The old server ran on dual [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>We just moved a service that was running on the Microsoft stack (Windows Server 2008, .NET, MSSql Server, IIS) to an open source stack (Ubuntu Server, php, Codeigniter framework, apache2, postgres). </p>
<p>We now run the service on a cloud server with dual cpu and 256MB ram (Yes, that's megabytes).</p>
<p>The old server ran on dual core with 2GB of ram.</p>
<div class="shr-publisher-167"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2011/03/03/scaling-down-from-ms-to-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A four letter word can ruin your day</title>
		<link>http://informationideas.com/news/2011/02/09/a-four-letter-word-can-ruin-your-day/</link>
		<comments>http://informationideas.com/news/2011/02/09/a-four-letter-word-can-ruin-your-day/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 21:48:24 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[EC2]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=159</guid>
		<description><![CDATA[halt + Amazon EC2 + Instance Store = A bad day I did a stupid thing while on vacation. Decided to clone an EC2 server and executed halt from commandline without checking to see if the server was using Instance Store. Whoops, Amazon showed the server as terminating...terminated... ahhhhh. After having to rebuild the server [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>halt + Amazon EC2 + Instance Store = A bad day</p>
<p>I did a stupid thing while on vacation. Decided to clone an EC2 server and executed halt from commandline without checking to see if the server was using Instance Store. Whoops, Amazon showed the server as terminating...terminated... ahhhhh. </p>
<p>After having to rebuild the server while on vacation, I have learned a valuable lesson.</p>
<div class="shr-publisher-159"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2011/02/09/a-four-letter-word-can-ruin-your-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sendmail[2525]: My unqualified host name (servername) unknown</title>
		<link>http://informationideas.com/news/2010/08/05/sendmail2525-my-unqualified-host-name-servername-unknown/</link>
		<comments>http://informationideas.com/news/2010/08/05/sendmail2525-my-unqualified-host-name-servername-unknown/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 22:53:22 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=150</guid>
		<description><![CDATA[If you see these messages in your syslog, your sendmail is not configured correctly with the domain name. If you are sending from a fully qualified domain, add it to the local-host-names file. In Ubuntu, it would be /etc/mail/local-host-names. Make sure it reads something like this. localhost [domain.com] [server name] Now in the /etc/hosts, make [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>If you see these messages in your syslog, your sendmail is not configured correctly with the domain name. If you are sending from a fully qualified domain, add it to the local-host-names file. In Ubuntu, it would be /etc/mail/local-host-names. Make sure it reads something like this.</p>
<p>localhost<br />
[domain.com]<br />
[server name]</p>
<p>Now in the /etc/hosts, make sure it reads the following.</p>
<p>127.0.0.1 [domain.com] [server name] localhost<br />
...</p>
<p>Then</p>
<p>sudo /etc/init.d/sendmail restart</p>
<p>and the error should not continue filling the syslog.</p>
<div class="shr-publisher-150"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2010/08/05/sendmail2525-my-unqualified-host-name-servername-unknown/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fail2ban does not start after reboot</title>
		<link>http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/</link>
		<comments>http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 08:10:39 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=137</guid>
		<description><![CDATA[This problem was identified with the following configuration: Ubuntu 8.04 fail2ban Problem: After fail2ban install, everything works fine, but after reboot fail2ban does not start. Manual /etc/init.d/fail2ban restart fails also. Cause: Fail2ban looks for fail2ban.sock in /var/run/fail2ban/ During reboot, that directory is removed. Fail2ban assumes it is there and fails on restart. Solution: Make sure [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>This problem was identified with the following configuration:<br />
Ubuntu 8.04<br />
fail2ban</p>
<p>Problem: After fail2ban install, everything works fine, but after reboot fail2ban does not start. Manual <code>/etc/init.d/fail2ban restart</code> fails also.</p>
<p>Cause: Fail2ban looks for fail2ban.sock in<br />
<code>/var/run/fail2ban/</code><br />
During reboot, that directory is removed. Fail2ban assumes it is there and fails on restart.</p>
<p>Solution: Make sure the directory exists during start of fail2ban. Edit the init.d for fail2ban to fix this.<br />
<code>sudo vi /etc/init.d/fail2ban</code><br />
Find the do_start option.<br />
<code><br />
do_start()<br />
{<br />
        # Return<br />
        #       0 if daemon has been started<br />
        #       1 if daemon was already running<br />
        #       2 if daemon could not be started<br />
        do_status &#038;& return 1</p>
<p>        if [ -e "$SOCKFILE" ]; then<br />
                log_failure_msg "Socket file $SOCKFILE is present"<br />
                [ "$1" = "force-start" ] \<br />
                        &#038;& log_success_msg "Starting anyway as requested" \<br />
                        || return 2<br />
                DAEMON_ARGS="$DAEMON_ARGS -x"<br />
        fi</p>
<p>        start-stop-daemon --start --quiet --chuid root --exec $DAEMON -- \<br />
                $DAEMON_ARGS start > /dev/null\<br />
                || return 2</p>
<p>        return 0<br />
}<br />
</code><br />
Add the following after the if statement.<br />
<code></p>
<p>        # Assure that /var/run/fail2ban exists<br />
        [ -d /var/run/fail2ban ] || mkdir -p /var/run/fail2ban</p>
<p></code><br />
Finally, it should look like this<br />
<code><br />
do_start()<br />
{<br />
        # Return<br />
        #       0 if daemon has been started<br />
        #       1 if daemon was already running<br />
        #       2 if daemon could not be started<br />
        do_status &#038;& return 1</p>
<p>        if [ -e "$SOCKFILE" ]; then<br />
                log_failure_msg "Socket file $SOCKFILE is present"<br />
                [ "$1" = "force-start" ] \<br />
                        &#038;& log_success_msg "Starting anyway as requested" \<br />
                        || return 2<br />
                DAEMON_ARGS="$DAEMON_ARGS -x"<br />
        fi</p>
<p>        # Assure that /var/run/fail2ban exists<br />
        [ -d /var/run/fail2ban ] || mkdir -p /var/run/fail2ban</p>
<p>        start-stop-daemon --start --quiet --chuid root --exec $DAEMON -- \<br />
                $DAEMON_ARGS start > /dev/null\<br />
                || return 2</p>
<p>        return 0<br />
}<br />
</code><br />
Now restart and it should work.<br />
<code><br />
sudo /etc/init.d/fail2ban restart<br />
</code><br />
Just for kicks, see how /var/run has the newly created fail2ban directory.<br />
<code><br />
sudo ls /var/run<br />
</code></p>
<div class="shr-publisher-137"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VMware Server must be reconfigured when there is a kernel upgrade</title>
		<link>http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/</link>
		<comments>http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 16:42:09 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=107</guid>
		<description><![CDATA[If the linux kernel is upgraded, vmware will not load http://localhost:8222.  It requires a reconfigure when this happens.  Do the following. sudo /usr/bin/vmware-config.pl]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>If the linux kernel is upgraded, vmware will not load http://localhost:8222.  It requires a reconfigure when this happens.  Do the following.</p>
<p>sudo /usr/bin/vmware-config.pl</p>
<div class="shr-publisher-107"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forget your mysql root password?</title>
		<link>http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/</link>
		<comments>http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 05:33:59 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=105</guid>
		<description><![CDATA[This following line saved my butt when something happened and my root password was no longer working. sudo dpkg-reconfigure mysql-server-5.0 It will allow you to reset your root password without messing with the data or any other configuration in my.cnf.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>This following line saved my butt when something happened and my root password was no longer working.</p>
<blockquote><p>sudo dpkg-reconfigure mysql-server-5.0</p></blockquote>
<p>It will allow you to reset your root password without messing with the data or any other configuration in my.cnf.</p>
<div class="shr-publisher-105"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu apache2 virtualhost setup problems</title>
		<link>http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/</link>
		<comments>http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/#comments</comments>
		<pubDate>Tue, 05 May 2009 05:44:35 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=96</guid>
		<description><![CDATA[If you are getting error messages when starting apache2 like "Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName" or "[warn] _default_ VirtualHost overlap on port 80, the first has precedence" you need to make sure a couple of lines are in your /etc/apache2/httpd.confÂ  file. ServerName localhost]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>If you are getting error messages when starting apache2 like</p>
<p>"Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName"<br />
or<br />
"[warn] _default_ VirtualHost overlap on port 80, the first has precedence"</p>
<p>you need to make sure a couple of lines are in your /etc/apache2/httpd.confÂ  file.</p>
<p>ServerName localhost</p>
<div class="shr-publisher-96"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware bridged network Ubuntu and Windows</title>
		<link>http://informationideas.com/news/2009/04/29/vmware-bridged-network-ubuntu-and-windows/</link>
		<comments>http://informationideas.com/news/2009/04/29/vmware-bridged-network-ubuntu-and-windows/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 22:28:35 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=91</guid>
		<description><![CDATA[Setting up a Windows guest to serve to the LAN that the host Ubuntu is on is simple but a few gotchas to look out for. My Setup: 1. Host VM Ubuntu withd 2 NICs 2. Guest VM XP Pro serving http through IIS 3. Lan with DHCP exist at Host VM level 4. Host [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>Setting up a Windows guest to serve to the LAN that the host Ubuntu is on is simple but a few gotchas to look out for.</p>
<p>My Setup:<br />
1. Host VM Ubuntu withd 2 NICs<br />
2. Guest VM XP Pro serving http through IIS<br />
3. Lan with DHCP exist at Host VM level<br />
4. Host VM uses eth0<br />
5. VMware Server</p>
<p>Getting it to work:</p>
<ul>
<li>For the Network Adapter config for the guest VM select the Bridged Network created during install of VMware server (eth1 in my case since eth0 is assigned to host VM)</li>
<li>On host VM Ubuntu, goto System&gt;Preferences&gt;Network Connections</li>
<li>Edit eth1</li>
<li>Uncheck Available to all users</li>
<li>Goto IPv4 Settings tab</li>
<li>Change method to Link-Local Only</li>
<li>Apply and close</li>
<li>Refresh NICs</li>
<li>Make sure ifconfig does not show an IP address from the subnet of your LAN on eth1</li>
<li>Since guest VM XP is to serve http, it should have a static IP</li>
<li>Goto guest VM</li>
<li>Set TCP/IP for the Local Area Connection to a static IP within the subnet of the LAN</li>
<li>Run ipconfig /refresh in command line</li>
<li>Make sure ipconfig shows the correct IP info just set</li>
<li>Make sure it can connect to internet</li>
<li>Make sure Windows Firewall is not blocking http or port 80 (obvious step but it threw me for a loop for a little while)</li>
<li>Now just check from host VM to see if a test webpage shows up</li>
</ul>
<div class="shr-publisher-91"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/04/29/vmware-bridged-network-ubuntu-and-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 Vmware Arrow Keys Problem</title>
		<link>http://informationideas.com/news/2009/04/27/ubuntu-904-vmware-arrow-keys-problem/</link>
		<comments>http://informationideas.com/news/2009/04/27/ubuntu-904-vmware-arrow-keys-problem/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 04:45:53 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=85</guid>
		<description><![CDATA[I finally found how to get all those keys working on my newly installed Ubuntu 9.04 with my XP VM. The issue is that all the arrow keys and delete key don't work. There are others too but not listed. So a bit of googling, I found that you have to map the keys in [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>I finally found how to get all those keys working on my newly installed Ubuntu 9.04 with my XP VM.  The issue is that all the arrow keys and delete key don't work.  There are others too but not listed.  So a bit of googling, I found that you have to map the keys in a vmware config file to solve the problem.  So this is what needs to be done.</p>
<p>1. Edit /usr/lib/vmware/config<br />
2. Add the following to the end.<br />
<code><br />
xkeymap.keycode.108 = 0x138 # Alt_R<br />
xkeymap.keycode.106 = 0x135 # KP_Divide<br />
xkeymap.keycode.104 = 0x11c # KP_Enter<br />
xkeymap.keycode.111 = 0x148 # Up<br />
xkeymap.keycode.116 = 0x150 # Down<br />
xkeymap.keycode.113 = 0x14b # Left<br />
xkeymap.keycode.114 = 0x14d # Right<br />
xkeymap.keycode.105 = 0x11d # Control_R<br />
xkeymap.keycode.118 = 0x152 # Insert<br />
xkeymap.keycode.119 = 0x153 # Delete<br />
xkeymap.keycode.110 = 0x147 # Home<br />
xkeymap.keycode.115 = 0x14f # End<br />
xkeymap.keycode.112 = 0x149 # Prior<br />
xkeymap.keycode.117 = 0x151 # Next<br />
xkeymap.keycode.78 = 0x46 # Scroll_Lock<br />
xkeymap.keycode.127 = 0x100 # Pause<br />
xkeymap.keycode.133 = 0x15b # Meta_L<br />
xkeymap.keycode.134 = 0x15c # Meta_R<br />
xkeymap.keycode.135 = 0x15d # Menu<br />
</code><br />
3. Save it<br />
4. Restart vmware</p>
<p>Thank goodness.  What a pain this was to use with a whole bunch of keys not working.</p>
<div class="shr-publisher-85"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/04/27/ubuntu-904-vmware-arrow-keys-problem/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.451 seconds -->

