<?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; How To</title>
	<atom:link href="http://www.vitalbodies.com/blog/tag/how-to/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: Email Blogging Is Fun And Easy</title>
		<link>http://www.vitalbodies.com/blog/2009/06/05/how-to-email-blogging-is-fun-and-easy/</link>
		<comments>http://www.vitalbodies.com/blog/2009/06/05/how-to-email-blogging-is-fun-and-easy/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 19:14:45 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[This Blog...]]></category>
		<category><![CDATA[email blog]]></category>
		<category><![CDATA[email blogging]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[postie]]></category>
		<category><![CDATA[vitalbodies]]></category>
		<category><![CDATA[wordpress email blogging]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1449</guid>
		<description><![CDATA[How To: Email Blogging Is Fun And Easy:
Blogging is fun. But for some, to go through the trouble of logging in, and learning another new interface is more than they might want to do or have time to do.
Having others write posts for your blog is also fun and this too is where Email Blogging can really help. To blog while your traveling might also be a great time to make use of the convenience of Email Blogging.]]></description>
			<content:encoded><![CDATA[<p><strong>How To: Email Blogging Is Fun And Easy: </strong></p>
<p>Blogging is fun. But for some, to go through the trouble of logging in, and learning another new interface is more than they might want to do or have time to do.</p>
<p>Having others write posts for your blog is also fun and this too is where Email Blogging can really help. To blog while your traveling might also be a great time to make use of the convenience of Email Blogging.</p>
<p>Email Blogging is where you simply send compose an email as a blog post and then send that email to a secret email address (for your blog) and the blog either automatically posts the email as a blog post or adds it to the queue of posts as a draft (ready for the final edit before posting) that you can publish at your leasure.</p>
<p><strong>Here is a quick HOW TO on Email Blogging: </strong></p>
<p>First you compose an email&#8230;</p>
<div id="attachment_1450" class="wp-caption aligncenter" style="width: 354px"><a href="http://www.vitalbodies.com/blog/wp-content/uploads/2009/06/email_blogging.jpg"><img class="size-medium wp-image-1450" title="email_blogging" src="http://www.vitalbodies.com/blog/wp-content/uploads/2009/06/email_blogging-344x475.jpg" alt="Click for a larger version" width="344" height="475" /></a><p class="wp-caption-text">Click for a larger version</p></div>
<p>Next you send the email to your secret email address.</p>
<p>Click <a href="http://www.vitalbodies.net/blog/2009/06/05/email-blogging-subject-is-required-and-will-show-up-in-blog-as-the-title/" target="_blank">here to see how the published post looks after having been emailed</a>.</p>
<p>VitalBodies wants to thank the team that created <a href="http://blog.robfelty.com/plugins/postie" target="_blank">Postie</a> for creating a great plug in for WordPress!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2009/06/05/how-to-email-blogging-is-fun-and-easy/feed/</wfw:commentRss>
		<slash:comments>0</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>How To Create Or Edit Fonts In Ubuntu</title>
		<link>http://www.vitalbodies.com/blog/2008/07/21/how-to-create-or-edit-fonts-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/21/how-to-create-or-edit-fonts-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 03:02:05 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Font Previewer]]></category>
		<category><![CDATA[FontForge]]></category>
		<category><![CDATA[FontImage]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Fonty Python]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Install Programs]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[Specimen Font Previewer]]></category>
		<category><![CDATA[Waterfall]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=462</guid>
		<description><![CDATA[How To Create Or Edit Fonts In Ubuntu Hardy Heron:
Did you know you can create and edit fonts too? You could create a new unique font and offer that font for everyone in the world to use. Or perhaps you need to view, compare or manage fonts...]]></description>
			<content:encoded><![CDATA[<p><strong>How To Create Or Edit Fonts In Ubuntu:</strong></p>
<p>Did you know you can create and edit fonts too? You could create a new unique font and offer that font for everyone in the world to use. Or perhaps you need to view, compare or manage fonts&#8230;</p>
<p>In Ubuntu Applications &gt; Add/Remove&#8230;<strong> </strong>&gt;<strong> </strong></p>
<p><strong>Show:</strong></p>
<p>Supported Applications, All Open Source Applications, Third Party Applications or All Available Applications.</p>
<p><strong>Search:</strong> Fonts</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/install_fonts.jpg"><img class="aligncenter size-full wp-image-463" src="http://vitalbodies.files.wordpress.com/2008/07/install_fonts.jpg" alt="" width="470" height="889" /></a></p>
<p>Then add a check to the check box of the application you want to install, click Apply Changes and then Apply and type you password and click Close.</p>
<p><strong>Font Related Tools:</strong></p>
<p><strong>FontForge:</strong></p>
<p>Font editor for PS, TrueType and OpenType fonts<br />
FontForge (formerly PfaEdit) allows you to edit outline and bitmap fonts. You can create new ones or modify old ones. It is also a font format converter and can convert among PostScript (ASCII &amp; binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts.<br />
This package also provides these programs and utilities: fontimage &#8211; produce a font thumbnail image; mensis &#8211; examine and modify some of the tables in a truetype or opentype font; sfddiff &#8211; compare two font files; showttf &#8211; decompose a font file into its various tables and display it.</p>
<p><a href="http://fontforge.sourceforge.net">http://fontforge.sourceforge.net</a></p>
<p><strong>Specimen Font Previewer</strong>:</p>
<p>Simple font preview and compare application for Gnome<br />
A simple tool to view and compare fonts installed on your system. It has currently following features,<br />
* A list of all fonts available (the left pane)<br />
* A list of font previews (the right pane)<br />
* Configurable preview text and font size<br />
* Configurable foreground and background colors used in the preview pane</p>
<p>This application is provided by the Ubuntu community.<br />
Homepage: <a href="http://uwstopia.nl/geek/projects/gnome-specimen">http://uwstopia.nl/geek/projects/gnome-specimen</a></p>
<p><strong>Fonty Python:</strong></p>
<p>A GUI tool to manage ttf fonts<br />
FontyPython is a GUI tool to manage ttf fonts on GNU/Linux system. It is written in Python and WxWidgets.<br />
You can collect any fonts together (even ones not in your system font folders) into &#8216;pogs&#8217; and then install and remove the pogs as you need them. In this way you can control what fonts are in your user font folder &#8211; thus avoiding long lists of fonts in the font chooser dialogues of your application.</p>
<p>This application is provided by the Ubuntu community.<br />
Homepage: <a href="https://savannah.nongnu.org/projects/fontypython">https://savannah.nongnu.org/projects/fontypython</a></p>
<p><strong>Waterfall</strong>:<br />
View all characters of a font in all sizes<br />
This program facilitates comparison of various fonts and font rendering parameters.<br />
It displays sample lines of text in sizes from 5 to 36px simultaneously and allows changing of font size range and increment, hinting, autohinting, anti-aliasing, subpixel smoothing, and aspect, immediately showing the changes on the screen. All Unicode characters are divided into blocks of 128 characters, and user can choose block of 128 characters to use as sample line of text.</p>
<p>This application is provided by the Ubuntu community.</p>
<p><strong>FSF</strong>:</p>
<p><a title="FSF" href="http://directory.fsf.org/category/fonts/">http://directory.fsf.org/category/fonts/</a></p>
<p><strong>FontImage:</strong> <a href="http://fontforge.sourceforge.net/fontimage.html"></a></p>
<p><a href="http://fontforge.sourceforge.net/fontimage.html">http://fontforge.sourceforge.net/fontimage.html</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>
<p><a href="http://fontforge.sourceforge.net"> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/21/how-to-create-or-edit-fonts-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VitalBodies Guides &#8211; The How Tos Of Fonts In Ubuntu</title>
		<link>http://www.vitalbodies.com/blog/2008/07/20/vitalbodies-guides-the-how-tos-of-fonts-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/20/vitalbodies-guides-the-how-tos-of-fonts-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 06:29:28 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Font Previewer]]></category>
		<category><![CDATA[FontForge]]></category>
		<category><![CDATA[FontImage]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Fonty Python]]></category>
		<category><![CDATA[free fonts]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Install Programs]]></category>
		<category><![CDATA[installing fonts in ubuntu]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[open source fonts]]></category>
		<category><![CDATA[Specimen Font Previewer]]></category>
		<category><![CDATA[truetype]]></category>
		<category><![CDATA[Waterfall]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=449</guid>
		<description><![CDATA[VitalBodies Guides - The How To's Of Fonts In Ubuntu Hardy Heron.
Follow the series of posts...]]></description>
			<content:encoded><![CDATA[<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>VitalBodies Guides &#8211; The How Tos Of Fonts In Ubuntu</strong></p>
<p><strong>How To: </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="./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>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/20/vitalbodies-guides-the-how-tos-of-fonts-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install Programs In Ubuntu Hardy Heron and Intrepid Ibex</title>
		<link>http://www.vitalbodies.com/blog/2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/</link>
		<comments>http://www.vitalbodies.com/blog/2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 05:11:00 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[Backports]]></category>
		<category><![CDATA[DEB Packages]]></category>
		<category><![CDATA[DEP]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Install Applications]]></category>
		<category><![CDATA[Install Programs]]></category>
		<category><![CDATA[Install Software]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>

		<guid isPermaLink="false">http://vitalbodies.wordpress.com/?p=373</guid>
		<description><![CDATA[How To Install Programs In Ubuntu Hardy Heron.
Ubuntu is very different than Windows as far as installing programs.
Most of the time, installing programs in Ubuntu is very very easy.]]></description>
			<content:encoded><![CDATA[<p><strong>How To Install Programs In Ubuntu Hardy Heron and Intrepid Ibex<br />
</strong></p>
<p>Ubuntu is very different than Windows as far as installing programs.</p>
<p>Most of the time, installing programs in Ubuntu is very very easy.</p>
<p>Applications &gt; Add/Remove&#8230; &gt;</p>
<p><a href="http://vitalbodies.files.wordpress.com/2008/07/add_java.png"><img class="aligncenter size-full wp-image-208" src="http://vitalbodies.files.wordpress.com/2008/07/add_java.png" alt="" width="470" height="285" /></a></p>
<p>Show:</p>
<p>Supported Applications, All Open Source Applications, Third Party Applications or All Available Applications.</p>
<p>Then add a check to the check box of the application you want to install, click Apply Changes and then Apply and type you password and click Close.</p>
<p>Adding programs does not get much easier than this.</p>
<p>To remove a program un-check the check box.</p>
<p>NOTE: VitalBodies suggests not choosing All Available Applications and third party applications until you have more experience managing and maintaining Ubuntu. In fact, if you are really new, you might want to use only Supported Applications until you are really up and running. See the Final Note (below) for more info.</p>
<p>What if the program you want to install is not on the list?</p>
<p>In short, here are the main ways to add programs:</p>
<p><strong>ADDING PROGRAMS TO UBUNTU:</strong></p>
<ul>
<li><strong>Windows Programs: </strong>
<ul>
<li>
<p class="storytitle"><strong><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></strong></p>
</li>
</ul>
</li>
<li><strong>DEB Packages (Debian or Ubuntu):</strong>
<ul>
<li>
<p class="storytitle"><strong><a title="apt-get in Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/13/apt-get-in-ubuntu-hardy-heron/">apt-get in Ubuntu Hardy Heron</a></strong></p>
</li>
<li>
<p class="storytitle"><strong><a title="aptitude Help on Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/16/aptitude-help-on-ubuntu-hardy-heron/">aptitude Help on Ubuntu Hardy Heron</a></strong></p>
</li>
<li>
<p class="storytitle"><strong><a title="dpkg Help On Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/16/dpkg-help-on-ubuntu-hardy-heron/">dpkg Help On Ubuntu Hardy Heron</a></strong></p>
</li>
<li><strong>Synaptic Package Manager: </strong>
<ul>
<li>System &gt; Administration &gt; Synaptic Package Manager.</li>
</ul>
</li>
</ul>
</li>
<li><strong>Finding DEB Packages: </strong>
<ul>
<li><a href="http://www.getdeb.net/">http://www.getdeb.net/</a></li>
<li><a href="http://linuxappfinder.com/all">http://linuxappfinder.com/all</a></li>
</ul>
</li>
<li><strong>Advanced Ubuntu:</strong> (your on your own here&#8230;)<strong><br />
</strong></p>
<ul>
<li><strong>Ubuntu BackPorts: </strong>https://help.ubuntu.com/community/UbuntuBackports</li>
<li><strong>Compiling From Source: </strong>See Program For Details.
<ul>
<li>Usually you need to Build Essential to compile from source:
<ul>
<li>
<pre>sudo apt-get install build-essential</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<p><strong>FINAL NOTE: </strong></p>
<p>In Ubuntu click the <strong>?</strong> (HELP) icon and then click <strong>Adding, Removing and Updating Applications</strong> to learn more&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

