<?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>SurlyJake &#187; Debian Squeeze</title>
	<atom:link href="http://www.surlyjake.com/category/linux/debian-squeeze/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.surlyjake.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Dec 2011 15:28:12 +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>Install Open-VM-tools on Debian 6 squeeze</title>
		<link>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=install-open-vm-tools-on-debian-6-squeeze</link>
		<comments>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 21:51:53 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Debian Squeeze]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[squeeze]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vmware tools]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=700</guid>
		<description><![CDATA[Installing Open Virtual Machine Tools is a nice alternative to managing and installing the vmware tools package that comes with Vmware&#8217;s hypervisor products.  It allows you to use APT to manage all the dependencies and updates. Module assistant will recompile the kernel modules for you automatically when you update kernels too. I have verified that [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Open <a href="http://www.surlyjake.com/tag/virtual-machine/" class="st_tag internal_tag" rel="tag" title="Posts tagged with virtual machine">Virtual Machine</a> Tools is a nice alternative to managing and installing the <a href="http://www.surlyjake.com/tag/vmware/" class="st_tag internal_tag" rel="tag" title="Posts tagged with VMware">vmware</a> tools package that comes with <a href="http://www.surlyjake.com/tag/vmware/" class="st_tag internal_tag" rel="tag" title="Posts tagged with VMware">Vmware</a>&#8217;s hypervisor products.  It allows you to use APT to manage all the dependencies and updates. Module assistant will recompile the kernel modules for you automatically when you update kernels too.</p>
<p>I have verified that this configuration works under ESXi 4.1.0, 260247 and a new <a href="http://www.surlyjake.com/tag/squeeze/" class="st_tag internal_tag" rel="tag" title="Posts tagged with squeeze">Squeeze</a> <a href="http://www.surlyjake.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a>. All of the essential functions like being able to see guest OS information on the Vsphere summary page and performing &#8220;Shut Down Guest&#8221; and &#8220;Restart Guest&#8221; all work as expected. If your experiences vary, please leave a comment</p>
<p><em>This should all be performed by the root user (otherwise prepend &#8216;sudo&#8217; to the commands if you must use sudo). </em><br />
The first thing you need to do is add the &#8216;contrib&#8217; archive to your apt sources config:</p>
<pre><code>nano /etc/apt/sources.list</code></pre>
<p>Add the &#8216;contrib&#8217; to the end of these source lines. I use the <a href="http://www.surlyjake.com/tag/debian/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Debian">debian</a>.uchicago.edu repository, so mine look like this on a new install:</p>
<pre><code>deb http://debian.uchicago.edu/debian/ squeeze main contrib
deb-src http://debian.uchicago.edu/debian/ squeeze main contrib</code></pre>
<p>After you save changes to the file, simply update your package list and perform the install:</p>
<pre><code>apt-get update
apt-get install open-<a href="http://www.surlyjake.com/tag/vm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with VM">vm</a>-tools open-<a href="http://www.surlyjake.com/tag/vm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with VM">vm</a>-source</code></pre>
<p>You might see an error that looks like this:</p>
<pre><code>Loading open-vm-tools modules: vmhgfsFATAL: Module vmhgfs not found.
 vmmemctlFATAL: Module vmmemctl not found.
 vmsyncFATAL: Module vmsync not found.</code></pre>
<p>Don&#8217;t worry, this is because we have not installed the kernel modules for some of the more advanced VMware functions like the vmhgfs file system, Memory Balloon (vmmemctl) Driver,  and vmsync, which helps freeze the VM while taking snapshots.<br />
To install these kernel modules, we&#8217;re going to use module-assistant. It will compile the modules for your kernel:</p>
<pre><code>module-assistant auto-install open-vm -i</code></pre>
<p>The &#8216;-i&#8217; puts module assistant into non-interactive mode. It wont ask you to confirm any additional package installs necesarry to set up the build environment.<br />
If you&#8217;re running a server without a Graphical environment, you&#8217;re finished. If you want features such as automatically adjusting the VM&#8217;s monitor resolution or allowing your mouse to seamlessly move between your host system and the VM, you need to install one more package:</p>
<pre><code>apt-get install open-vm-toolbox</code></pre>
<p>Now you won&#8217;t need to use CTRL+ALT to switch back and forth.</p>
<div class="none"><div class="g-plusone" data-href="http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/" size="standard" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/2011/02/install-open-vm-tools-on-debian-6-squeeze/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Compiz desktop in Debian Squeeze</title>
		<link>http://www.surlyjake.com/2009/08/compiz-desktop-in-debian-squeeze/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=compiz-desktop-in-debian-squeeze</link>
		<comments>http://www.surlyjake.com/2009/08/compiz-desktop-in-debian-squeeze/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 16:32:00 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Debian Squeeze]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[Compizconfig]]></category>
		<category><![CDATA[cube]]></category>
		<category><![CDATA[gdm]]></category>
		<category><![CDATA[window decoration]]></category>
		<category><![CDATA[window decorations]]></category>
		<category><![CDATA[window management]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=530</guid>
		<description><![CDATA[It has come to my attention that this post is out of date. Since Squeeze&#8217;s release, I have not been able to update it. Your best bet to get compiz working correctly would be to follow to the directions in the Debian wiki: http://wiki.debian.org/Compiz Getting compiz running on squeeze is surprising easy. Debian has included [...]]]></description>
			<content:encoded><![CDATA[<p><em>It has come to my attention that this post is out of date. Since <a href="http://www.surlyjake.com/tag/squeeze/" class="st_tag internal_tag" rel="tag" title="Posts tagged with squeeze">Squeeze</a>&#8217;s release, I have not been able to update it. Your best bet to get <a href="http://www.surlyjake.com/tag/compiz/" class="st_tag internal_tag" rel="tag" title="Posts tagged with compiz">compiz</a> working correctly would be to follow to the directions in the <a href="http://www.surlyjake.com/tag/debian/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Debian">Debian</a> wiki: </em><a href="http://wiki.debian.org/Compiz" target="_blank">http://wiki.debian.org/Compiz</a></p>
<p><span style="color: #c0c0c0;">Getting compiz running on squeeze is surprising easy. Debian has included a document to help set it up, but there are a few little things necessary to get it to be usable.</span></p>
<p><span style="color: #c0c0c0;">1. Get the packages installed.</span></p>
<pre><span style="color: #c0c0c0;"><code>apt-get <a href="http://www.surlyjake.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> compiz <a href="http://www.surlyjake.com/tag/compizconfig/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Compizconfig">compizconfig</a>-settings-manager compiz-fusion-plugins-main</code></span></pre>
<p><span style="color: #c0c0c0;">2.Follow the instructions here: </span><a href="http://wiki.debian.org/Compiz" target="_blank"><span style="color: #c0c0c0;">http://wiki.debian.org/Compiz</span></a><span style="color: #c0c0c0;"> to customize your /etc/X11/xorg.conf file</span></p>
<p><span style="color: #c0c0c0;">3. restart <a href="http://www.surlyjake.com/tag/gdm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gdm">gdm</a></span></p>
<pre><span style="color: #c0c0c0;"><code>/etc/init.d/gdm restart</code></span></pre>
<p><span style="color: #c0c0c0;">4. open up a terminal and type</span></p>
<pre><span style="color: #c0c0c0;"><code>compiz --replace</code></span></pre>
<p><span style="color: #c0c0c0;">5. If a went well, you should see everything flash around as it redraws your desktop.</span></p>
<p><span style="color: #c0c0c0;">6. My <a href="http://www.surlyjake.com/tag/window-decorations/" class="st_tag internal_tag" rel="tag" title="Posts tagged with window decorations">window decorations</a> (title bars) dissapeared when I enabled compiz. Additionally, i couldn&#8217;t drag windows by clicking on the title bar. To fix this: go to</span></p>
<p><span style="color: #c0c0c0;">a. System -&gt; Preferences -&gt; Compizconfig Settings Manager</span><br />
<span style="color: #c0c0c0;"> b. Scroll down to the &#8220;Effects&#8221; section and enable &#8220;<a href="http://www.surlyjake.com/tag/window-decoration/" class="st_tag internal_tag" rel="tag" title="Posts tagged with window decoration">Window decoration</a>&#8221;</span><br />
<span style="color: #c0c0c0;"> c. Scroll down to &#8220;<a href="http://www.surlyjake.com/tag/window-management/" class="st_tag internal_tag" rel="tag" title="Posts tagged with window management">Window Management</a>&#8221; and enable &#8220;Move Window&#8221;</span></p>
<p><span style="color: #c0c0c0;">7. If you want to use the desktop <a href="http://www.surlyjake.com/tag/cube/" class="st_tag internal_tag" rel="tag" title="Posts tagged with cube">cube</a> and/or workspaces, you will need more than the single or dual workspaces provided by default.</span></p>
<p><span style="color: #c0c0c0;">a. System -&gt; Preferences -&gt; Compizconfig Settings Manager</span><br />
<span style="color: #c0c0c0;"> b. Click &#8220;General options&#8221;</span><br />
<span style="color: #c0c0c0;"> c. Select the &#8220;Desktop size&#8221; tab.</span><br />
<span style="color: #c0c0c0;"> d. Set the &#8220;Horizontal Virtual size&#8221; to whatever you want. For a cube&#8230; 4</span></p>
<p><span style="color: #c0c0c0;">8. If you want compiz to start automatically with GNOME:</span></p>
<p><span style="color: #c0c0c0;">Add &#8220;compiz &#8211;replace&#8221; to &#8220;Desktop -&gt; Preferences -&gt; Sessions -&gt; Startup Programs&#8221;</span></p>
<div class="none"><div class="g-plusone" data-href="http://www.surlyjake.com/2009/08/compiz-desktop-in-debian-squeeze/" size="standard" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/2009/08/compiz-desktop-in-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

