<?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; Art</title>
	<atom:link href="http://www.vitalbodies.com/blog/category/art/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>Bulk Listing On Ebay, Shopping Cart and Google Base</title>
		<link>http://www.vitalbodies.com/blog/2010/04/02/bulk-listing-on-ebay-shopping-cart-and-google-base/</link>
		<comments>http://www.vitalbodies.com/blog/2010/04/02/bulk-listing-on-ebay-shopping-cart-and-google-base/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 05:43:12 +0000</pubDate>
		<dc:creator>VitalBodies</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Bulk Listing]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[CSV Improved]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[Google Base]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[RocketTheme]]></category>
		<category><![CDATA[Shopping Cart]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1719</guid>
		<description><![CDATA[Bulk Listing On Ebay, Shopping Cart and Google Base There are number of Ubuntu (Linux) users and &#8220;would be&#8221; sellers that might want to stay within Ubuntu and not have to also have a Windows machine to bulk list on Ebay, their own shopping cart or Google base. Although there may be many ways to [...]]]></description>
			<content:encoded><![CDATA[<div><strong>Bulk Listing On Ebay, Shopping Cart and Google Base</strong></div>
<p>There are number of Ubuntu (Linux) users and &#8220;would be&#8221; sellers that might want to stay within Ubuntu and not have to also have a Windows machine to bulk list on Ebay, their own shopping cart or Google base. Although there may be many ways to do this, we wanted to introduce a way that we found that is working for us. This took us quite a bit of time and research and we hope this article helps others.</p>
<p>In short, you have to have the right software that can do the job all the way to completion. We wanted to stay completely open source where possible and not use proprietary file formats. All of the software and resource below are free with the exception of web site hosting. We also decided to use a professional Joomla template that was not free, although there are free templates available.</p>
<p><strong>Here is the software we found to be the most helpful:</strong> (OS = Open Source)</p>
<ul>
<li>Ubuntu (OS)</li>
<li>Open Office Spreadsheet (OS and available on-line or within Ubuntu)</li>
<li>GIMP  (OS and available on-line or within Ubuntu)</li>
<li>Joomla  (OS and available on-line)</li>
<li>VirtueMart  (OS and available on-line)</li>
<li>CSV Improved (CC BY-ND)</li>
<li>Gedit (OS and available within Ubuntu)</li>
<li>Firefox (OS and available on-line or within Ubuntu)</li>
</ul>
<p>This article does not go into the zillions of details that are involved in setting up web sites, ebay, shopping carts and the like. Instead this article simply points the way and lets &#8220;would be&#8221; sellers that want to use open source software know there is indeed &#8220;a way&#8221; and what that way is. Again, this is not to say this is the only way.</p>
<p><strong>Spreadsheets:</strong><br />
The key to this system is to create or move your listings into spreadsheet. This allows one to bulk upload (start, edit, update, end, etc) ones listings on Ebay, their shopping cart, Google Base and other venues. You will end up with one spreadsheet for Ebay, one for the shopping cart and CSV Improved will create a Google Base spreadsheet for you. The spreadsheets are each tailored specifically to the tasks they are to perform but the bulk of the information is the same for all of them.</p>
<p><strong>Open Office Spreadsheet</strong><br />
In this article we are suggesting Open Office Spreadsheet as the tool of choice. There may be other editors that are just as nice but we know this one can do all the jobs that are needed.</p>
<p><strong>Gedit</strong><br />
There can be occasions along the way where you might need to edit in &#8220;plain text&#8221; and Gedit can help us with that. Gedit is similar to the Notepad you find in Windows yet is more powerful than Notepad. This tool can be useful for converting text or code or something you have copied onto the clipboard into plain text also. For example, you can just paste into Gedit, re-select what you pasted, and click copy &#8211; now (like magic) what is stored in the clipboard is in plain text, ready to paste into a spreadsheet or XHTML code.</p>
<p><strong>GIMP:</strong><br />
This is a great tool for editing and resizing images for your listings or creating logos and such.</p>
<p><strong>Joomla:</strong><br />
<a href="http://www.joomla.org/" target="_blank">Joomla</a> is a CMS tool for creating web sites and managing content. CMS stands for Content Management System. On a web site you have lots of content to manage in the form of articles, images, artwork and possibly sound and video.</p>
<p><strong>Joomla Template:</strong><br />
Joomla sites need to be styled with a template and there are many templates available. Be careful not to download &#8220;free&#8221; (as in pirated) commercial templates as they tend to have viruses and other bugs. It takes a lot of effort to set all this up and the last thing you need is your site hacked. Some templates can style both Joomla and VirtueMart. We chose to use a professional <a href="http://www.rockettheme.com/joomla?xyz=2538">RocketTheme</a> Template</p>
<p><strong>Web Site Hosting: </strong><br />
Some web sites hosts like <a href="http://www.dreamhost.com/r.cgi?477702" target="_blank">Dreamhost</a> offer &#8220;one click installs&#8221; of Joomla and easy database management so installation is super is easy. We also like that our site is <a href="http://www.dreamhost.com/r.cgi?477702/green.cgi?vitalbodies.com">Green</a> by going with DreamHost.</p>
<p><strong>VirtueMart: </strong><br />
<a href="http://virtuemart.net/" target="_blank">VirtueMart</a> is a component for Joomla that adds a shopping cart into Joomla. This is nice in that you are not dealing with a cart and separate web site for the sake of simplicity, management and styling.</p>
<p><strong>CSV Improved: </strong><br />
<a href="http://www.csvimproved.com/" target="_blank">CSV Improved</a> is an import export component for VirtueMart so you can import, manage and export your listings. You can even export your listings as a XML file. How to export a ready made XML file for Google Base using CSVI VirtueMart? Within Joomla: Components &gt; CSVI VirtueMart &gt; Export &gt; CSVI Google Base Export XML &gt; Choose the settings you need or leave them at the defaults &gt; Export.</p>
<div class="wp-caption aligncenter" style="width: 444px"><a href="http://www.vitalbodies.com/site/uploads/images/graphics/CSV_Improved_Team_Work.png"><img title="VirtueMart, Joomla and CSV Improved" src="http://www.vitalbodies.com/site/uploads/images/graphics/CSV_Improved_Team_Work.png" alt="" width="434" height="562" /></a><p class="wp-caption-text">Click image for a larger version</p></div>
<p><strong>Google Base:</strong><br />
Google Base is under going a name change to <a href="http://www.google.com/merchants/">Google Merchant Services</a>. When you upload your products to Google Base your products show up in the &#8220;shopping&#8221; tab (product search on Google) which is a free service offered by Google. Here is an example showing our product listings on Google: <a href="http://www.google.com/products?q=organic%20futon%20vitalbodies">http://www.google.com/products?q=organic%20futon%20vitalbodies</a></p>
<p><strong>Ebay:</strong><br />
Ebay tends to be very proprietary and can lead one down that path &#8211; to help avoid that fate you can use Ebay File Exchange rather than Turbo Lister which tends to only run on certain Operating Systems like Windows. If one learns Ebay File Exchange rather than Turbo Lister, they may only need to use Turbo Lister once to export their listings.  That is if they have a lot of listings already on ebay, otherwise one really does not need Turbo Lister at all. If you do have listing on ebay you need to manage, you must get the ebay item numbers to match up to the title and description within the spread sheet in Open Office. At the time we needed to download our listings we did not know about open source <a href="http://code.google.com/p/jaolt/">jAOLT</a> that can also do the task that Turbo Lister does. I have not tried jAOLT but it is well worth a look and frees you from needing a Windows machine to run Turbo Lister to get your spread sheet started.<br />
Additionally, if you leave Turbo Lister behind and switch to Ebay File Exchange you are are much more ready to load your own web sites cart with your spreadsheet and add your products to Google Base. This frees you from Windows, IE, Wine and Turbo Lister at the very least. We were able to do just that, using Open Office, Ebay File Exchange, Joomla, VirtueMart, and CSV Improved and the other software listed here. Consider keeping the item titles at 55 characters or less so they are compatible with Ebay.</p>
<p><strong>Firefox: </strong><br />
I mention Firefox because I know it works throughout the whole process. Epiphany is nice for double checking web pages as it uses the Webkit engine to display web pages and Webkit which can pass the acid3 test for CSS.</p>
<p><strong>Additional Learning:</strong> Some of the learning curve took a considerable amount of time to figure out so I wrote a few blog posts to help others flatten that curve.</p>
<p><strong>Using File Exchange And Turbo Lister With Ebay Listings In Ubuntu:</strong><br />
<a href="../2009/05/18/using-file-exchange-and-turbo-lister-with-ebay-listings-in-ubuntu/" target="_blank">http://www.vitalbodies.com/blog/2009&#8230;ngs-in-ubuntu/</a></p>
<p><strong>You have to know a few tricks to get Open Office to play nice: </strong><br />
<a href="../2009/06/21/getting-openoffice-to-play-nice-with-ebay-file-exchange/" target="_blank">http://www.vitalbodies.com/blog/2009&#8230;file-exchange/</a></p>
<p>All in all, there are forums for each of the programs or web sites and the details-upon-details involved go <em>far beyond</em> this article but I am happy to share that there is &#8220;a way&#8221; to make bulk listing happen and stay in Ubuntu and Linux.</p>
<p>Here is another graphic I created to help simplify what needs to be learned:</p>
<p style="text-align: center;"><a href="../../site/uploads/images/graphics/CSV_Improved_Workflow.png"><img class="aligncenter" title="CSV Improved Work Flow" src="../../site/uploads/images/graphics/CSV_Improved_Workflow.png" alt="" width="434" height="562" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2010/04/02/bulk-listing-on-ebay-shopping-cart-and-google-base/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSV Improved Work Flow Quick Start Guide Graphic</title>
		<link>http://www.vitalbodies.com/blog/2010/03/17/csv-improved-work-flow-graphic/</link>
		<comments>http://www.vitalbodies.com/blog/2010/03/17/csv-improved-work-flow-graphic/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 18:56:12 +0000</pubDate>
		<dc:creator>VitalBodies</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSV Improved]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Quick Start Guide]]></category>
		<category><![CDATA[VirtueMart]]></category>
		<category><![CDATA[Work Flow]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1691</guid>
		<description><![CDATA[CSV Improved Work Flow Quick Start Guide Graphic Joomla is one of the leading open source CMS (content management systems) used on the internet to create powerful modular web sites. VirtueMart is the leading open source shopping cart solutions that integrates within Joomla as a componet. CSV Improved is the leading the way to allow [...]]]></description>
			<content:encoded><![CDATA[<p>CSV Improved Work Flow Quick Start Guide Graphic</p>
<p style="text-align: center;"><a href="http://www.vitalbodies.com/site/uploads/images/graphics/CSV_Improved_Workflow.png"><img class="aligncenter" title="CSV Improved Work Flow" src="http://www.vitalbodies.com/site/uploads/images/graphics/CSV_Improved_Workflow.png" alt="" width="434" height="562" /></a></p>
<p><strong>Joomla</strong> is one of the leading open source CMS (content management systems) used on the internet to create powerful modular web sites.</p>
<p><strong>VirtueMart</strong> is the leading open source shopping cart solutions that integrates within Joomla as a componet.</p>
<p><strong><a href="http://www.csvimproved.com" target="_blank">CSV Improved</a></strong> is the leading the way to allow VirtueMart shop owners to Import and Export products in mass via a CSV or spread sheet.</p>
<p>VitalBodies create a the graphic above for CSV Improved as a thank you for all the hard work and dedication in making CSV happen right within the Joomla control panel. Adding products within the familar Joomla control panel is much easier than doing everything at the MySQL level.</p>
<p><strong>Visit &#8211; <a href="http://www.csvimproved.com/" target="_blank">CSV Improved</a> &#8211; <a href="http://virtuemart.net/" target="_blank">VirtueMart</a> &#8211; <a href="http://www.joomla.org/" target="_blank">Joomla!</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2010/03/17/csv-improved-work-flow-graphic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copyright Infringement By profilelayouts.com?</title>
		<link>http://www.vitalbodies.com/blog/2010/03/12/copyright-infringement-by-profilelayouts-com/</link>
		<comments>http://www.vitalbodies.com/blog/2010/03/12/copyright-infringement-by-profilelayouts-com/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 21:07:16 +0000</pubDate>
		<dc:creator>VitalBodies</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Copyright Infringement]]></category>
		<category><![CDATA[Inkscape]]></category>
		<category><![CDATA[profilelayouts]]></category>
		<category><![CDATA[profilelayouts.com]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1644</guid>
		<description><![CDATA[Is this copyright Infringement By profilelayouts.com? If it is, it is sad to see such blatant copyright infringement. Then to see the infringer inviting others to also steal ones image, and then taking it even further by automating the process and making it seem cool is, well, I imagine the courts will be the judge [...]]]></description>
			<content:encoded><![CDATA[<p>Is this copyright Infringement By profilelayouts.com? If it is, it is sad to see such blatant copyright infringement. Then to see the infringer inviting others to also steal ones image, and then taking it even further by automating the process and making it seem cool is, well, I imagine the courts will be the judge if very many artists see their hard work on the site.</p>
<p>Here are my (possibly) stolen images of a cartoon I drew for a blog article using Inkscape:</p>
<p><a href="http://www.vitalbodies.com/blog/wp-content/uploads/2010/03/Screenshot_VitalBodies_profilelayouts.png"><img class="aligncenter size-medium wp-image-1649" title="Screenshot_VitalBodies_profilelayouts" src="http://www.vitalbodies.com/blog/wp-content/uploads/2010/03/Screenshot_VitalBodies_profilelayouts-300x231.png" alt="" width="300" height="231" /></a></p>
<p>TWITTER LAYOUTS: <a href="http://m.profilelayouts.com/twitterlayouts/vitalbodiescartoon2007.html">http://m.profilelayouts.com/twitterlayouts/vitalbodiescartoon2007.html</a></p>
<p>HI5 LAYOUTS: <a href="http://m.profilelayouts.com/hi5layouts/vitalbodiescartoon2007.html">http://m.profilelayouts.com/hi5layouts/vitalbodiescartoon2007.html</a></p>
<p>MYSPACE LAYOUTS: <a href="http://m.profilelayouts.com/myspacelayouts/vitalbodiescartoon2007.html">http://m.profilelayouts.com/myspacelayouts/vitalbodiescartoon2007.html</a></p>
<p>FRIENDSTER LAYOUTS: <a href="http://m.profilelayouts.com/friendsterlayouts/vitalbodiescartoon2007.html">http://m.profilelayouts.com/friendsterlayouts/vitalbodiescartoon2007.html</a></p>
<p>Here is the real image: <a href="http://www.vitalbodies.com/blog/2008/07/19/vitalbodies-cartoon-the-sunday-comics-edition/">http://www.vitalbodies.com/blog/2008/07/19/vitalbodies-cartoon-the-sunday-comics-edition/</a></p>
<p>The site seems to offer no easy way for artists to have their work removed and no way to contact the site owner. They even put a copyright symbol on the bottom of the page &#8211; so they are aware of copyright laws.</p>
<p>WHO IS: <a href="http://whois.domaintools.com/profilelayouts.com">http://whois.domaintools.com/profilelayouts.com</a></p>
<p>Wiki: <a href="http://www.aboutus.org/ProfileLayouts.com">http://www.aboutus.org/ProfileLayouts.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2010/03/12/copyright-infringement-by-profilelayouts-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lenovo ThinkPad W700 Mobile Workstation</title>
		<link>http://www.vitalbodies.com/blog/2010/03/07/lenovo-thinkpad-w700-mobile-workstation/</link>
		<comments>http://www.vitalbodies.com/blog/2010/03/07/lenovo-thinkpad-w700-mobile-workstation/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 08:36:37 +0000</pubDate>
		<dc:creator>VitalBodies</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Huey Pro]]></category>
		<category><![CDATA[Lenovo]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[ThinkPad]]></category>
		<category><![CDATA[ThinkStation]]></category>
		<category><![CDATA[W700]]></category>
		<category><![CDATA[Workstation]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1597</guid>
		<description><![CDATA[Lenovo ThinkPad W700 Mobile Workstation We recently got a new w700 Thinkpad. Wow, this is one radical notebook. Some of the more exotic features: WACOM Digitizer Pad on select models Huey Pro integrated Color Calibration Sensor in palm rest on select models Ubuntu works out of the box easy on this system which is awesome [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Lenovo ThinkPad W700 Mobile Workstation</strong></p>
<p>We recently got a new w700 Thinkpad.</p>
<p>Wow, this is one radical notebook.</p>
<p>Some of the more exotic features:</p>
<p>WACOM Digitizer Pad on select models<br />
Huey Pro integrated Color Calibration Sensor in palm rest on select models</p>
<p>Ubuntu works out of the box easy on this system which is awesome &#8211; this Notebook was super easy to get going.</p>
<p>We have not figured out how to get the tablet or color sensor going yet but have yet to try &#8211; do you know?<br />
Here are a few brief hints:<br />
To adjust the screen brightness:<br />
Try Fn END to dim the screen down a notch.<br />
Meaning the function key and then the End key.<br />
Fn Home for brighter.</p>
<p>They have memory for this notebook on Amazon (which was surprising) and this beast takes up to 8GB:<br />
<a href="http://www.amazon.com/gp/product/B002E1VZXO?ie=UTF8&amp;tag=peace09&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002E1VZXO">4GB Memory Upgrade RAM For Lenovo ThinkPad W700 Series</a><img class=" dcaajustrptprkrejkqk dcaajustrptprkrejkqk dcaajustrptprkrejkqk dcaajustrptprkrejkqk dcaajustrptprkrejkqk dcaajustrptprkrejkqk tskzeidmkdfrvyzazmvf tskzeidmkdfrvyzazmvf tskzeidmkdfrvyzazmvf tskzeidmkdfrvyzazmvf tskzeidmkdfrvyzazmvf tskzeidmkdfrvyzazmvf" style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=peace09&amp;l=as2&amp;o=1&amp;a=B002E1VZXO" border="0" alt="" width="1" height="1" /></p>
<p>Keyboard light switch (fn +pgup)</p>
<p>Info on the W700:</p>
<p>ThinkWiki: http://www.thinkwiki.org/wiki/Category:W700</p>
<p>Watcom How To: ﻿http://ubuntuforums.org/showpost.php?p=6546012&amp;postcount=1</p>
<p>We also bought a new Lenovo d10 Thinkstation and that work out of the box easy also in Ubuntu!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2010/03/07/lenovo-thinkpad-w700-mobile-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Art Donation To MakeHuman.org</title>
		<link>http://www.vitalbodies.com/blog/2010/02/12/art-donation-to-makehuman-org/</link>
		<comments>http://www.vitalbodies.com/blog/2010/02/12/art-donation-to-makehuman-org/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 06:07:17 +0000</pubDate>
		<dc:creator>VitalBodies</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Inkscape]]></category>
		<category><![CDATA[MakeHuman]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1591</guid>
		<description><![CDATA[VitalBodies recently created a virtual software box concept for the MakeHuman.org project. Inkscape was used to draw the boxes and GIMP was used to edit the screen captures. Larger Version: http://www.vitalbodies.com/site/uploads/images/graphics/MakeHuman_Boxes_V1_1920x1080_2.png]]></description>
			<content:encoded><![CDATA[<p>VitalBodies recently created a virtual software box concept for the MakeHuman.org project.</p>
<p>Inkscape was used to draw the boxes and GIMP was used to edit the screen captures.</p>
<p style="text-align: center;"><a href="http://www.vitalbodies.com/site/uploads/images/graphics/MakeHuman_Boxes_V1_1920x1080_2.png"><img class="aligncenter size-full wp-image-1592" title="MakeHuman Virtual Software Boxes" src="http://www.vitalbodies.com/blog/wp-content/uploads/2010/02/MakeHuman_Boxes_V1_1920x1080_4.png" alt="" width="400" height="225" /></a></p>
<p>Larger Version: <a href="http://www.vitalbodies.com/site/uploads/images/graphics/MakeHuman_Boxes_V1_1920x1080_2.png">http://www.vitalbodies.com/site/uploads/images/graphics/MakeHuman_Boxes_V1_1920x1080_2.png</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2010/02/12/art-donation-to-makehuman-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting MakeHuman Up And Running In Ubuntu</title>
		<link>http://www.vitalbodies.com/blog/2010/01/09/getting-makehuman-to-run-in-ubuntu/</link>
		<comments>http://www.vitalbodies.com/blog/2010/01/09/getting-makehuman-to-run-in-ubuntu/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 02:00:43 +0000</pubDate>
		<dc:creator>VitalBodies</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[3d female]]></category>
		<category><![CDATA[3d male]]></category>
		<category><![CDATA[AQSIS]]></category>
		<category><![CDATA[digital actor]]></category>
		<category><![CDATA[MakeHuman]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1550</guid>
		<description><![CDATA[Getting MakeHuman Up And Running In Ubuntu Larger Version: http://www.vitalbodies.com/site/uploads/images/graphics/MakeHuman_Boxes_V1_1920x1080_2.png MakeHuman(TM) is an open source (so it&#8217;s completely free), innovative and professional software for the modelling of 3-Dimensional humanoid characters. Features that make this software unique include a new, highly intuitive GUI and a high quality mesh, optimized to work in subdivision surface mode (for [...]]]></description>
			<content:encoded><![CDATA[<p>Getting MakeHuman Up And Running In Ubuntu</p>
<p style="text-align: center;"><a href="http://www.vitalbodies.com/site/uploads/images/graphics/MakeHuman_Boxes_V1_1920x1080_2.png"><img class="aligncenter" title="MakeHuman Virtual Software Boxes" src="http://www.vitalbodies.com/blog/wp-content/uploads/2010/02/MakeHuman_Boxes_V1_1920x1080_4.png" alt="" width="400" height="225" /></a></p>
<p style="text-align: center;">Larger Version: <a href="http://www.vitalbodies.com/site/uploads/images/graphics/MakeHuman_Boxes_V1_1920x1080_2.png">http://www.vitalbodies.com/site/uploads/images/graphics/MakeHuman_Boxes_V1_1920x1080_2.png</a></p>
<blockquote>
<p style="text-align: center;">MakeHuman(TM) is an open source (so it&#8217;s completely free), innovative and professional software for the modelling of 3-Dimensional humanoid characters. Features that make this software unique include a new, highly intuitive GUI and a high quality mesh, optimized to work in subdivision surface mode (for example, Zbrush). Using MakeHuman, a photorealistic character can be modeled in less than 2 minutes; MakeHuman is released under an Open Source Licence (GPL3.0) , and is available for Windows, Mac OS X and Linux.</p>
</blockquote>
<p>To get the nightly builds to automatically update on your system add these lines to your software sources:</p>
<p>System &gt; Administration &gt; Software Sources &gt; Other Software &gt; Add</p>
<p><strong>For 32-bit: </strong></p>
<pre>http://download.tuxfamily.org/makehuman/deb/i386/</pre>
<p><strong>For 64-bit:</strong></p>
<pre>http://download.tuxfamily.org/makehuman/deb/amd64/</pre>
<p><strong>Installing MakeHuman: </strong>(The deb name for nightly builds is &#8220;makehuman&#8221;. The deb name for alpha releases is &#8220;makehuman-alpha&#8221;.)</p>
<p>Nightly builds: The developer version(s) for people who are actually building or testing the software (makehuman).<br />
makehuman-alpha: What is needed to get the current alpha version.<br />
Stable version: Not available yet &#8211; software is still in alpha.<br />
Current non-developer version (end user): makehuman-alpha</p>
<p>In the Terminal (Applications &gt; Terminal) paste this command and hit enter for the end user version:</p>
<pre>apt-get install makehuman-alpha</pre>
<p>In the Terminal (Applications &gt; Terminal) paste this command and hit enter for the developer version:</p>
<pre>apt-get install makehuman-nightly</pre>
<p>Note: The makehuman-nightly and makehuman-alpha debs are mutually exclusive, so installing one on the system will remove the other.</p>
<p><strong>Add missing folders: </strong></p>
<p>You will need to add these folders to usr/local/makehuman to make the program work: (at the time of this post these folders were needed)</p>
<p>models (This allows SAVE to function properly)</p>
<p>exports (This allows EXPORT to function properly)</p>
<p><strong>Create folders in your home folder for your saved work and exported models: </strong></p>
<p>Note: Alpha 5 with do this automatically.<strong><br />
</strong></p>
<pre>mkdir ~/models
mkdir ~/exports

cd /usr/local/makehuman
sudo ln -sf /home/<code>replace-with-user-name</code>/models models
sudo ln -sf /home/<code>replace-with-user-name</code>/exports exports</pre>
<p><strong>For the nightly version: </strong></p>
<pre>
<pre>cd /usr/share/makehuman
sudo ln -sf /home/<code>replace-with-user-name</code>/models models
sudo ln -sf /home/<code>replace-with-user-name</code>/exports exports</pre>
</pre>
<p><strong>Start MakeHuman: </strong></p>
<p>In the Terminal (Applications &gt; Terminal) paste this command and hit enter:</p>
<pre>cd /usr/local/makehuman &amp;&amp; ./makehuman</pre>
<p><strong>For the nightly version: </strong></p>
<pre>
<pre>cd /usr/share/makehuman &amp;&amp; ./makehuman</pre>
</pre>
<p><strong>AQSIS: </strong>Make sure you completely remove AQSIS 1.2 and install AQSIS 1.6 or newer in the System &gt; Administration &gt; Synaptic Package Manager  so that make human renders properly.</p>
<p>Check what version you have:</p>
<pre>aqsl -version</pre>
<p>Where to find the newest version: (You will need libaqsis and aqsis in that order)</p>
<p><a href="http://sourceforge.net/projects/aqsis/files/">http://sourceforge.net/projects/aqsis/files/</a></p>
<p>Once downloaded you can install them with a right click and then &#8211; Open with Gdebi Package installer &#8211; or the like.</p>
<p><strong>Shaders:</strong> If you need to recompile the shaders (because the renders do not look correct) to the newest version of AQSIS once you have installed that version paste this in the terminal and hit Enter:</p>
<pre>cd /usr/local/makehuman/data/shaders/renderman</pre>
<p>Then:</p>
<pre>sudo aqsl hair.sl
sudo aqsl lightmap.sl
sudo aqsl onlyci.sl
sudo aqsl scatteringtexture.sl
sudo aqsl shadowspot.sl
sudo aqsl skin.sl</pre>
<p>I was able to get them recompiled using this method.</p>
<p>The other way that is suggested to to delete the 6 .sl files in the  /usr/local/makehuman/data/shaders/renderman folder and restart MakeHuman.</p>
<p><strong>OTHER NOTES: </strong>You should be able to render (in color) and export a mesh with the current Makehuman-alpha version (Alpha4) or later. <strong><br />
</strong></p>
<p><strong>Resources: </strong></p>
<p><strong>MakeHuman Site:</strong> <a href="http://www.makehuman.org">http://www.makehuman.org</a></p>
<p><strong>MakeHuman Forums:</strong> <a href="http://www.makehuman.org/forum/">http://www.makehuman.org/forum/</a></p>
<p><strong>MakeHuman Docs:</strong> <a href="http://sites.google.com/site/makehumandocs/Home">http://sites.google.com/site/makehumandocs/Home</a></p>
<p><strong>To Export MakeHuman To Blender:</strong> http://sites.google.com/site/makehumandocs/blender-export-and-mhx</p>
<p><strong>MakeHuman Blog:</strong> <a href="http://makehuman.blogspot.com/">http://makehuman.blogspot.com/</a></p>
<p style="text-align: center;">-</p>
<p style="text-align: center;">VitalBodies would like to thank the MakeHuman team (and Joel Palmius, aka joepal on MH forums for the deb files for Ubuntu) for all of your efforts!</p>
<p style="text-align: center;"><a href="http://vitalbodies.com/site/uploads/images/buttons/MakeHuman.png"><img class="aligncenter size-full wp-image-1567" title="MakeHuman" src="http://www.vitalbodies.com/blog/wp-content/uploads/2010/01/MakeHuman.png" alt="" width="100" height="100" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2010/01/09/getting-makehuman-to-run-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting OpenOffice To Play Nice With Ebay File Exchange</title>
		<link>http://www.vitalbodies.com/blog/2009/06/21/getting-openoffice-to-play-nice-with-ebay-file-exchange/</link>
		<comments>http://www.vitalbodies.com/blog/2009/06/21/getting-openoffice-to-play-nice-with-ebay-file-exchange/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 20:31:59 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[File Exchange]]></category>
		<category><![CDATA[Keith's Online Sales]]></category>
		<category><![CDATA[Openoffice]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1508</guid>
		<description><![CDATA[Getting OpenOffice To Play Nice With Ebay File Exchange VitalBodies recently made the transition from listing items on ebay one by one, to using File Exchange to do bulk uploading and editing of listings. Not being familiar with Spreadsheet programs like OpenOffice, spread sheets or File Exchange presented a rather steep learning curve. In fact, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Getting OpenOffice To Play Nice With Ebay File Exchange</strong></p>
<p>VitalBodies recently made the transition from listing items on ebay one by one, to using File Exchange to do bulk uploading and editing of listings. Not being familiar with Spreadsheet programs like OpenOffice, spread sheets or File Exchange presented a rather steep learning curve. In fact, the learning curve was so steep at some points it seemed more like a brick wall with no way to pass through. With a LOT of help from the kind staff at Ebay (thank you Cheyenne V) we were able to create a file of some of our listings that would at least upload. Where the next set of problems began is that upon opening the file and making the most simple change (like changing the shipping weight of an item) and saving the file, it would no longer upload.</p>
<p><span style="color: #ff0000;"><strong>An unknown Error has occurred try again later.</strong></span></p>
<p>Our CSV (at the time) was the default comma separated spread sheet that used the quote (&#8220;) as the text delimiter and Unicode (UTF-8) character set. Within OpenOffice the spread sheet looked perfect. When the staff at ebaY would examine the file in Excel the spread sheet look perfect to them also. Their main comment was always &#8220;you just need to make sure the zip code column is set to custom rather than number so that it will preserve zip codes that start with a zero. When we do that the file uploads fine.</p>
<p>So around and around we went, trying to upload, and having the file fail, and then sending the file back to ebaY, and them sending it back again saying it was fine.</p>
<p>Finally <a id="ebay-contact-link" title="angelesbrotherscycles" href="http://forums.ebay.com/contactUser.jspa?requested=angelesbrotherscycles" target="_blank">angelesbrotherscycles</a> in the forums said:</p>
<blockquote><p>Here&#8217;s 2 annoying things about your situation:</p>
<p>1)  OpenOffice apparently will always double quote everything.  The double quotes are fine &#8211; except that&#8230;.</p>
<p>2) File Exchange seems to not like double quotes in the first line &#8211; probably because they mean something special for setting defaults.</p>
<p>Open the file you&#8217;re going to upload in something other than OpenOffice, remove the double quotes (you can find / replace the &#8221; character with nothing), and try uploading.</p></blockquote>
<p>We tried that and could not get the problem to go away but it was clear they were onto something. If you opened the spreadsheet in a text editor there were lots more &#8221; than the file ebaY would send back out of Excel.</p>
<p>One other clue that was pointed out is that OpenOffice does not open a CSV, instead it seems to import it. Thus you have to select (every time) your delimiters.</p>
<p>Unfortunately though we had hit our limit, we had been trying for so so long. Plus we do not know OpenOffice all that well and the intricate ins and outs of File Exchange.</p>
<p>Then came Keith&#8217;s Online Sales to the rescue!</p>
<p style="text-align: left;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_8.png" alt="" width="310" height="90" /></a>Keith agreed to look over our file and see if he could get it to upload. After some time and effort the file would upload yet would get a 100% failure rate with parsing errors.</p>
<p style="text-align: left;">This was a break through, because at least the file would upload!</p>
<p style="text-align: left;">He took the file even further and got it to upload with a 100% success rate!</p>
<p style="text-align: left;">Wow, what a HUGE break through! We were so excited!</p>
<p style="text-align: left;">Next we just needed to test the file on our own and make sure we could OPEN, EDIT and SAVE the file without breaking it again.</p>
<p style="text-align: left;">With careful instruction we were able to.</p>
<p style="text-align: left;">The trick was to make the file TAB delimited with no text delimiter at all.</p>
<p style="text-align: left;">The fields that needed to be TEXT (like the title and description) had to have the &#8221; added manually in the field within the spreadsheet like this: &#8220;Futon Mattress TWIN 3&#8243;&#8221; Pure Virgin Wool Organic Cotton &#8220;.</p>
<p style="text-align: left;">Note how the 3&#8243; (three inches) has to have a second &#8221; and the whole text phrase has to be within &#8220;&#8221;.</p>
<p style="text-align: left;">Obviously you have to have all the required headers and such as required by ebaY, but we had already been down that road earlier and our file was compliant.</p>
<p style="text-align: left;">As a thank you VitalBodies made Keith some new fun logos and graphics for his ebay store:</p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_0.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_1.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_2.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_3.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_4.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_5.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_6.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_7.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_8.png" alt="keiths online sales" width="310" height="90" /></a></p>
<p style="text-align: center;"><a href="http://stores.ebay.com/id=201020658"><img class="aligncenter" title="keiths online sales" src="http://www.vitalbodies.com/site/uploads/images/graphics/keiths_online_sales_9.png" alt="keiths online sales" width="310" height="90" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2009/06/21/getting-openoffice-to-play-nice-with-ebay-file-exchange/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Postie Email Blogging Plug-in Appreciation Graphics</title>
		<link>http://www.vitalbodies.com/blog/2009/06/20/postie-email-blogging-plug-in-appreciation-graphics/</link>
		<comments>http://www.vitalbodies.com/blog/2009/06/20/postie-email-blogging-plug-in-appreciation-graphics/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 21:09:55 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Appreciation]]></category>
		<category><![CDATA[Bitstream Vera Sans]]></category>
		<category><![CDATA[email blogging]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Impossibilium BRK]]></category>
		<category><![CDATA[Inkscape]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[postie]]></category>
		<category><![CDATA[Robert Felty]]></category>
		<category><![CDATA[robfelty.com]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1498</guid>
		<description><![CDATA[Postie Email Blogging Plug-in Appreciation Graphics VitalBodies likes Postie for email blogging and wanted to create some appreciation graphics to show our support! Which is your favorite? VitalBodies is not associated with Postie, we just like the plug-in and secretly made some fun graphics as a show of support. Which one did robfelty.com like the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Postie Email Blogging Plug-in Appreciation Graphics</strong></p>
<p>VitalBodies likes Postie for email blogging and wanted to create some appreciation graphics to show our support!</p>
<p>Which is your favorite?</p>
<p><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_200x200_0.png" alt="" width="200" height="200" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_200x200_1.png" alt="" width="200" height="200" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_200x200_2.png" alt="" width="200" height="200" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_200x200_3.png" alt="" width="200" height="200" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_200x200_5.png" alt="" width="200" height="200" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_200x200_6.png" alt="" width="200" height="200" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_200x200_7.png" alt="" width="200" height="200" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_200x200_8.png" alt="" width="200" height="200" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_100x100_8.png" alt="" width="100" height="100" /></a></p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_100x100_7.png" alt="" width="100" height="100" /></a></p>
<p style="text-align: center;">VitalBodies is not associated with Postie, we just like the plug-in and secretly made some fun graphics as a show of support.</p>
<p style="text-align: center;">Which one did robfelty.com like the best? The winner is, number 7!</p>
<p style="text-align: center;"><a href="http://blog.robfelty.com/plugins/postie/"><img class="aligncenter" title="Postie Email Blogging Plug-in For WordPress" src="http://www.vitalbodies.com/site/uploads/images/graphics/postie_100x100_7.png" alt="" width="100" height="100" /></a>Created in Inkscape &#8211; Fonts are Bitstream Vera Sans and Impossibilium BRK.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2009/06/20/postie-email-blogging-plug-in-appreciation-graphics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtueMart, Joomla and CSV Improved Team Work</title>
		<link>http://www.vitalbodies.com/blog/2009/06/15/virtuemart-joomla-and-csv-improved-team-work/</link>
		<comments>http://www.vitalbodies.com/blog/2009/06/15/virtuemart-joomla-and-csv-improved-team-work/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 18:20:10 +0000</pubDate>
		<dc:creator>vitalbodies</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[CSV Improved]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Team Work]]></category>
		<category><![CDATA[VirtueMart]]></category>

		<guid isPermaLink="false">http://www.vitalbodies.com/blog/?p=1490</guid>
		<description><![CDATA[VirtueMart, Joomla and CSV Improved Team Work Joomla is one of the leading open source CMS (content management systems) used on the internet to create powerful modular web sites. VirtueMart is the leading open source shopping cart solutions that integrates within Joomla as a componet. CSV Improved is the leading the way to allow VirtueMart [...]]]></description>
			<content:encoded><![CDATA[<p><strong>VirtueMart, Joomla and CSV Improved Team Work</strong></p>
<div class="wp-caption aligncenter" style="width: 444px"><a href="http://www.vitalbodies.com/site/uploads/images/graphics/CSV_Improved_Team_Work.png"><img title="VirtueMart, Joomla and CSV Improved" src="http://www.vitalbodies.com/site/uploads/images/graphics/CSV_Improved_Team_Work.png" alt="" width="434" height="562" /></a><p class="wp-caption-text">Click image for a larger version</p></div>
<p style="text-align: left;"><strong>Joomla</strong> is one of the leading open source CMS (content management systems) used on the internet to create powerful modular web sites.</p>
<p><strong>VirtueMart</strong> is the leading open source shopping cart solutions that integrates within Joomla as a componet.</p>
<p><strong><a href="http://www.csvimproved.com" target="_blank">CSV Improved</a></strong> is the leading the way to allow VirtueMart shop owners to Import and Export products in mass via a CSV or spread sheet.</p>
<p>VitalBodies create a the graphic above for CSV Improved as a thank you for all the hard work and dedication in making CSV happen right within the Joomla control panel. Adding products within the familar Joomla control panel is much easier than doing everything at the MySQL level.</p>
<p style="text-align: center;"><strong>Visit &#8211; <a href="http://www.csvimproved.com/" target="_blank">CSV Improved</a> &#8211; <a href="http://virtuemart.net/" target="_blank">VirtueMart</a> &#8211; <a href="http://www.joomla.org/" target="_blank">Joomla!</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vitalbodies.com/blog/2009/06/15/virtuemart-joomla-and-csv-improved-team-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

