<?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>VITALBODIES BLOG &#187; Tutorial</title>
	<atom:link href="http://www.vitalbodies.com/blog/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vitalbodies.com/blog</link>
	<description>Art, Healing, Energy and Life...</description>
	<lastBuildDate>Sat, 27 Nov 2010 05:09:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Getting A 3dconnexion Device Running In Ubuntu &#8211; Updated</title>
		<link>http://www.vitalbodies.com/blog/2010/04/21/getting-a-3dconnexion-device-running-in-ubuntu/</link>
		<comments>http://www.vitalbodies.com/blog/2010/04/21/getting-a-3dconnexion-device-running-in-ubuntu/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 08:55:47 +0000</pubDate>
		<dc:creator>VitalBodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[3D Mouse]]></category>
		<category><![CDATA[3Dconnexion]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Space Pilot]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1601</guid>
		<description><![CDATA[Getting A 3dconnexion Device Running In Ubuntu &#8211; Updated: Update: We got it going in Blender! VitalBodies recently bought a 3dConnexions 3D SpacePilot controller to use in Blender to help with the learning curve of the Blender interface. We got the proprietary driver going (in Ubuntu and POSSIBLY in Blender) using the steps below. We [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Getting A 3dconnexion Device Running In Ubuntu &#8211; Updated: </strong></p>
<h2><strong>Update: We got it going in Blender! </strong></h2>
<p>VitalBodies recently bought a 3dConnexions 3D SpacePilot controller to use in Blender to help with the learning curve of the Blender interface. We got the <em>proprietary</em> driver going (in Ubuntu and POSSIBLY in Blender) using the steps below. We have gotten the device going in Blender 2.49 using the Open Source version for this tutorial plus a recompiled (for 64-bit)  plugin. After following a long trail of wreckage (within many many forum threads) of people that did not get the 3dconnexion 3D controller going in Ubuntu or 64-bit Ubuntu, we decided to start this &#8220;how to&#8221; post to consolidate information and show how to actually get it going. <strong><br />
</strong></p>
<p><span style="color: #ff0000;"><strong> </strong></span><strong><span style="color: #ff0000;">OPEN SOURCE SPACENAV: </span></strong><strong><br />
</strong></p>
<p>VitalBodies would like to thank the Spacenav project for creating open source drivers! <strong> </strong><a href="http://spacenav.sourceforge.net/">http://spacenav.sourceforge.net/</a><strong> </strong></p>
<p>In order to get the Spacenav driver/daemon going and configure and test it in Ubuntu, you need to install the latest daemon, libspnav and spnavcfg which are different files each with their own readme file. spnavcfg requires GTK+ 2 and Xlib headers to be installed which in Debian and Ubuntu can be satisfied by installing libgtk2.0-dev.</p>
<p>Download and extract the spacenav files to the Downloads folder from here: <a href="http://sourceforge.net/projects/spacenav/files/">http://sourceforge.net/projects/spacenav/files/</a></p>
<p>If you are new to Linux or Ubuntu you might find the instructions in the readme files rather brief so we are attempting to help bring more users to driver heaven &#8211; In short, you need to download the files and then install them with ./configure, make, and sudo make install.</p>
<p>All of the installation steps (./configure, make, and sudo make install) are done from the terminal: Applications &gt; Accessories &gt; Terminal.</p>
<p>NOTE: Command Line Reference: <a href="https://help.ubuntu.com/9.10/basic-commands/C/">https://help.ubuntu.com/9.10/basic-commands/C/</a></p>
<p>NOTE: In Ubuntu Karmic the default place to download files when using Firefox is: home/user_name/Downloads.</p>
<p>NOTE: When you start the terminal in Ubuntu it usually defaults to your home/user_name directory.</p>
<p>NOTE: Be aware that the version numbers might change&#8230;</p>
<p>We started by installing libgtk2.0-dev first using synaptic: System &gt; Administration &gt; Synaptic Package Manager &gt; Search &#8220;libgtk2.0-dev&#8221; &gt; Mark for installation &gt; Apply &gt; etc&#8230;</p>
<p>Next we needed to edit the libspnav-0.2.1/configure script using gedit:</p>
<pre>cd</pre>
<pre>cd Downloads/libspnav-0.2.1</pre>
<pre>gedit configure</pre>
<p>We changed this:</p>
<pre>if [ "`uname -m`" = 'x86_64' ]; then
   libdir=lib64
fi</pre>
<p>To this:</p>
<pre># if [ "`uname -m`" = 'x86_64' ]; then
#    libdir=lib64
# fi</pre>
<p><strong>libspnav Installation Commands:</strong></p>
<pre>cd Downloads
cp -R libspnav-0.2.1 /tmp/libspnav-0.2.1
cd
cd /tmp/libspnav-0.2.1
./configure
make
sudo make install</pre>
<p><strong>spnavcfg </strong><strong>Installation </strong><strong>Commands: </strong>(Requires GTK+ 2 and Xlib headers so install libgtk2.0-dev first using synaptic (see above))</p>
<pre>cd
cd Downloads
cp -R spnavcfg-0.2.1 /tmp/spnavcfg-0.2.1
cd
cd /tmp/spnavcfg-0.2.1
./configure
make
sudo make install</pre>
<p><strong>spacenavd </strong><strong>Installation </strong><strong>Commands: </strong></p>
<pre>cd
cd Downloads
cp -R spacenavd-0.4 /tmp/spacenavd-0.4
cd
cd /tmp/spacenavd-0.4
./configure
make
sudo make install
sudo ./setup_init</pre>
<p><strong>Useful commands: </strong></p>
<p>For starting, stopping and reading the log file: (Be sure not to start multiple instances of the driver)</p>
<pre>gedit /var/log/spnavd.log
sudo /etc/init.d/spacenavd start
sudo /etc/init.d/spacenavd stop
spnavcfg</pre>
<p>Running the spnavcfg command from the terminal brought up this:</p>
<p><a href="http://www.vitalbodies.com/blog/wp-content/uploads/2010/03/spacenavd_configuration.png"><img class="aligncenter size-full wp-image-1683" title="spacenavd_configuration" src="http://www.vitalbodies.com/blog/wp-content/uploads/2010/03/spacenavd_configuration.png" alt="" width="273" height="372" /></a></p>
<p><strong>Blender:</strong> In Blender you will need to copy the 3DxNdofBlender.plug file into the /home/user_name/.blender/plugins directory or wherever your plugs directory is located. If the plugin works for version you should be able to move the puck see the movement (like being able to fly around the cube). We had to be in the USER view port and the cursor needed to over that window. Top, side and front works also but once we moved we were automatically in user mode. Additionally the device has to be enabled and you can &#8220;check&#8221; that it is using the spnavcfg command from the terminal.</p>
<p><strong>64-bit Plug File: </strong>For us to get the device to work using 64-bit Ubuntu and Blender we needed the proprietary plug file recompiled using 64-bit Ubuntu.  This was the final key that enabled us to get this working.</p>
<p>We want to thank RoboticGolem in the forums for helping us get this going! Thank you, thank you, thank you &#8211; it has been a long haul.</p>
<p>How do you recompile the driver?</p>
<blockquote><p>In the blender plugin zip from 3dconnexion (3DxBlender2_47-Linux-i386.zip) there is a file called 3dcnxplug-lin.c</p>
<p>It says to use the command cc 3dcnxplug-lin.c -Iintern/ghost -Wall -lc -shared -fPIC -fvisibility=hidden -o 3DxNdofBlender.plug to compile it (more or less). It&#8217;ll fail unless you have the GHOST_Types.h file from the blender source (I just put it in the same directory).</p></blockquote>
<pre>cc 3dcnxplug-lin.c -Iintern/ghost -Wall -lc -shared -fPIC -fvisibility=hidden -o 3DxNdofBlender.plug</pre>
<p><a href="http://www.blender.org/forum/viewtopic.php?p=78503">http://www.blender.org/forum/viewtopic.php?p=78503</a></p>
<p><a href="http://www.3dconnexion.com/forum/viewtopic.php?p=18401">http://www.3dconnexion.com/forum/viewtopic.php?p=18401</a></p>
<p><a href="http://blenderartists.org/forum/showthread.php?t=182325">http://blenderartists.org/forum/showthread.php?t=182325</a></p>
<p><span style="color: #808080;">(From the Daemon Readme)</span></p>
<p><span style="color: #808080;"><strong>1. About</strong><br />
Spacenavd, is a free software replacement user-space driver (daemon), for<br />
3Dconnexion&#8217;s space-something 6dof input devices. It&#8217;s compatible with the<br />
original 3dxsrv proprietary daemon provided by 3Dconnexion, and works<br />
perfectly with any program that was written for the 3Dconnexion driver.</span></p>
<p><span style="color: #808080;">For more info on the spacenav project, visit: <a href="http://spacenav.sourceforge.net">http://spacenav.sourceforge.net</a></span></p>
<p><span style="color: #808080;"><strong>2. Dependencies</strong><br />
In order to compile the spacenavd daemon, you&#8217;ll need the following:<br />
* GNU C Compiler<br />
* GNU make<br />
* Xlib headers (optional)</span></p>
<p><span style="color: #808080;">You can compile the daemon without Xlib, but it won&#8217;t be compatible with<br />
applications that where written for the original proprietary 3Dconnexion<br />
driver (e.g. blender, maya, etc). The 3dxsrv compatibility interface needs to<br />
go through the X window system.</span></p>
<p><span style="color: #808080;"><strong>3. Installation</strong><br />
If you have the dependencies installed, just run &#8220;./configure&#8221; and then<br />
&#8220;make&#8221; to compile the daemon, and &#8220;make install&#8221;, to install it. The<br />
default installation prefix is &#8220;/usr/local&#8221;. If you wish to install<br />
somewhere else, you may pass &#8211;prefix=/whatever to the configure script.</span></p>
<p><span style="color: #808080;"><strong>4. Running spacenavd</strong><br />
If your system uses SysV init, then you may run the supplied &#8220;setup_init&#8221;<br />
script, and everything should be set up to have spacenavd start automatically<br />
during system startup. However, for now, you won&#8217;t have to reboot, just type<br />
&#8220;/etc/init.d/spacenavd start&#8221; as root, to start the daemon immediately.</span></p>
<p><span style="color: #808080;">If your system uses BSD init (you can tell if you *don&#8217;t* have a series of<br />
directories called rc0.d, rc1.d, and so on, in /etc), then you&#8217;ll have to<br />
follow your init documentation and set this up yourself. You may be able to<br />
use the provided init_script file as a starting point.</span></p>
<p><span style="color: #808080;"><strong>5. Configuration</strong><br />
The spacenavd daemon reads a number of options from the /etc/spnavrc file. If<br />
that file doesn&#8217;t exist, then it uses default values for everything. You may<br />
use the graphical spnavcfg program to interactively set any of these options.<br />
The daemon should respond immediately to your changes, and also the<br />
configuration file should be updated automatically.</span></p>
<p><span style="color: #808080;"><strong>6. Troubleshooting</strong><br />
If you&#8217;re having trouble running spacenavd, read the up to date FAQ on the<br />
spacenav website: http://spacenav.sourceforge.net/faq.html</span></p>
<p><span style="color: #808080;">If you&#8217;re still having trouble, send a description of your problem to the<br />
spacenav-users mailing list: spacenav-users@lists.sourceforge.net<br />
along with a copy of your /var/log/spnavd.log and any other relevant<br />
information.</span></p>
<p><span style="color: #808080;"><strong>7. License</strong><br />
This program is released under the terms of the GNU GPLv3, see COPYING for<br />
details.</span></p>
<p style="padding-left: 30px;">
<p><strong><span style="color: #ff0000;">PROPRIETARY DRIVER:</span> </strong><strong>(We never did get the driver to work in Blender (but we think we know why &#8211; you have to recompile the plug file in a 64-bit Ubuntu &#8211; steps shown below) but we did get the driver working in Ubuntu see below &#8211; we ended up switching the open source version above but might just try to commercial driver again soon. Did you get it going?)<br />
</strong></p>
<p><strong>UBUNTU: </strong><strong> </strong><strong><br />
</strong></p>
<p>We downloaded and installed the proprietary driver 3dconnexion site: (As stated in their instructions)</p>
<p>The Blender page on 3dConnexion: <a href="http://www.3dconnexion.com/index.php?id=108" target="_blank">http://www.3dconnexion.com/index.php?id=108</a></p>
<p>Plugin: <a href="http://www.3dconnexion.com/index.php?eID=sdl&amp;ext=tx_iccsoftware&amp;oid=27237638-d168-4cc6-bc67-4b1fe78de7c4&amp;filename=3DxBlender2_47-Linux-i386.zip&amp;ap1=PleaseSelect&amp;ap2=&amp;ap3=" target="_blank">http://www.3dconnexion.com/index.php?eID=sdl&amp;ext=tx_iccsoftware&amp;oid=27237638-d168-4cc6-bc67-4b1fe78de7c4&amp;filename=3DxBlender2_47-Linux-i386.zip&amp;ap1=PleaseSelect&amp;ap2=&amp;ap3=</a></p>
<p>We ran each of these commands using sudo:</p>
<pre>sudo nautilus</pre>
<p>Copy the 3dxware-linux-v1-2-11.tgz to /tmp</p>
<p>Copy and extract the install-3dxunix.sh file into /tmp using the terminal.</p>
<pre>sudo tar xfz 3dxware-linux-v1-4-3.x86_64.tar.gz install-3dxunix.sh</pre>
<p>Run the install script:</p>
<pre>sudo ./install-3dxunix.sh</pre>
<p>Then we had to install libmotif because the driver complained about not having the library libXm.so.3.</p>
<p>We used System &gt; Administration &gt; Synaptic Package Manager &gt; search &#8221; libmotif&#8221; to find and install the libraries.</p>
<p><a href="http://www.vitalbodies.com/blog/wp-content/uploads/2010/03/Synaptic_Package_Manager_0-.png"><img class="aligncenter size-medium wp-image-1615" title="Synaptic_Package_Manager_0" src="http://www.vitalbodies.com/blog/wp-content/uploads/2010/03/Synaptic_Package_Manager_0--300x210.png" alt="" width="300" height="210" /></a></p>
<p><strong>START THE DRIVER: </strong></p>
<p>Run the driver from the command line:</p>
<pre>sudo /etc/3DxWare/daemon/3dxsrv -d usb</pre>
<p>Here is what we saw:</p>
<p><a href="http://www.vitalbodies.com/blog/wp-content/uploads/2010/03/driver_0.png"><img class="aligncenter size-medium wp-image-1614" title="driver_0" src="http://www.vitalbodies.com/blog/wp-content/uploads/2010/03/driver_0-300x277.png" alt="" width="300" height="277" /></a></p>
<p><strong>UN-INSTALL THE DRIVER: </strong>(If you need to un-install here is how)</p>
<pre>﻿sudo aptitude remove 3dxunix</pre>
<p>Since the driver was installed with a script rather than as a package, the above command will NOT remove the driver. Anyone know how to remove it?</p>
<p>We have an answer from the comments related to this post:</p>
<blockquote><p>&#8220;Delete it.<br />
And delete the corresponding line in the /etc/inittab.&#8221;</p></blockquote>
<p>We take that to mean delete the directory</p>
<pre>/etc/3DxWare</pre>
<p>And this lines of code (at least for us):</p>
<pre>3d:2345:respawn:/etc/3DxWare/daemon/3dxsrv -d usb &lt;/dev/null &gt;/dev/null 2&gt;&amp;1</pre>
<p>One can use sudo nautilus to navigate the files and delete them and then gedit to edit the inittab.</p>
<p>You will also need to delete the plugin in the .blend/plugins folder also and un-install libmotif using synaptic.</p>
<p><strong>BLENDER: (We did not get our SpacePilot going in Blender using the Proprietary driver and switched to the open source version)<br />
</strong></p>
<p>The next step is to get the proprietary driver going with blender:</p>
<p>Download the blender build from <a href="http://www.blenderbuilds.com/" target="_blank">http://www.blenderbuilds.com/</a></p>
<p>Unzip the build.</p>
<p>Copy the 3DxNdofBlender.plugin folder to the plugin directory which is usually in home/user_name/.blend/plugins if you are using the Blender install from the Ubuntu (can require View &gt; Show Hidden Files).</p>
<p>Double-clicked blender and you should be set to go&#8230;</p>
<p><strong>64-bit Plug File: </strong>For us to get the device to work using 64-bit Ubuntu and Blender we needed the proprietary plug file recompiled using 64-bit Ubuntu.  This was the final key that enabled us to get this working with the open source driver and now we just need to try it on the proprietary version.</p>
<p>We want to thank RoboticGolem in the forums for helping us learn about the need for a 64-bit driver! Thank you, thank you, thank you &#8211; it has been a long haul.</p>
<p>How do you recompile the driver?</p>
<blockquote><p>In the blender plugin zip from 3dconnexion (3DxBlender2_47-Linux-i386.zip) there is a file called 3dcnxplug-lin.c</p>
<p>it says to use the command cc 3dcnxplug-lin.c -Iintern/ghost -Wall -lc -shared -fPIC -fvisibility=hidden -o 3DxNdofBlender.plug to compile it (more or less). It&#8217;ll fail unless you have the GHOST_Types.h file from the blender source (I just put it in the same directory).</p></blockquote>
<pre>cc 3dcnxplug-lin.c -Iintern/ghost -Wall -lc -shared -fPIC -fvisibility=hidden -o 3DxNdofBlender.plug</pre>
<p><a href="http://www.blender.org/forum/viewtopic.php?p=78503">http://www.blender.org/forum/viewtopic.php?p=78503</a></p>
<p><a href="http://www.3dconnexion.com/forum/viewtopic.php?p=18401">http://www.3dconnexion.com/forum/viewtopic.php?p=18401</a></p>
<p><a href="http://blenderartists.org/forum/showthread.php?t=182325">http://blenderartists.org/forum/showthread.php?t=182325</a></p>
<p><strong>BlenderBuilds.com: (Are they shutting down or is the 3Dconnexion taking over -shutting down is our best guess?)<br />
</strong></p>
<p><a href="http://www.blenderbuilds.com/2007/08/05/august-build-3dconnexion-with-a-prize/">http://www.blenderbuilds.com/2007/08/05/august-build-3dconnexion-with-a-prize/</a></p>
<p><strong>ADDITIONAL RESOURCES:</strong></p>
<p><a href="http://www.arakhne.org/3dxware/index.html">http://www.arakhne.org/3dxware/index.html</a></p>
<p>Forum Article with readme files and other info: <a href="http://www.3dconnexion.com/forum/viewtopic.php?p=18109#18109">http://www.3dconnexion.com/forum/viewtopic.php?p=18109#18109</a></p>
<p>Interesting insights on getting the Open Source version going: <a href="http://www.3dconnexion.com/forum/viewtopic.php?p=13877#13877">http://www.3dconnexion.com/forum/viewtopic.php?p=13877#13877</a></p>
<p><strong>POLL UPDATE: (Apparently they shut down our poll)<br />
</strong></p>
<p>Add your vote to the poll we started: <a href="http://www.3dconnexion.com/forum/viewtopic.php?p=18109">http://www.3dconnexion.com/forum/viewtopic.php?p=18109</a></p>
<p><strong>TERMINAL:</strong></p>
<p>If you need to find your device this command is suggested:</p>
<pre>lshal | less</pre>
<p>Followed by the &#8220;/&#8221; and the first few letters of the name of the device.</p>
<pre> /Space</pre>
<p>Then:</p>
<pre>Enter</pre>
<p>That gave us this:</p>
<pre>usb_device.product = '3Dconnexion Space Pilot 3D Mouse'  (string)</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2010/04/21/getting-a-3dconnexion-device-running-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How To Install Intrepid Ibex Blender 2.46 In Ubuntu Hardy Heron</title>
		<link>http://www.vitalbodies.com/blog/2008/10/28/how-to-install-intrepid-ibex-blender-246-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/10/28/how-to-install-intrepid-ibex-blender-246-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 21:52:18 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Blender]]></category>
		<category><![CDATA[Blender 2.46]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=746</guid>
		<description><![CDATA[How To Install Blender 2.46 In Ubuntu Hardy Heron

This HOW TO is for those who want to run the newest version of Blender In Ubuntu.]]></description>
			<content:encoded><![CDATA[<p><strong>How To Install Intrepid Ibex Blender 2.46 In Ubuntu Hardy Heron</strong></p>
<p>This HOW TO is for those who want to run the newest version of Blender In Ubuntu.</p>
<p>Your best bet is to simply <a href="http://vitalbodies.wordpress.com/2008/11/10/taking-ubuntu-intrepid-ibex-for-a-test-run/">Update Ubuntu to Ibex</a>. If you can not do that for some reason here is a possible work around.</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/10/blender_2_46_0.jpg"><img class="aligncenter size-full wp-image-748" title="blender_2_46_0" src="http://vitalbodies.files.wordpress.com/2008/10/blender_2_46_0.jpg" alt="" width="470" height="248" /></a></p>
<p><strong>Builds: </strong><br />
amd64</p>
<p>i386</p>
<p>lpia</p>
<p>Or at least version 2.46 depending on when you read this&#8230;</p>
<p>Because the W Grant repos do not contain the 64 bit blender anymore we have added this new post.</p>
<p>This is an advanced technique for adding the latest Blender to Hardy Heron Ubuntu.</p>
<p>Essentially the technique uses the <a title="apt-get" href="http://vitalbodies.wordpress.com/2008/07/13/apt-get-in-ubuntu-hardy-heron/">APT-GET</a> command to add the Intrepid Ibex Blender Package to Hardy Heron.</p>
<p>NOTE: You would definitely want to use this trick at your own risk.</p>
<p>According to rickyrockrat: &#8220;You are mixing repositories, so you can get into dependency hell.  I&#8217;ve not personally had it happen, but never want it to.</p>
<p>You&#8217;ll try to update one thing, and apt will grab the latest version, then it will start down the dependency tree.  If you start to &#8216;fix&#8217; this tree, you could wind up down a dark hole fast.</p>
<p>Bottom line is this is a major hack, and I&#8217;m lucky it worked in the first place!  It&#8217;s kinda like using a screwdriver for a prybar. Does it work? Is it designed to be used that way? No. Don&#8217;t tempt Murpy!&#8221;</p>
<p><strong>Temporarily add (to /etc/apt/sources.list):</strong></p>
<p>System &gt; Administration &gt; Software Sources &gt; Third Party Software</p>
<p>Copy this:</p>
<pre>deb <a href="http://us.archive.ubuntu.com/ubuntu/" target="_blank">http://us.archive.ubuntu.com/ubuntu/</a> intrepid universe</pre>
<p>Click the Add button and paste then click the Add Source button.</p>
<p>Copy this:</p>
<pre>deb <a href="http://us.archive.ubuntu.com/ubuntu/" target="_blank">http://us.archive.ubuntu.com/ubuntu/</a> intrepid main</pre>
<p>Click the Add button and paste then click the Add Source button.</p>
<p>Click the Close button.</p>
<p>Click the Reload button.</p>
<p>Note: Be sure to un-check these two lines when you are done.</p>
<p><strong>Run apt-get update: </strong></p>
<p>Open the terminal: Applications &gt; Accessories &gt; Terminal.</p>
<p>We had un-installed Blender so we ran this command in the Terminal:</p>
<pre>sudo apt-get install blender</pre>
<p>Follow the on screen instructions (we had to click &#8220;y&#8221; and then the &#8220;Enter&#8221; key).</p>
<p>If you did not remove Blender you might try this command:</p>
<pre>sudo apt-get upgrade blender</pre>
<p>If you have blender 2.45 installed:</p>
<pre>sudo apt-get update
sudo apt-get install blender</pre>
<p>Once the program is installed and you should un-check the two Intrepid Ibex entries.</p>
<p>If you do not, you could run into complications for your Ubuntu system.</p>
<p>System &gt; Administration &gt; Software Sources &gt; Password &gt; Third Party Software &gt;</p>
<p>Un-check the two Intrepid Ibex entries&#8230;</p>
<p>Then in the Terminal:</p>
<pre>sudo apt-get update.</pre>
<p style="text-align:center;"><strong>-<br />
</strong></p>
<p style="text-align:center;">VitalBodies would like to thank <a class="bigusername" href="http://ubuntuforums.org/member.php?u=375941">rickyrockrat</a> for sharing this technique!</p>
<p style="text-align:center;">And <a href="http://www.blender.org">Blender.org</a></p>
<p style="text-align:center;"><span style="color:#ff0000;">SEE THE LATEST POSTS ABOUT BLENDER FOR AN UPDATE: CLICK &gt; <a title="KEYWORD BLENDER" href="http://vitalbodies.wordpress.com/?s=BLENDER&amp;submit=Search">BLENDER</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/10/28/how-to-install-intrepid-ibex-blender-246-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>What Windows Or New Users Need To Know About Ubuntu</title>
		<link>http://www.vitalbodies.com/blog/2008/09/05/what-windows-or-new-users-need-to-know-about-ubuntu-2/</link>
		<comments>http://www.vitalbodies.com/blog/2008/09/05/what-windows-or-new-users-need-to-know-about-ubuntu-2/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 19:47:20 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[My Documents]]></category>
		<category><![CDATA[Prtsc]]></category>
		<category><![CDATA[Screen capture]]></category>
		<category><![CDATA[Shockwave]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[Wireless Monitor]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=716</guid>
		<description><![CDATA[Having the right help is like having the right chocolate...
VitalBodies recently switched all of our computers over to Ubuntu. Glad we did but there was a learning curve. The list below is intended to reduce the incline of your learning curve...]]></description>
			<content:encoded><![CDATA[<p><strong>What Windows Or New Users Need To Know About Ubuntu</strong></p>
<p>If you are used to Windows or Mac or you just suddenly start using Ubuntu, there are few things that you will want to know sooner or later.</p>
<p>Usually sooner&#8230;</p>
<p style="text-align: center;"><a title="Organic chocolate Coffee Truffle" href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="Organic Chocolate Coffee Truffle" width="15" height="13" /></a></p>
<p>VitalBodies recently switched all of our computers over to Ubuntu and upgraded from Hardy Heron to Intrepid Ibex to Jaunty Jackalope to Karmic Koala.</p>
<p>Glad we did, but there was a learning curve.</p>
<p>Below is a list of posts originally done for Hardy Heron but work equally well for Intrepid Ibex, Jaunty Jackalope and Karmic Koala.</p>
<p>The list of How Tos below is intended to reduce the incline of your learning curve&#8230;</p>
<p style="text-align: center;"><a title="Organic Chocolate Dark 73% Or Better" href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="Organic Chocolate Dark 73% Or Better" width="150" height="130" /></a></p>
<p style="text-align: center;">Having the right help is like having the right chocolate&#8230;</p>
<p><strong>TOP OF THE LIST TO YA: </strong></p>
<p><strong>Installing Applications / Programs / Software In Ubuntu:</strong></p>
<ul>
<li>
<p class="storytitle"><a title="How To Install Programs In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/">How To Install Programs In Ubuntu</a></p>
</li>
<li><a title="How To Install A Windows Program In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/13/how-to-install-a-windows-program-in-ubuntu-hardy-heron/">How To Install A Windows Program In Ubuntu</a></li>
</ul>
<p><strong>Installing Fonts:<br />
</strong></p>
<ul>
<li> <a title="Installing Fonts Using Synaptic In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/20/installing-fonts-using-synaptic-in-ubuntu-hardy-heron/">Installing Fonts Using Synaptic In Ubuntu<br />
</a></li>
<li><a title="Installing Fonts In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/01/installing-fonts-in-ubuntu/">Installing Fonts In Ubuntu<br />
</a></li>
<li><a href="./2008/07/20/how-to-find-fun-new-fonts-for-ubuntu-hardy-heron/">How To Find Fun New Fonts For Ubuntu</a></li>
<li><a title="Configuring Fonts and Enabling Bitmapped Fonts In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/21/configuring-fonts-and-enabling-bitmapped-fonts-in-ubuntu-hardy-heron/">Configuring Fonts and Enabling Bitmapped Fonts In Ubuntu</a></li>
<li> <a title="Where Are Fonts Stored / Located In Ubuntu Hardy Heron?" rel="bookmark" href="./2008/07/21/where-are-fonts-stored-located-in-ubuntu-hardy-heron/">Where Are Fonts Stored / Located In Ubuntu?</a></li>
<li><a title="How To Create Or Edit Fonts In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/21/how-to-create-or-edit-fonts-in-ubuntu-hardy-heron/">How To Create Or Edit Fonts In Ubuntu</a></li>
<li> <a title="Installing Microsoft MS Core Fonts In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/22/installing-microsoft-ms-core-fonts-in-ubuntu-hardy-heron/">Installing Microsoft MS Core Fonts In Ubuntu</a></li>
<li> <a title="Advanced Font Information And Settings In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/23/advanced-font-information-and-settings-in-ubuntu-hardy-heron/">Advanced Font Information And Settings In Ubuntu</a></li>
<li> <a title="Installing Fonts In Wine On Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/24/installing-fonts-in-wine-on-ubuntu-hardy-heron/">Installing Fonts In Wine On Ubuntu</a></li>
</ul>
<p><strong>Wireless That Works Out Of The Box:</strong></p>
<ul>
<li><a title="Wireless In Ubuntu" rel="bookmark" href="./2008/06/28/wireless-in-ubuntu/">Wireless In Ubuntu</a></li>
</ul>
<p><strong>Wireless Range:</strong></p>
<ul>
<li><a title="Improving Wireless Range In Ubuntu" rel="bookmark" href="./2008/07/01/wireless-range-in-ubuntu-with-edimax/">Improving Wireless Range In Ubuntu</a></li>
</ul>
<p><strong>Shockwave Or Flash:</strong></p>
<ul>
<li><a title="How To Install Flash In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/09/how-to-install-flash-in-ubuntu-hardy-heron/">How To Install Flash In Ubuntu</a></li>
</ul>
<p><strong>Java:</strong></p>
<ul>
<li><a title="How To Install Open Source Java In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/09/how-to-install-open-source-java-in-ubuntu-hardy-heron/">How To Install Open Source Java In Ubuntu</a></li>
</ul>
<p><strong>FTP: </strong></p>
<ul>
<li><a title="FTP In Ubuntu Hardy Heron - FileZilla" rel="bookmark" href="./2008/07/10/ftp-in-ubuntu-hardy-heron-filezilla/">FTP In Ubuntu - FileZilla</a></li>
</ul>
<p><strong>Firewall:</strong></p>
<ul>
<li><a title="Installing And Using A Firewall In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/09/installing-and-using-a-firewall-in-ubuntu-hardy-heron/">Installing And Using A Firewall In Ubuntu</a></li>
</ul>
<p><strong>Resource Monitor: </strong></p>
<ul>
<li><a title="HTOP Resource Monitor In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/11/resource-monitor-in-ubuntu-hardy-heron/">HTOP Resource Monitor In Ubuntu</a></li>
</ul>
<p><strong>Terminal Commands:</strong></p>
<ul>
<li><a title="COMMANDS that can be used in Ubuntu" rel="bookmark" href="./2008/06/28/commands-that-can-be-used-in-ubuntu/">COMMANDS that can be used in Ubuntu</a></li>
</ul>
<p><strong>Web Building or Development:</strong></p>
<ul>
<li><a title="Apache, PHP, MySQL Webalizer, OpenSSL etc" rel="bookmark" href="./2008/06/28/xampp-apache-php-mysql-etc/">XAMPP: Apache, PHP, MySQL Webalizer, OpenSSL etc</a></li>
</ul>
<p><strong>LightScribe:</strong></p>
<ul>
<li><a title="Getting LightScribe To Work In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/14/getting-lightscribe-to-work-in-ubuntu-hardy-heron/">Getting LightScribe To Work In Ubuntu</a></li>
</ul>
<p><strong>What Version Are You Running?:</strong></p>
<ul>
<li><a title="Finding Version Information On Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/14/finding-version-information-on-ubuntu-hardy-heron/">Finding Version Information On Ubuntu</a></li>
</ul>
<p><strong>64-Bit Ubuntu: </strong></p>
<ul>
<li>
<p class="storytitle"><a title="How To Tell If An Application Is 64-bit In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/26/how-to-tell-if-an-application-is-64-bit-in-ubuntu-hardy-heron/">How To Tell If An Application Is 64-bit In Ubuntu</a></p>
</li>
</ul>
<p><strong>Blender 3D: </strong></p>
<ul>
<li><a title="How To Install Blender 2.46 In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/25/how-to-install-blender-246-in-ubuntu-hardy-heron/">How To Install Blender 2.46 In Ubuntu</a></li>
</ul>
<p><strong>Wireless Monitor: </strong></p>
<ul>
<li>Applications &gt; Add/Remove&#8230; &gt; Show: All Open Source Applications &gt; Search: Wireless<strong><br />
</strong></li>
</ul>
<p><strong>Screen Capture:</strong></p>
<ul>
<li>Press the <strong>PrtSc</strong> button on your keyboard&#8230;</li>
</ul>
<p><strong>Where Are My Documents?:</strong></p>
<ul>
<li> Places &gt; Home Folder or home/username</li>
</ul>
<p style="text-align: center;"><a title="Organic chocolate Coffee Truffle" href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="Organic Chocolate Coffee Truffle" width="15" height="13" /></a></p>
<p style="text-align: center;">VitalBodies would like to thank the countless Ubuntu teams and free software teams that make Ubuntu possible!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/09/05/what-windows-or-new-users-need-to-know-about-ubuntu-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Tell If An Application Is 64-bit In Ubuntu</title>
		<link>http://www.vitalbodies.com/blog/2008/07/26/how-to-tell-if-an-application-is-64-bit-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/26/how-to-tell-if-an-application-is-64-bit-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 17:11:19 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[64-bit Firefox]]></category>
		<category><![CDATA[Blender]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Inkscape]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=590</guid>
		<description><![CDATA[How To Tell If An Application Is 64-bit In Ubuntu Hardy Heron, Ibex etc?
He is an easy way to find out.
For our example we will use the 3D program Blender....]]></description>
			<content:encoded><![CDATA[<p><strong>How To Tell If An Application Is 64-bit In Ubuntu Hardy Heron, Ibex etc.<br />
</strong></p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/64bit_ubuntu.png"><img class="aligncenter size-full wp-image-594" src="http://vitalbodies.files.wordpress.com/2008/07/64bit_ubuntu.png" alt="" width="470" height="296" /></a></p>
<p>For our example we will use the 3D program Blender.</p>
<p><strong>Open the Terminal:</strong><br />
Applications &gt; Accessories &gt; Terminal<br />
<strong>Copy this code: </strong><br />
<code>file /usr/bin/blender-bin</code><br />
<strong>Paste:</strong> (Edit &gt; Paste) the code into the Terminal.<br />
<strong>Execute The Code:</strong> Press the Enter key on the keyboard.<br />
<strong>You should see something like this:</strong></p>
<pre><code>/usr/bin/blender-bin: ELF 64-bit LSB executable, </code></pre>
<pre><code>x86-64, version 1 (SYSV), </code></pre>
<pre><code>for GNU/Linux 2.6.8, dynamically linked (uses shared libs), stripped</code></pre>
<p><strong>What about other programs?</strong><strong></strong></p>
<pre><code>file /usr/bin/ADD PROGRAM NAME HERE</code></pre>
<p>Example: (inkscape)</p>
<pre><code>file /usr/bin/inkscape</code></pre>
<pre><code>/usr/bin/inkscape: ELF 64-bit LSB executable, </code></pre>
<pre><code>x86-64, version 1 (SYSV), </code></pre>
<pre><code>for GNU/Linux 2.6.8, dynamically linked (uses shared libs), stripped</code></pre>
<p><strong>What if this does not work?</strong></p>
<p>For example, <em>blender</em> does not work but <em>blender-bin</em> does work.</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/blender-bin.png"><img class="aligncenter size-full wp-image-591" src="http://vitalbodies.files.wordpress.com/2008/07/blender-bin.png" alt="" width="260" height="84" /></a></p>
<p>Navigate to the /usr/bin folder.</p>
<p>Places &gt; Computer &gt; File System &gt; usr &gt; bin</p>
<p>And see if you can figure out what the correct name of the program might be.</p>
<p><strong>UPDATE:</strong></p>
<p><strong>Example:</strong> What about Firefox?</p>
<p>For Firefox you might only see an icon or what is called a symbolic link as the terminal will confirm.</p>
<pre>file /usr/bin/firefox
/usr/bin/firefox: symbolic link to `firefox-3.0'</pre>
<p>So if we try right clicking on the icon and we look at the properties we can see the target is../lib/firefox-3.0.6.</p>
<p>So if we try that in the terminal we will see that the file in question is a directory:</p>
<pre>file /usr/lib/firefox-3.0.6
/usr/lib/firefox-3.0.6: directory</pre>
<p>In the directory we can see that there is an icon for Firefox. So let&#8217;s try that in the terminal.</p>
<pre>file /usr/lib/firefox-3.0.6/firefox
/usr/lib/firefox-3.0.6/firefox: ELF 64-bit LSB executable,
x86-64, version 1 (SYSV), for GNU/Linux 2.6.8,
dynamically linked (uses shared libs), stripped</pre>
<p></p>
<p>And so we have our answer!
<p/>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/26/how-to-tell-if-an-application-is-64-bit-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How To Install Blender 2.46 In Ubuntu Hardy Heron</title>
		<link>http://www.vitalbodies.com/blog/2008/07/25/how-to-install-blender-246-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/25/how-to-install-blender-246-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 18:42:19 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Blender]]></category>
		<category><![CDATA[Blender 2.46]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=580</guid>
		<description><![CDATA[How To Install Blender 2.46 In Ubuntu Hardy Heron
This HOW TO is for those who want to run the newest version of Blender In Ubuntu.]]></description>
			<content:encoded><![CDATA[<p><strong>How To Install Blender 2.46 In Ubuntu Hardy Heron</strong></p>
<p><span style="color:#ff0000;">UPDATE: THIS METHOD NO LONGER WORKS AS THE DEB IS NO LONGER IN W GRANTS REPOS&#8230;</span></p>
<p><span style="color:#ff0000;">SEE THE LATEST POSTS ABOUT BLENDER FOR AN UPDATE: CLICK &gt; <a title="KEYWORD BLENDER" href="http://vitalbodies.wordpress.com/?s=BLENDER&amp;submit=Search">BLENDER</a></span></p>
<p>This HOW TO is for those who want to run the newest version of Blender In Ubuntu.</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/blender_2_46.jpg"><img class="aligncenter size-full wp-image-582" src="http://vitalbodies.files.wordpress.com/2008/07/blender_2_46.jpg" alt="" width="470" height="264" /></a></p>
<p><strong>Builds: </strong><br />
amd64<br />
i386<br />
lpia</p>
<p>Or at least version 2.46 depending on when you read this&#8230;</p>
<p>System &gt; Administration &gt; Software Sources &gt; Password &gt; Third Party Software &gt; Add &gt;</p>
<p>Copy the command below and paste the command (Ctrl V) into the Add form.</p>
<pre>deb http://ppa.launchpad.net/wgrant/ubuntu hardy main</pre>
<p>Click Add Source.</p>
<p>Click the Add button again.</p>
<p>Copy the command below and paste the command (Ctrl V) into the Add form.</p>
<pre>deb-src http://ppa.launchpad.net/wgrant/ubuntu hardy main</pre>
<p>Click Add Source.</p>
<p>Click Close &gt; Reload</p>
<p>Next Applications &gt; Add/Remove&#8230; &gt;Show: Installed Applications &gt; Search Blender &gt;</p>
<p>(You may need to uninstall Blender and then reinstall)</p>
<p>Enable (install) Blender by putting a check in the Check Box and then click Apply Changes.</p>
<p>You may get a warning that the Software Can Not Be Authenticated.</p>
<p>If you wish to install click Apply.</p>
<p style="text-align:center;"><strong>-<br />
</strong></p>
<p style="text-align:center;">VitalBodies would like to thank W Grant for making this possible!</p>
<p style="text-align:center;"><a href="https://launchpad.net/~wgrant/+archive">https://launchpad.net/~wgrant/+archive</a></p>
<p style="text-align:center;">And <a href="http://www.blender.org">Blender.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/25/how-to-install-blender-246-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Installing Fonts In Wine On Ubuntu</title>
		<link>http://www.vitalbodies.com/blog/2008/07/24/installing-fonts-in-wine-on-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/24/installing-fonts-in-wine-on-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 06:13:59 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Enabling Fonts]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Installing Fonts]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wine]]></category>
		<category><![CDATA[WineHQ]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=571</guid>
		<description><![CDATA[Installing Fonts In Wine On Ubuntu Hardy Heron
How does one install fonts in Wine? The answer is simpler than you think!
Almost as easy as sipping wine...]]></description>
			<content:encoded><![CDATA[<p><strong>Installing Fonts In Wine On Ubuntu Hardy Heron</strong></p>
<p>How does one install fonts in Wine? The answer is simpler than you think!</p>
<p>Applications &gt; Wine &gt; Browse C:\ Drive.</p>
<p>Navigate to: Windows &gt; Fonts.</p>
<p>VitalBodies ended up here: /home/username/.wine/drive_c/windows/Fonts</p>
<p>Copy and paste your fonts in into the Fonts folder.</p>
<p>See, that was easy.</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/ubuntu_wine.png"><img class="aligncenter size-full wp-image-601" src="http://vitalbodies.files.wordpress.com/2008/07/ubuntu_wine.png" alt="" width="470" height="296" /></a></p>
<p><strong>Font Stuff From the Wine User Guide: </strong><a href="http://winehq.org/site/docs/wineusr-guide/index">http://winehq.org/site/docs/wineusr-guide/index</a><strong><br />
</strong></p>
<div class="SECT2">
<p class="SECT2"><strong><a name="AEN424">3.3.3. Fonts</a></strong></p>
<p>Font configuration, once a nasty problem, is now much simpler.           If you have a collection of TrueType fonts in Windows it&#8217;s           simply a matter of copying the <tt class="FILENAME">.ttf</tt> files           into <tt class="FILENAME">c:\windows\fonts</tt>.</div>
<p><strong>Font Stuff </strong><strong>From the Wine Wiki: </strong><a href="http://wiki.winehq.org/">http://wiki.winehq.org/</a></p>
<h4>2.7. What is this &#8220;winetricks&#8221; thing?  Where do I get it?</h4>
<p><a href="http://wiki.winehq.org/winetricks">winetricks</a> is a shell script that downloads missing DLLs and fonts for you from the best known source. It was written to help Wine developers, but it turned out to be useful for end users, too. See the <a href="http://wiki.winehq.org/winetricks">wiki page about winetricks</a> for more info.</p>
<h4>2.31. Using wine over remote X11 sessions and No text or damaged text displayed</h4>
<p class="line874">Please make sure not have added any fonts to wine. Font conflicts can sometimes cause a similar issue. If a fresh wine prefix.(A copy of wine that nothing has been done to yet) Is having this problem. Try setting following in registry</p>
<p class="line867">
<pre>[HKEY_CURRENT_USER\Software\Wine\X11 Driver]
"ClientSideWithRender"="N"</pre>
<p class="line874">Place above in text file and it can be inserted into registry by &#8220;regedit settings.txt&#8221;.</p>
<p>This was report as been required of OS X on the 1 Dec 2007.  This may change.  Please apply only as required.</p>
<h4>2.32. How can I make Wine fonts anti-aliased?</h4>
<p><sup>TODO</sup></p>
<h4>2.33. How do I change font size / DPI ?</h4>
<p class="line862">First, you should try editing with <a href="http://wiki.winehq.org/winecfg">winecfg</a>. Go to the Graphics tab, and slide the &#8220;Screen Resolution&#8221; slider accordingly. Changes will not effect the winecfg window until you restart it.</p>
<p class="line874">If windows and fonts are so big you can&#8217;t get to the controls in winecfg, see the next question</p>
<p class="line867">
<h4>2.34. Wine&#8217;s windows and fonts are extremely large, and the whole window can&#8217;t fit on the screen</h4>
<p class="line874">Sometimes you can use the ALT key and the mouse to move the window so you can run winecfg and fix this as described in the previous question</p>
<p class="line874">If that doesn&#8217;t work, you can shut down your windows applications and change the registry value the hard way:</p>
<p class="line867">
<pre>wineserver -k
sed -i 's@"LogPixels"=.*@"LogPixels"=dword:00000060@g' ~/.wine/system.reg</pre>
<p>Alternately, you could remove your ~/.wine directory and reinstall your Windows applications.</p>
<p style="text-align:center;">Visit <a href="http://www.winehq.org/">WineHQ.org</a></p>
<p style="text-align:center;">-</p>
<p class="storytitle" style="text-align:center;"><a href="./2008/07/20/vitalbodies-guides-the-how-tos-of-fonts-in-ubuntu-hardy-heron/"><img class="aligncenter size-full wp-image-474" src="http://vitalbodies.files.wordpress.com/2008/07/follow_the_series.png" alt="" width="470" height="69" /></a><strong><a title="VitalBodies Guides - The How To’s Of Fonts In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/20/vitalbodies-guides-the-how-tos-of-fonts-in-ubuntu-hardy-heron/">VitalBodies Guides &#8211; The How Tos Of Fonts In Ubuntu</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/24/installing-fonts-in-wine-on-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting LightScribe To Work In Ubuntu Hardy Ibex Karmic Etc</title>
		<link>http://www.vitalbodies.com/blog/2008/07/14/getting-lightscribe-to-work-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/14/getting-lightscribe-to-work-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 17:41:44 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[4L]]></category>
		<category><![CDATA[Burn]]></category>
		<category><![CDATA[DEB]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Initializing nautilus-share extension]]></category>
		<category><![CDATA[Labeler]]></category>
		<category><![CDATA[Lacie]]></category>
		<category><![CDATA[LightScribe]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nautilus]]></category>
		<category><![CDATA[RPM]]></category>
		<category><![CDATA[Segmentation fault]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=195</guid>
		<description><![CDATA[Getting LightScribe To Work In Ubuntu Hardy Heron. LightScribe allows you to burn a label on your disk rather than using a pen or label. Why burn a label? Some pens, over time, can eat right through the disk and damage your data. Some labels will throw the disk (spinning at high RPM) off balance. Here is what worked for VitalBodies...]]></description>
			<content:encoded><![CDATA[<p>Getting LightScribe To Work In Ubuntu Hardy Ibex Karmic Etc</p>
<p><strong>LightScribe:</strong></p>
<p>VitalBodies installed a DVD burner in our new Lenovo D10 Workstation but had not attempted to setup LightScribe in Ubuntu. LightScribe allows you to burn a label on your disk rather than using a pen or label. Why burn a label? Some pens, over time, can eat right through the disk and damage your data. Some labels will throw the disk (spinning at high RPM) off balance.</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/lacie_lightscribe.png"><img class="aligncenter size-full wp-image-241" src="http://vitalbodies.files.wordpress.com/2008/07/lacie_lightscribe.png" alt="" width="470" height="527" /></a></p>
<p style="text-align: center;">Vitalbodies did some research and testing and here is what worked for us.</p>
<p><strong>Linux </strong><strong>Downloads For LightScribe:</strong></p>
<ul>
<li><strong>4L: LaCie LightScribe Labeler RPM and Host Software:</strong>
<ul>
<li><a href="http://www.lacie.com/products/product.htm?pid=10803">http://www.lacie.com/products/product.htm?pid=10803</a></li>
</ul>
</li>
<li><strong>4L: LaCie LightScribe </strong><strong>Labeler DEB:<br />
</strong></p>
<ul>
<li><a href="http://uploads.mitechie.com/lightscribe/4l_1.0-r6_i386.deb">http://uploads.mitechie.com/lightscribe/4l_1.0-r6_i386.deb</a><strong><br />
</strong></li>
</ul>
</li>
<li><strong>LaCie LightScribe Labeler Manual:</strong>
<ul>
<li><a href="http://www.lacie.com/download/manual/LightScribeLabelerLinux_en.pdf">http://www.lacie.com/download/manual/LightScribeLabelerLinux_en.pdf</a></li>
</ul>
</li>
<li><strong>Portal To All Of The LightScribe.com Linux Downloads:</strong>
<ul>
<li><strong>LightScribe System Software (Required) </strong></li>
<li><strong>LightScribeSimple labeler</strong></li>
<li><strong>LightScribe Linux Public SDK</strong></li>
<li><strong>Template Label Gallery</strong></li>
<li><strong>Label Gallery<br />
</strong></li>
<li><strong>Portal: </strong><a href="http://www.lightscribe.com/downloadSection/linux/index.aspx">http://www.lightscribe.com/downloadSection/linux/index.aspx</a></li>
</ul>
</li>
</ul>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="" width="15" height="13" /></a></p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/lightscribe_burn.jpg"><img class="aligncenter size-full wp-image-251" src="http://vitalbodies.files.wordpress.com/2008/07/lightscribe_burn.jpg" alt="" width="470" height="456" /></a></p>
<p><strong>Download The Required System Software: </strong></p>
<p>Download the LightScribe SYSTEM software from <a href="http://lightscribe.com/downloadSection/linux/index.aspx?id=814" target="_blank"></a><a href="http://lightscribe.com/downloadSection/linux/index.aspx?id=814">http://lightscribe.com/downloadSection/linux/index.aspx?id=814</a></p>
<p>There are RPM and DEB files to choose from and for Ubuntu choose the DEB files.</p>
<p>NOTE: This SYSTEM package MUST be installed BEFORE your LightScribe labeling applications to maintain the necessary dependencies.<strong><br />
</strong></p>
<p><strong>Installing The SYSTEM Software: </strong></p>
<p>Change Directory to the location where you downloaded the DEB file.</p>
<pre>cd Desktop</pre>
<p>Change &lt;&lt;filename&gt;&gt; to the match the file you downloaded.</p>
<p><strong><strong>For 32-bit Ubuntu: </strong></strong></p>
<pre><em>sudo dpkg -i «filename»
</em></pre>
<p><em>Thus: </em><em><em> </em></em></p>
<p><em><em> </em></em></p>
<pre><em><em>sudo dpkg -i </em></em>lightscribe-1.14.17.1-linux-2.6-intel.deb</pre>
<p><strong>For 64-bit Ubuntu: </strong></p>
<pre>dpkg -i --force-architecture <em><em>«filename»</em></em>.deb</pre>
<p>Thus:</p>
<pre><em><em><em><em>sudo </em></em></em></em>dpkg -i --force-architecture lightscribe-1.14.17.1-linux-2.6-intel.deb</pre>
<p><strong>Check the status of the installation: </strong></p>
<pre><em>dpkg -s lightscribe</em></pre>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="" width="15" height="13" /></a></p>
<p><strong>Download The Labeler Program or Programs: </strong></p>
<ul>
<li><strong>4L: LaCie LightScribe Labeler for Linux DEB:<br />
</strong></p>
<ul>
<li><a href="http://uploads.mitechie.com/lightscribe/4l_1.0-r6_i386.deb">http://uploads.mitechie.com/lightscribe/4l_1.0-r6_i386.deb</a></li>
</ul>
</li>
<li><strong>Simple Labeler:</strong>
<ul>
<li><a href="http://www.lightscribe.com/downloadSection/linux/index.aspx?id=815">http://www.lightscribe.com/downloadSection/linux/index.aspx?id=815</a></li>
</ul>
</li>
</ul>
<p><strong>Install The LABELER Programs: </strong></p>
<p><strong><strong>For 32-bit Ubuntu: </strong></strong></p>
<pre><em>sudo dpkg -i «filename»
</em></pre>
<p><em>Thus: </em><em><em> </em></em></p>
<p><em><em> </em></em></p>
<p><em><em>sudo dpkg -i </em></em>4l_1.0-r6_i386.deb</p>
<p><strong>For 64-bit Ubuntu: </strong></p>
<pre>sudo dpkg -i --force-architecture <em><em>«filename»</em></em>.deb</pre>
<p>Thus:</p>
<pre>sudo dpkg --force-architecture -i 4l_1.0-r6_i386.deb</pre>
<p>Simple Labeler:</p>
<pre>sudo dpkg -i --force-architecture lightscribeApplications-1.10.19.1-linux-2.6-intel.deb</pre>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="" width="15" height="13" /></a></p>
<p><strong>Create A Menu Item For Lacie Labeler: </strong></p>
<p>Right click your menu (IE Applications Places System) and click &#8220;Edit Menus.&#8221;</p>
<p>Click the Category in Menus on the left you want to place the menu item in (like Graphics or Sound and Video).</p>
<p>Click the &#8220;New Item&#8221; button on the left.</p>
<p><strong>Create Launcher Properties:</strong></p>
<p><strong>Type:</strong> &#8220;Application&#8221;</p>
<p><strong>Name:</strong> &#8220;4L LightSribe Labeler&#8221;</p>
<p><strong>Command:</strong> &#8220;sudo 4L-gui&#8221;</p>
<p><strong>Comment:</strong> &#8220;Burn label LABEL SIDE DOWN&#8221;.</p>
<p><strong>Icon or description: </strong>Up to you, but here is a suggestion. &#8220;Burn gray scale text and images on to LightScribe disks&#8221;.</p>
<p>Click the Ok button to save your changes.</p>
<p style="text-align: center;"><strong>LightScribe Simple Labeler </strong></p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/lightscribe_simple.png"><img class="aligncenter size-full wp-image-243" src="http://vitalbodies.files.wordpress.com/2008/07/lightscribe_simple.png" alt="" width="470" height="522" /></a></p>
<p><strong>Create A Menu Item LightScribe Simple Labeler: </strong></p>
<p>Right click your menu (Applications) and click &#8220;Edit Menus.&#8221;</p>
<p>Click the group on the left you&#8217;d like to place the menu item in (like Graphics or Sound and Video).</p>
<p>Click &#8220;New Item&#8221; on the left.</p>
<p><strong>Create Simple Launcher Properties:</strong></p>
<p><strong>Type:</strong> &#8220;Application&#8221;</p>
<p><strong>Name:</strong> &#8220;LightScribe Simple Labeler&#8221;</p>
<p><strong>Command:</strong> &#8220;gksudo /opt/lightscribeApplications/SimpleLabeler/SimpleLabeler&#8221;</p>
<p><strong>Comment:</strong> &#8220;Burn label LABEL SIDE DOWN&#8221;.</p>
<p><strong>Icon or description: </strong>Up to you, but here is a suggestion. &#8220;Burn gray scale text and images on to LightScribe disks&#8221;.</p>
<p>Click the Ok button to save your changes.</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="" width="15" height="13" /></a></p>
<p><strong>Odd Anomalies: </strong></p>
<p>VitalBodies got disks to burn and everything works. There were a few Anomalies along the way. Like trying to start the software using the menus did not work until we rebooted.</p>
<p>EDIT: I had just burned a label with LightScribe for this blog article. I did not need to add data to the disk as I was just checking the label burner. I flipped the disk to the data side for whenever the next data burn might be and thus BROKE Nautilus. Turns out you could get a SEGMENT FAULT error from this command:</p>
<pre>sudo nautilus
Initializing nautilus-share extension
Segmentation fault</pre>
<p>Removed the blank disk and that FIXED Nautilus.</p>
<p>Just a side note: This error does not happen with the disk label side down but only data side down.</p>
<p>In other words, only when the data side is towards the laser.</p>
<p>I wondered if this only happens with blank disks?</p>
<p>Answer, yes&#8230;</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="" width="15" height="13" /></a></p>
<p><strong>Suggestions: </strong></p>
<p>VitalBodies burned a disk and it came out light (low contrast) so we burned the same disk again to increase the contrast. Looks great. The original image was low contrast. Consider higher contrast text and imagery for better results. VitalBodies made a new GIMP and Inkscape template for burning. The image at the top is from the new template.</p>
<p><strong>Other Alien Possibilities If All Else Fails: </strong></p>
<p><a href="http://help.ubuntu.com/community/LightScribe">http://help.ubuntu.com/community/LightScribe</a></p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="" width="15" height="13" /></a></p>
<p style="text-align: center;">VitalBodies wants to thanks the helpful folks on the Ubuntu forums and everyone that made LightScribe on Linux possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/14/getting-lightscribe-to-work-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Install A Windows Program In Ubuntu</title>
		<link>http://www.vitalbodies.com/blog/2008/07/13/how-to-install-a-windows-program-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/13/how-to-install-a-windows-program-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 20:12:43 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[Sigma]]></category>
		<category><![CDATA[Sigma Photo Pro]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Windows Program]]></category>
		<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=233</guid>
		<description><![CDATA[Most of the time the very best solution is to use software written to run in Linux in Linux. But when you just have to have that special program that is only available for Windows and no other will do... here is How To Install A Windows Program In Ubuntu Hardy Heron.]]></description>
			<content:encoded><![CDATA[<p><strong>How To Install A Windows Program In Ubuntu</strong>This post is part of a series on <a title="How To Install Programs In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/">How To Install Programs In Ubuntu Hardy Heron and Intrepid Ibex</a>.</p>
<p>Most of the time, the very best solution is to use software written to run in Linux, when you are in Ubuntu. But when you just have to have that special program that is only available for Windows and no other will do&#8230; here is How To Install A Windows Program In Ubuntu Hardy Heron or Intrepid Ibex.</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/ubuntu_wine.png"><img class="aligncenter size-full wp-image-601" src="http://vitalbodies.files.wordpress.com/2008/07/ubuntu_wine.png" alt="" width="470" height="296" /></a></p>
<p style="text-align:center;">
<p>Applications &gt; Add/Remove… &gt; All Open Source Applications &gt; Search<em> Wine</em> &gt; Enable (check in check box) &gt; Wine Windows Emulator &gt; Apply Changes… etc &#8211; follow through until Wine is installed.</p>
<p>Wine will allow many programs to run in Ubuntu, that otherwise would not.</p>
<blockquote><p><strong>About Wine Windows Emulator</strong>:<br />
&#8220;Microsoft Windows Compatibility Layer (Binary Emulator and Library)<br />
Wine is a compatibility layer for running Windows applications on Linux. Applications are run at full speed without the need of cpu emulation. Wine does not require Microsoft Windows, however it can use native system dll files in place of its own if they are available.<br />
This package includes a program loader for running unmodified Windows executables as well as the Wine project&#8217;s free version of the Windows API for running programs ported from Windows.&#8221;<br />
Homepage: <a href="http://www.winehq.org/">http://www.winehq.org/</a></p></blockquote>
<p><strong>Installing a Non-Linux Windows Program In Ubuntu: </strong></p>
<p>For our example we will use Sigma Photo Pro which is a program that allows one to edit <a href="http://vitalbodies.wordpress.com/?s=raw+camera&amp;submit=Search">RAW Camera Files</a> from Sigma Cameras like the <a href="http://vitalbodies.wordpress.com/?s=Sigma+SD14&amp;submit=Search">Sigma SD14</a>.</p>
<p>You can use most any Windows program and follow along. Be aware that not all programs run under Wine but many do quite easily and others do with some tweaking.</p>
<p><strong>Getting Setup: </strong></p>
<p>VitalBodies downloaded the Sigma Photo Pro program and placed the program in a folder.</p>
<p><strong>Navigate:</strong> Navigate to the folder where your program is located.</p>
<p>Places &gt; Desktop (for example if your program in on the desktop)</p>
<p><strong>Installation: </strong></p>
<p>Right Click (Use the right button rather than left) on the Setup.exe or the file you would normally use to install the program if you were in Windows. In VitalBodies example case, for the Sigma program, the file is called Setup.exe.</p>
<p>Choose <em>Open With Other Application </em>or<em> </em><em>Wine Windows Program Loader.</em></p>
<p>Scroll down until you see <em>Wine Windows Program Loader</em>.</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/open_with_wine.png"><img class="aligncenter size-full wp-image-235" src="http://vitalbodies.files.wordpress.com/2008/07/open_with_wine.png" alt="" width="434" height="477" /></a></p>
<p>Left Click the <span style="text-decoration: underline;">O</span>pen button.</p>
<p><strong>After A Short Pause:</strong></p>
<p>With any luck, your software&#8217;s installation program should start, and you can default on through the installation.</p>
<p style="text-align:center;"><em>VitalBodies recommends the defaults (in most cases) unless you know to choose otherwise. </em></p>
<p>VitalBodies Sigma Photo Pro program installed flawlessly!</p>
<p><strong>Reboot:</strong> For what ever reason we did need to a reboot for the Sigma Photo Pro program to show up in the Wine menu. This is most likely because we had just installed Wine without doing a reboot after installing.</p>
<p><strong>Starting The Program You Just Installed: </strong></p>
<p>Applications &gt; Wine &gt; Programs &gt;</p>
<p>For Vitalbodies we found our Sigma program here:</p>
<p>Applications &gt; Wine &gt; Programs &gt; SIGMA &gt; Photo Pro &gt; Sigma Photo Pro</p>
<p>We also found a Sigma icon on the desktop to start the program.</p>
<p>The Sigma program started right up and ran great! If yours did not, visit Winehq: <a href="http://www.winehq.org/">http://www.winehq.org/</a> and check out the FAQ, forums, wiki or the Application Database (AppDB) for more information.</p>
<p><strong>WINE Basics:</strong></p>
<p>Remember, Wine Is Not an Emulator (WINE)! Wine is a compatibility layer for running Windows applications on Linux. Applications are run at full speed without the need of cpu emulation.</p>
<p>Wine creates it&#8217;s own environment in which to work. An example of this is the Browse C:/ Drive within the Wine menus.</p>
<p>Applications &gt; Wine &gt; Browse C:/ Drive</p>
<p>Here your windows programs will find their more familiar home. Like C: drive and the <em>Programs Files</em> folder.</p>
<p>Also check out Applications &gt; Wine &gt; Configure Wine.</p>
<p>Configuring Wine can help if your program has special needs or was written to run under a particular version of Windows. Many people use Wine to run programs like ACAD, Photoshop and many of the games, so called, gamers play.</p>
<p style="text-align:center;">-</p>
<p style="text-align:center;">VitalBodies would like to thank the WINE team for making things work!</p>
<p style="text-align:center;"><strong><em>- Free As In Freedom -</em></strong></p>
<p style="text-align:center;">- Visit Winehq: <a href="http://www.winehq.org/">http://www.winehq.org/</a> -</p>
<p style="text-align:left;">This post is part of a series on <a title="How To Install Programs In Ubuntu Hardy Heron" rel="bookmark" href="./2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/">How To Install Programs In Ubuntu</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/13/how-to-install-a-windows-program-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>What Windows Or New Users Need To Know About Ubuntu</title>
		<link>http://www.vitalbodies.com/blog/2008/07/11/what-windows-or-new-users-need-to-know-about-ubuntu/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/11/what-windows-or-new-users-need-to-know-about-ubuntu/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 05:13:32 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[My Documents]]></category>
		<category><![CDATA[Prtsc]]></category>
		<category><![CDATA[Screen capture]]></category>
		<category><![CDATA[Shockwave]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[Wireless Monitor]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=167</guid>
		<description><![CDATA[Having the right help is like having the right chocolate...
VitalBodies recently switched all of our computers over to Ubuntu. Glad we did but there was a learning curve. The list below is intended to reduce the incline of your learning curve...]]></description>
			<content:encoded><![CDATA[<p><strong>What Windows Or New Users Need To Know About Ubuntu</strong></p>
<p>If you are used to Windows or Mac or you just suddenly start using Ubuntu, there are few things that you will want to know sooner or later.</p>
<p>Usually sooner&#8230;</p>
<p style="text-align:center;"><a title="Organic chocolate Coffee Truffle" href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="Organic Chocolate Coffee Truffle" width="15" height="13" /></a></p>
<p>VitalBodies recently switched all of our computers over to Ubuntu.</p>
<p>Glad we did, but there was a learning curve.</p>
<p>The list of How Tos below is intended to reduce the incline of your learning curve&#8230;</p>
<p style="text-align:center;"><a title="Organic Chocolate Dark 73% Or Better" href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="Organic Chocolate Dark 73% Or Better" width="150" height="130" /></a></p>
<p style="text-align:center;">Having the right help is like having the right chocolate&#8230;</p>
<p><strong>TOP OF THE LIST TO YA: </strong></p>
<p><strong>Installing Applications / Programs / Software In Ubuntu:</strong></p>
<ul>
<li>
<p class="storytitle"><a title="How To Install Programs In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/">How To Install Programs In Ubuntu Hardy Heron</a></p>
</li>
<li><a title="How To Install A Windows Program In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/13/how-to-install-a-windows-program-in-ubuntu-hardy-heron/">How To Install A Windows Program In Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>Installing Fonts:<br />
</strong></p>
<ul>
<li> <a title="Installing Fonts Using Synaptic In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/20/installing-fonts-using-synaptic-in-ubuntu-hardy-heron/">Installing Fonts Using Synaptic In Ubuntu Hardy Heron<br />
</a></li>
<li><a title="Installing Fonts In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/01/installing-fonts-in-ubuntu/">Installing Fonts In Ubuntu Hardy Heron<br />
</a></li>
<li><a href="http://vitalbodies.wordpress.com/2008/07/20/how-to-find-fun-new-fonts-for-ubuntu-hardy-heron/">How To Find Fun New Fonts For Ubuntu Hardy Heron</a></li>
<li><a title="Configuring Fonts and Enabling Bitmapped Fonts In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/21/configuring-fonts-and-enabling-bitmapped-fonts-in-ubuntu-hardy-heron/">Configuring Fonts and Enabling Bitmapped Fonts In Ubuntu Hardy Heron</a></li>
<li> <a title="Where Are Fonts Stored / Located In Ubuntu Hardy Heron?" rel="bookmark" href="../2008/07/21/where-are-fonts-stored-located-in-ubuntu-hardy-heron/">Where Are Fonts Stored / Located In Ubuntu Hardy Heron?</a></li>
<li><a title="How To Create Or Edit Fonts In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/21/how-to-create-or-edit-fonts-in-ubuntu-hardy-heron/">How To Create Or Edit Fonts In Ubuntu Hardy Heron</a></li>
<li> <a title="Installing Microsoft MS Core Fonts In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/22/installing-microsoft-ms-core-fonts-in-ubuntu-hardy-heron/">Installing Microsoft MS Core Fonts In Ubuntu Hardy Heron</a></li>
<li> <a title="Advanced Font Information And Settings In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/23/advanced-font-information-and-settings-in-ubuntu-hardy-heron/">Advanced Font Information And Settings In Ubuntu Hardy Heron</a></li>
<li> <a title="Installing Fonts In Wine On Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/24/installing-fonts-in-wine-on-ubuntu-hardy-heron/">Installing Fonts In Wine On Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>Wireless That Works Out Of The Box:</strong></p>
<ul>
<li><a title="Wireless In Ubuntu" rel="bookmark" href="../2008/06/28/wireless-in-ubuntu/">Wireless In Ubuntu</a></li>
</ul>
<p><strong>Wireless Range:</strong></p>
<ul>
<li><a title="Improving Wireless Range In Ubuntu" rel="bookmark" href="../2008/07/01/wireless-range-in-ubuntu-with-edimax/">Improving Wireless Range In Ubuntu</a></li>
</ul>
<p><strong>Shockwave Or Flash:</strong></p>
<ul>
<li><a title="How To Install Flash In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/09/how-to-install-flash-in-ubuntu-hardy-heron/">How To Install Flash In Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>Java:</strong></p>
<ul>
<li><a title="How To Install Open Source Java In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/09/how-to-install-open-source-java-in-ubuntu-hardy-heron/">How To Install Open Source Java In Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>FTP: </strong></p>
<ul>
<li><a title="FTP In Ubuntu Hardy Heron - FileZilla" rel="bookmark" href="../2008/07/10/ftp-in-ubuntu-hardy-heron-filezilla/">FTP In Ubuntu Hardy Heron - FileZilla</a></li>
</ul>
<p><strong>Firewall:</strong></p>
<ul>
<li><a title="Installing And Using A Firewall In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/09/installing-and-using-a-firewall-in-ubuntu-hardy-heron/">Installing And Using A Firewall In Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>Resource Monitor: </strong></p>
<ul>
<li><a title="HTOP Resource Monitor In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/11/resource-monitor-in-ubuntu-hardy-heron/">HTOP Resource Monitor In Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>Terminal Commands:</strong></p>
<ul>
<li><a title="COMMANDS that can be used in Ubuntu" rel="bookmark" href="../2008/06/28/commands-that-can-be-used-in-ubuntu/">COMMANDS that can be used in Ubuntu</a></li>
</ul>
<p><strong>Web Building or Development:</strong></p>
<ul>
<li><a title="Apache, PHP, MySQL Webalizer, OpenSSL etc" rel="bookmark" href="../2008/06/28/xampp-apache-php-mysql-etc/">XAMPP: Apache, PHP, MySQL Webalizer, OpenSSL etc</a></li>
</ul>
<p><strong>LightScribe:</strong></p>
<ul>
<li><a title="Getting LightScribe To Work In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/14/getting-lightscribe-to-work-in-ubuntu-hardy-heron/">Getting LightScribe To Work In Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>What Version Are You Running?:</strong></p>
<ul>
<li><a title="Finding Version Information On Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/14/finding-version-information-on-ubuntu-hardy-heron/">Finding Version Information On Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>64-Bit Ubuntu: </strong></p>
<ul>
<li>
<p class="storytitle"><a title="How To Tell If An Application Is 64-bit In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/26/how-to-tell-if-an-application-is-64-bit-in-ubuntu-hardy-heron/">How To Tell If An Application Is 64-bit In Ubuntu Hardy Heron</a></p>
</li>
</ul>
<p><strong>Blender 3D: </strong></p>
<ul>
<li><a title="How To Install Blender 2.46 In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/25/how-to-install-blender-246-in-ubuntu-hardy-heron/">How To Install Blender 2.46 In Ubuntu Hardy Heron</a></li>
</ul>
<p><strong>Wireless Monitor: </strong></p>
<ul>
<li>Applications &gt; Add/Remove&#8230; &gt; Show: All Open Source Applications &gt; Search: Wireless<strong><br />
</strong></li>
</ul>
<p><strong>Screen Capture:</strong></p>
<ul>
<li>Press the <strong>PrtSc</strong> button on your keyboard&#8230;</li>
</ul>
<p><strong>Where Are My Documents?:</strong></p>
<ul>
<li> Places &gt; Home Folder or home/username</li>
</ul>
<p style="text-align:center;"><a title="Organic chocolate Coffee Truffle" href="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.files.wordpress.com/2008/07/image_gif_icon_chocolate.gif" alt="Organic Chocolate Coffee Truffle" width="15" height="13" /></a></p>
<p style="text-align:center;">VitalBodies would like to thank the countless Ubuntu teams and free software teams that make Ubuntu possible!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/11/what-windows-or-new-users-need-to-know-about-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>HTOP Resource Monitor In Ubuntu Hardy Heron</title>
		<link>http://www.vitalbodies.com/blog/2008/07/11/resource-monitor-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/11/resource-monitor-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 19:13:39 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[htop]]></category>
		<category><![CDATA[Resource Monitor]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=204</guid>
		<description><![CDATA[HTOP Resource Monitor In Ubuntu Hardy Heron:
So Ubuntu seems to be hogging WAY to much resources? Or at least something is.
How to find out who is the culprit...]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><strong>HTOP Resource Monitor In Ubuntu Hardy Heron:</strong></p>
<p style="text-align:left;">So Ubuntu seems to be hogging WAY to much resources? Or at least something is.</p>
<p style="text-align:left;">How to find out who is the culprit.</p>
<p style="text-align:center;"><a href="http://vitalbodies.files.wordpress.com/2008/07/resource_meter.png"><img class="aligncenter size-full wp-image-205" src="http://vitalbodies.files.wordpress.com/2008/07/resource_meter_0.jpg" alt="" width="470" height="287" /></a></p>
<p style="text-align:center;">Click image for larger image</p>
<p style="text-align:center;">HTOP helped VitalBodies solve a problem with resources.</p>
<p style="text-align:center;">Can you guess who was the culprit?</p>
<p style="text-align:left;"><strong>In Short:</strong> The simple copy and paste code (below) installs a resource monitor.</p>
<p style="text-align:left;"><strong>Simple Installation: </strong></p>
<p style="text-align:left;">Copy the code below:</p>
<pre style="text-align:left;">sudo apt-get install htop</pre>
<p>Open the terminal:</p>
<p>Applications &gt; Accessories &gt; Terminal</p>
<p>Paste this code below into the Terminal: Edit &gt; Paste.</p>
<p>Start the resource monitor by typing the command below into the terminal and then pushing the Enter key on your keyboard.</p>
<pre style="text-align:left;">htop</pre>
<p>The resource monitor runs right inside the terminal and can help you track down what programs are running or using to much memory etc&#8230;</p>
<p>VitalBodies extends a warm thanks to the teams that makes such a great program free, and available for everyone to use!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/11/resource-monitor-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

