<?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>David Alber &#187; linux</title>
	<atom:link href="http://www.davidalber.net/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidalber.net</link>
	<description></description>
	<lastBuildDate>Sat, 14 Jan 2012 01:01:32 +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>Remapping the &#8216;exit full screen&#8217; keystroke in VMware</title>
		<link>http://www.davidalber.net/2010/11/remapping-the-exit-full-screen-keystroke-in-vmware/</link>
		<comments>http://www.davidalber.net/2010/11/remapping-the-exit-full-screen-keystroke-in-vmware/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 05:33:21 +0000</pubDate>
		<dc:creator>David Alber</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.davidalber.net/?p=988</guid>
		<description><![CDATA[Tonight I installed VMware Player on my Windows machine to experiment with a few things. After getting it installed, I downloaded the latest Ubuntu image and created a virtual machine with it. Everything went pretty smoothly. VMware, by default, intercepts Ctrl-Alt to exit full-screen mode. Switching virtual workspaces in the windows manager in the new Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight I installed <a title="VMWare Player" href="http://www.vmware.com/products/player/">VMware Player</a> on my Windows machine to experiment with a few things. After getting it installed, I downloaded the <a title="Ubuntu Download" href="http://www.ubuntu.com/desktop/get-ubuntu/download">latest Ubuntu image</a> and created a virtual machine with it. Everything went pretty smoothly.</p>
<p>VMware, by default, intercepts Ctrl-Alt to exit full-screen mode. Switching virtual workspaces in the windows manager in the new Ubuntu machine uses Ctrl-Alt-&lt;Arrow key&gt;, and the VMware keystroke interfered with left and right. It took a while to find it, but Ctrl-Alt-Space followed by Ctrl-Alt-Right , for example, accomplishes the switch, but this is inconvenient. Remapping the keystrokes that switch virtual workspaces is straightforward, but I am too accustomed to Ctrl-Alt-&lt;Arrow key&gt; to do that.</p>
<p>I found how to change the VMware keystroke <a title="preferences.ini" href="http://sanbarrow.com/vmx/vmx-preferences-ini.html">here</a>. The sixth box on that page had what I needed and changed the VMware keystroke to Ctrl-Alt-Shift. I only used the first three lines because the second block has some syntax error in my version of the Player.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidalber.net/2010/11/remapping-the-exit-full-screen-keystroke-in-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grub Reinstall (on Gentoo)</title>
		<link>http://www.davidalber.net/2008/11/grub-reinstall-on-gentoo/</link>
		<comments>http://www.davidalber.net/2008/11/grub-reinstall-on-gentoo/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 18:45:17 +0000</pubDate>
		<dc:creator>David Alber</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Day-to-day]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[note to self]]></category>

		<guid isPermaLink="false">http://www.davidalber.net/?p=248</guid>
		<description><![CDATA[Last night, I reinstalled Windows XP. It had not been working for a little more than a month, and I tried a few repair approaches that did not work out. There was no urgency to do this, which is why I waited so long. Ultimately, I reinstalled Windows (but I &#8220;punished&#8221; it first by giving [...]]]></description>
			<content:encoded><![CDATA[<p>Last night, I reinstalled Windows XP. It had not been working for a little more than a month, and I tried a few repair approaches that did not work out. There was no urgency to do this, which is why I waited so long. Ultimately, I reinstalled Windows (but I &#8220;punished&#8221; it first by giving it a much smaller partition; I have better things I can do with that space). Of course, this means the MBR was wiped out and I needed to reinstall Grub in order to get easy access to Linux again.</p>
<p>This post is more of a note to myself to save time next time (not that it took that much time, but perhaps every bit counts). It assembles information from several sections of the installation portion of the <a title="Gentoo Handbook" href="http://www.gentoo.org/doc/en/handbook/" target="_self">Gentoo Handbook</a>.</p>
<p>Here we go (the devices are specific to my current setup):</p>
<ol>
<li>I booted using the Gentoo minimal install disk.</li>
<li>Mount partitions and change root (Sections 4 and 6).</li>
<blockquote>
<pre><strong>#</strong> mount /dev/sda5 /mnt/gentoo
<strong>#</strong> mount /dev/sda2 /mnt/gentoo/boot
<span class="code-input"><strong>#</strong> mount -t proc none /mnt/gentoo/proc
<strong>#</strong> </span><span class="code-input">chroot /mnt/gentoo /bin/bash
</span></pre>
</blockquote>
<li> Make mtab and reinstall Grub (Section 10).</li>
<blockquote>
<pre><span class="code-input"><strong>#</strong> grep -v rootfs /proc/mounts &gt; /etc/mtab</span>
<strong>#</strong> grub --no-floppy
<strong>grub&gt;</strong> root (hd0,1)
<strong>grub&gt;</strong> setup (hd0)
<strong>grub&gt;</strong> quit</pre>
</blockquote>
</ol>
<p>The parameter (hd0,1) corresponds to the /boot partition (/dev/sda2). If it is not clear how to specify the partition for /boot, that information is available in Grub with</p>
<blockquote>
<pre><strong></strong><strong>grub&gt;</strong> find /boot/grub/stage1</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.davidalber.net/2008/11/grub-reinstall-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

