<?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>WorkflowFAQ &#187; Non-Oracle</title>
	<atom:link href="http://www.workflowfaq.com/category/non-oracle/feed" rel="self" type="application/rss+xml" />
	<link>http://www.workflowfaq.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 07:00:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to permanently mount a SAMBA drive under Linux</title>
		<link>http://www.workflowfaq.com/how-to-permanently-mount-a-samba-drive-under-linux</link>
		<comments>http://www.workflowfaq.com/how-to-permanently-mount-a-samba-drive-under-linux#comments</comments>
		<pubDate>Fri, 11 Nov 2011 17:47:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=649</guid>
		<description><![CDATA[A while back, I bought a QNAP NAS drive for backing up my server and other machines which are attached to the network. &#160;Having created a number of shared folders on the NAS, I had shortcuts to them available to me via SAMBA, but I wanted to configure my desktop machine so that the folders [...]]]></description>
			<content:encoded><![CDATA[<p>A while back, I bought a QNAP NAS drive for backing up my server and other machines which are attached to the network. &nbsp;Having created a number of shared folders on the NAS, I had shortcuts to them available to me via SAMBA, but I wanted to configure my desktop machine so that the folders were permanently mounted.</p>
<p>So, the first step was to make sure that SMBFS was installed and up to date:</p>
<pre class="code">sudo apt-get install smbfs</pre>
<p>Once the installation was complete, rather than store the connection details in plain sight, I wrote a text file which would contain the details</p>
<pre class="code">sudo gedit .nascredentials</pre>
<p>The text file includes the user name and password to connect to the NAS (which are different from my Linux username and password):</p>
<pre class="code">username=mynasuser
password=mynaspassword</pre>
<p>To make sure that the file was then restricted, I changed the access permissions for the credentials file so that only root user could read it</p>
<pre class="code">sudo chmod 600 .nascredentials</pre>
<p>The next step was to create a mount point folder, which was accessible to any user on the system</p>
<pre class="code">sudo mkdir /media/nas

sudo chmod 777 /media/nas</pre>
<p>After this, I edited the&nbsp;fstab&nbsp;file to include the mounting commands (note that the text should all be on one line, but I&#8217;ve had to include line breaks here for formatting reasons!)</p>
<pre class="code">sudo gedit /etc/fstab

//&lt;NAS IP Address&gt;/backups /media/nas cifs
  credentials=/home/myuser/.nascredentials,dir_mode=0777,
  file_mode=0777,umask=000,uid=myuser 0 0</pre>
<p>This does rely on the NAS drive having a fixed IP address, and &#8220;backups&#8221; is the name of the samba share name.</p>
<p>Finally, rather than reboot, I only had to execute the following command to mount the new share</p>
<pre class="code">sudo mount -a</pre>
<p>If&nbsp;the NAS is not switched on when the computer starts, then the drive won&#8217;t be mounted &#8211; if that happens, then I just need to run the last command to mount the folder again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/how-to-permanently-mount-a-samba-drive-under-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Different Software Licencing Methods</title>
		<link>http://www.workflowfaq.com/different-software-licencing-methods</link>
		<comments>http://www.workflowfaq.com/different-software-licencing-methods#comments</comments>
		<pubDate>Tue, 07 Dec 2010 14:24:31 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[licencing]]></category>
		<category><![CDATA[poor code]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=480</guid>
		<description><![CDATA[Just a quick post on the different ways that I&#8217;ve seen software companies delivering their software to the client. In an ideal world, there are two main ways to do this.  Quite often, a company might choose to sell the software that they produce for a client, delivering a (hopefully!) working application and the source [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick post on the different ways that I&#8217;ve seen software companies delivering their software to the client.</p>
<p>In an ideal world, there are two main ways to do this.  Quite often, a company might choose to sell the software that they produce for a client, delivering a (hopefully!) working application and the source code.  Typically in this scenario, there is no major reason for the company to retain any rights to the code they wrote for the client, because the software has been customised to such an extent that it is only useful for one client.</p>
<p>In some other situations, though, companies might choose to license the software to the client.  The company retains all ownership of the software, and they might provide regular bug updates and patches in exchange for a licence fee.</p>
<p>The third example, which I have unfortunately seen in a number of places over the years, sort of merges these two models together.  The client pays for the source code, receives a &#8220;working&#8221; application and the code, but it is written in such a poor manner that if anyone other than the original developer worked on it, they would rapidly go insane!</p>
<p>Sadly, I&#8217;ve seen that third model occur more often than I would like to!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/different-software-licencing-methods/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading SQL files to WordPress</title>
		<link>http://www.workflowfaq.com/uploading-sql-files-to-wordpress</link>
		<comments>http://www.workflowfaq.com/uploading-sql-files-to-wordpress#comments</comments>
		<pubDate>Thu, 07 Oct 2010 21:32:07 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[file extensions]]></category>
		<category><![CDATA[mime]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[security guidelines]]></category>
		<category><![CDATA[uploads]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=425</guid>
		<description><![CDATA[As part of my recent search through my SQL archive in my last two posts, I wanted to add the actual SQL files to the post, but WordPress didn&#8217;t recognize the file format so it wouldn&#8217;t accept it &#8211; I kept hitting the error &#8220;File Type does not meet security guidelines&#8221; I&#8217;ve since made some [...]]]></description>
			<content:encoded><![CDATA[<p>As part of my recent search through my SQL archive in my last two posts, I wanted to add the actual SQL files to the post, but WordPress didn&#8217;t recognize the file format so it wouldn&#8217;t accept it &#8211; I kept hitting the error &#8220;File Type does not meet security guidelines&#8221; <img src='http://www.workflowfaq.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I&#8217;ve since made some changes to the WordPress code which should allow me to attach the files, but have struggled to make it so that my changes won&#8217;t get wiped out when I upgrade the blog next time.</p>
<p>The way that I&#8217;ve got round this is to make a quick change to the file functions.php within the theme that I&#8217;m using.  By adding the code below to the existing PHP that was already in the functions.php file, my blog now allows me to upload text files with different extensions.  This can be extended further (if I need / want to) by adding different extensions and different MIME types to the code:</p>
<pre class="code">add_filter('upload_mimes', 'addExtraMimes');

function addExtraMimes($mimes)
{
  $mimes = array_merge($mimes, array('sql|pkg|pks|pkb|pkh|wft' => 'plain/text'));

  return $mimes;
}</pre>
<p>Hope you find that useful &#8211; at least I know where to come back to if I need this on my other blogs!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/uploading-sql-files-to-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Follow up to Enabling sound on an Acer TravelMate 3000 under Linux Mint</title>
		<link>http://www.workflowfaq.com/follow-up-to-enabling-sound-on-an-acer-travelmate-3000-under-linux-mint</link>
		<comments>http://www.workflowfaq.com/follow-up-to-enabling-sound-on-an-acer-travelmate-3000-under-linux-mint#comments</comments>
		<pubDate>Fri, 24 Sep 2010 10:19:09 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[acer]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mint]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=393</guid>
		<description><![CDATA[I know it&#8217;s been ages since the last post, but I&#8217;ve been pretty manic &#8211; sorry. Just a quick follow up to my April post about switching sound on on my old TravelMate 3000 on Linux Mint&#8230;.. The hard drive crashed last week and had to be binned, so I replaced it with an old [...]]]></description>
			<content:encoded><![CDATA[<p>I know it&#8217;s been ages since the last post, but I&#8217;ve been pretty manic &#8211; sorry.</p>
<p>Just a quick follow up to my April post about <a href="http://www.workflowfaq.com/enabling-sound-on-an-acer-travelmate-3000-under-linux-mint">switching sound on on my old TravelMate 3000 on Linux Mint</a>&#8230;..</p>
<p>The hard drive crashed last week and had to be binned, so I replaced it with an old one I had kicking about (which may not last too long, either!).  I downloaded Linux Mint 9 from the official site and installed it from the DVD.</p>
<p>And the sound worked fine with no need to do anything else!</p>
<p>Top work from the Mint guys &#8211; saved me from hacking about again to get sound working <img src='http://www.workflowfaq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/follow-up-to-enabling-sound-on-an-acer-travelmate-3000-under-linux-mint/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enabling sound on an Acer TravelMate 3000 under Linux Mint</title>
		<link>http://www.workflowfaq.com/enabling-sound-on-an-acer-travelmate-3000-under-linux-mint</link>
		<comments>http://www.workflowfaq.com/enabling-sound-on-an-acer-travelmate-3000-under-linux-mint#comments</comments>
		<pubDate>Wed, 07 Apr 2010 20:56:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[acer]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[travelmate]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=361</guid>
		<description><![CDATA[Since the Foehn &#38; Hirsch laptop was a bit of a fiasco, I decided to re-use an old laptop of mine that I&#8217;ve had kicking around for a while.  I bought an Acer TravelMate 3000 about four years ago now, because it was the best spec that I could find.  I can&#8217;t remember the spec [...]]]></description>
			<content:encoded><![CDATA[<p>Since the <a href="http://www.workflowfaq.com/foehn-hirsch-laptop-and-linux">Foehn &amp; Hirsch laptop</a> was a bit of a fiasco, I decided to re-use an old laptop of mine that I&#8217;ve had kicking around for a while.  I bought an Acer TravelMate 3000 about four years ago now, because it was the best spec that I could find.  I can&#8217;t remember the spec off the top of my head, but I remember the hard drive being over 100GB (huge in those days) and I&#8217;ve since doubled the memory to 2GB to make it last a bit longer.  It&#8217;s been running Windows XP Professional since I got it, and that&#8217;s been fine, but as I said in the original post about the F&amp;H laptop, my wife was so taken with my Linux Mint laptop, so I decided to rebuild it from scratch.</p>
<p>Firstly, I downloaded the 32-bit version of Linux Mint 8 from <a href="http://www.linuxmint.com/edition.php?id=44">their website</a>, as the version I used to build this laptop was the 64-bit and the old laptop doesn&#8217;t support 64-bit architecture.  I burned the image to disc using <a href="http://en.wikipedia.org/wiki/Brasero_%28software%29">Brasero</a>, stuck it in the external DVD drive that came with the laptop, and booted it up.</p>
<p>As I&#8217;ve found on every system that I&#8217;ve built with Linux (Mint or Ubuntu) apart from the Foehn &amp; Hirsch one, there were no problems &#8211; or certainly no obvious ones.  The screen resolution was fine, the wireless network connected immediately (including the light on the front of the laptop working correctly), everything I checked was fine &#8211; so I reformatted the hard drive and replaced XP with Mint.</p>
<p>I then went off to work (I was away for a couple of days), and the girls told me that there was no sound working &#8211; the children want to watch childrens programs on <a href="http://www.bbc.co.uk/iplayer/">iPlayer</a>, play on <a href="http://www.bbc.co.uk/cbeebies/">CBeebies</a> and watch <a href="http://video.google.com/videoplay?docid=-9011258971526126149#">YouTube</a> and the like.  I thought that it would be something really obvious like the speaker just being muted, but there was just nothing working.  So, when I got home, I thought &#8220;this will be straight forward and take a couple of seconds&#8230;&#8221;</p>
<p>After about half an hour, I managed to track down the problem &#8211; the modem seemed to be conflicting with the soundcard (I think).  Here&#8217;s how I found the source of the problem and resolved it.</p>
<p><span id="more-361"></span>Looking at the sound preferences, I checked the hardware tab and found that there was no hardware device listed there.  Instead of something that indicated a sound card (my Toshiba says &#8220;Internal Audio Analog Stereo&#8221; for example), it just said &#8220;Dummy Output&#8221;.  The sound was pseudo-showing &#8211; although there was no sound coming out of the laptop, there were bars showing where the sound <em><strong>would</strong></em> have come out.</p>
<p>From a command prompt, I checked the devices that were installed in the laptop:</p>
<pre class="code">lspci -v</pre>
<p>Amongst the list of devices, the sound card appeared, so at least Mint was recognising that the hardware was there:</p>
<pre class="code">00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family)
     High Definition Audio Controller (rev 04)
Subsystem: Acer Incorporated [ALI] Device 0067
Flags: bus master, fast devsel, latency 0, IRQ 16
Memory at d000c000 (64-bit, non-prefetchable) [size=16K]
Capabilities: &lt;access denied&gt;
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel

00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family)
     High Definition Audio Controller (rev 04)
Subsystem: Acer Incorporated [ALI] Device 0067
Flags: bus master, fast devsel, latency 0, IRQ 16
Memory at d000c000 (64-bit, non-prefetchable) [size=16K]
Capabilities: &lt;access denied&gt;
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel</pre>
<p>Next step was to check the drives were there using modprobe:</p>
<pre class="code">sudo modprobe snd_intel8x0m</pre>
<p>Using pgrep, check whether the simodemd daemon is running or not:</p>
<pre class="code">pgrep slmodemd</pre>
<p>Since the daemon was running, I then removed it from the laptop using apt-get:</p>
<pre class="code">sudo apt-get remove sl-modem-daemon</pre>
<p>That was all there was too it &#8211; as soon as I removed the modem daemon, the sound started.  I would like to say that all this was the upshot of my Linux knowledge, but it wasn&#8217;t <img src='http://www.workflowfaq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   A lot of the suggestions of how to solve the problem can be found <a href="http://www.unixmen.com/linux-tutorials/525-resolve-nosound-problem-on-ubuntu910-karmic-koala">here</a>.</p>
<p>I just wanted to write up my instructions so that if it happens again, I&#8217;ll know exactly where to find the answer.  I couldn&#8217;t find anything that specifically referenced my exact laptop model.  Hopefully, someone else might find this useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/enabling-sound-on-an-acer-travelmate-3000-under-linux-mint/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Foehn &amp; Hirsch laptop &#8211; follow up</title>
		<link>http://www.workflowfaq.com/foehn-hirsch-laptop-follow-up</link>
		<comments>http://www.workflowfaq.com/foehn-hirsch-laptop-follow-up#comments</comments>
		<pubDate>Wed, 07 Apr 2010 19:50:35 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[ebuyer]]></category>
		<category><![CDATA[hirsch]]></category>
		<category><![CDATA[hoehn]]></category>
		<category><![CDATA[laptop]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=364</guid>
		<description><![CDATA[A little while back, I wrote about the new laptop that I had bought from eBuyer. Quick update &#8211; they found that the laptop was faulty when it arrived back and have refunded the cost of the laptop.  I have raised a new customer support note because eBuyer have kept hold of the £9.99 shipping [...]]]></description>
			<content:encoded><![CDATA[<p>A little while back, I <a href="http://www.workflowfaq.com/foehn-hirsch-laptop-and-linux">wrote about the new laptop</a> that I had bought from eBuyer.</p>
<p>Quick update &#8211; they found that the laptop was faulty when it arrived back and have refunded the cost of the laptop.  I have raised a new customer support note because eBuyer have kept hold of the £9.99 shipping costs for sending the faulty unit out to me, which I don&#8217;t believe they should have done.</p>
<p>So far, it has cost £9.99 not to get a working laptop from eBuyer, so the complaint goes on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/foehn-hirsch-laptop-follow-up/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Foehn &amp; Hirsch laptop and Linux</title>
		<link>http://www.workflowfaq.com/foehn-hirsch-laptop-and-linux</link>
		<comments>http://www.workflowfaq.com/foehn-hirsch-laptop-and-linux#comments</comments>
		<pubDate>Sat, 27 Mar 2010 11:54:47 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[avoid]]></category>
		<category><![CDATA[ebuyer]]></category>
		<category><![CDATA[faulty]]></category>
		<category><![CDATA[foehn]]></category>
		<category><![CDATA[hirsch]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mint]]></category>
		<category><![CDATA[poor]]></category>
		<category><![CDATA[poor customer service]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=357</guid>
		<description><![CDATA[Last week, my house was broken into and one of our laptops was stolen.  Not too much of a big deal, since there wasn&#8217;t much data on there (thank goodness for Cloud computing!), and once the insurance assessor visited, I went out and bought a new machine.  Since this was for my wife, I left [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, my house was broken into and one of our laptops was stolen.  Not too much of a big deal, since there wasn&#8217;t much data on there (thank goodness for Cloud computing!), and once the insurance assessor visited, I went out and bought a new machine.  Since this was for my wife, I left her using my Toshiba Portege M800 which runs <a href="http://www.linuxmint.com" target="_blank">Linux Mint 8 x64</a>, just to see what she thought of it and whether she could move from Vista to Linux.</p>
<p>After a few days of it, she was mightily impressed &#8211; there are some nice features of Mint that she liked over Vista, so asked if the replacement could be one that ran Linux.  No problems &#8211; might be a bit cheaper, after all! &#8211; so I hunted down a Foehn &amp; Hirsch laptop on eBuyer.com which was cheap, and came with no OS.  Here&#8217;s the detailed spec:</p>
<p>Processor</p>
<ul>
<li>Intel T3000 Celeron Dual Core Processor 1.8Ghz,</li>
<li>1MB Cache</li>
<li>SIS M672 + 968 Graphics Chipset</li>
</ul>
<p>Memory</p>
<ul>
<li>4GB DDR2 667MHz</li>
<li>2 x SO DIMM</li>
<li>Expandable to 4GB</li>
</ul>
<p>Hard Drive</p>
<ul>
<li>320GB SATA 2.5&#8243;</li>
</ul>
<p>Optical Drive</p>
<ul>
<li>DVD+/-RW Supermulti</li>
</ul>
<p>Software</p>
<ul>
<li>Operating System: No Operating System</li>
</ul>
<p>Display</p>
<ul>
<li>15.6” HD TFT</li>
<li>Resolution: 1366 x 768</li>
</ul>
<p>Graphics</p>
<ul>
<li>SiS M672 Integrated</li>
<li>Shared Memory Architecture 256MB</li>
<li>High Preference 3D/2D graphic Accelerator</li>
<li>Microsoft DirectX 9.0 Compatible</li>
<li>Super Vertex Shader 2.0 and Pixel Shader 2.0</li>
</ul>
<p>Audio</p>
<ul>
<li>High Definition Audio</li>
<li>Compliant With Microsoft UAA</li>
<li>Direct Sound 3D</li>
<li>2 x Built in Speaker</li>
<li>Built in Mic</li>
</ul>
<p>Input Devices</p>
<ul>
<li>Multi Language Keyboard</li>
<li>Touchpad with Scroll zone</li>
</ul>
<p>Networking</p>
<ul>
<li>56K Fax Modem</li>
<li>Built in 10/100MB Base-TX Ethernet LAN</li>
<li>WLAN: 802.11 b/g</li>
</ul>
<p>Power Supply</p>
<ul>
<li>Full Range AC Adapter 65W</li>
<li>AC in 100~240V, 50~60Hz</li>
<li>DC Out 19V, 3.42A / 18.5V, 3.5A</li>
<li>6 Cell Lithium Ion Battery</li>
<li>up to 2.5 hour battery life</li>
</ul>
<p>Dimensions</p>
<ul>
<li>Width 374mm</li>
<li>Depth 256mm</li>
<li>Height 25~37mm</li>
<li>Weight 2.7kg</li>
</ul>
<p>Interfaces</p>
<ul>
<li>3 x USB 2.0 ports</li>
<li>1 x VGA port</li>
<li>1 x Headphone port</li>
<li>1 x Microphone port</li>
<li>1 x S/PDIF output port</li>
<li>1 x RJ-11 port</li>
<li>1 x RJ45 LAN port</li>
<li>1 x DC-in jack</li>
</ul>
<p>Expansion</p>
<ul>
<li>7 in 1 Card Reader (MMC / RSMMC / SD / Mini SD / MS / MS Pro / MS Duo)</li>
<li>1 x Express Card Slot</li>
</ul>
<p>Warranty / Miscellaneous</p>
<ul>
<li>1 Year Manufacturer Warranty</li>
<li>1.3mp Webcam</li>
</ul>
<p>That should be fine, I thought &#8211; keep her in laptops for a while, good spec and should be fine for Linux.  There was nothing anywhere that I could find that said otherwise, apart from a line that said &#8220;Please note that this Laptops does not have an Operating System installed, Ebuyer recommends Genuine Microsoft Software&#8221;</p>
<p>Then, it arrived, and things started to go badly wrong.<span id="more-357"></span><br />
I burned a new copy of Mint onto a CD, using the same ISO that I built this laptop with.  Started the laptop up and it looked OK &#8211; I changed the BIOS so that it said that the OS was Linux, inserted the CD and rebooted.  Mint started OK, but had a poor screen resolution &#8211; nowhere near the started 1366&#215;768, it was 800&#215;600!!  So, I started to install Mint to see if it would change once the newest and best updates were completed.  First time I tried the installation, I left it to it &#8211; came back in the room after a bit to find that the machine had switched itself off.</p>
<p>After that, every time I switched it on, it just kept error beeping for a minute (flashing lights as well) and then switched off.  This included just trying to change the BIOS Settings &#8211; crashed while trying to change them, so it was nothing to do with the OS being installed, or the hard drive or anything like that.  Eventually, I gave up, switched it off and left it for 15 minutes or so.</p>
<p>After a break, it switched on fine, so I installed Mint again from scratch.  Interestingly, when I did the install, it told me that Ubuntu was already installed on the partition, but I scrapped it and started again.  CD-ROM was incredibly slow getting to that stage &#8211; no idea why, but the performance was abysmal.  Anyway &#8211; it got there in the end, I rebooted, logged in and started to configure the network.</p>
<p>Every time the machine reboots, the wireless needs to be manually enabled again, which is a minor thing (compared with the rest of the faults of the machine!), but I managed to get it setup with our wireless network and set it downloading the 218 updates that were required.  Rebooted again once they were all installed, to see if there was any better resolution &#8211; nope, it&#8217;s 800&#215;600 or 600&#215;480 (doesn&#8217;t even recognize that it&#8217;s widescreen!).  There is nothing better than that, which renders the machine practically useless.</p>
<p>When I spoke to eBuyer technical support this morning, they told me that this was a Linux problem, nothing to do with the laptop.  I explained that the same CD had built my Toshiba and was told &#8220;yeah, that&#8217;s a Toshiba, this isn&#8217;t&#8221;.  Well, thanks, I am aware of that &#8211; but I was then told that if I was using Windows it would be fine.  Well, if it was using Windows, it would already be setup, wouldn&#8217;t it &#8211; it would be a decent laptop, I wouldn&#8217;t be wasting my time with it, and it would run.  But, it would run Windows, which is crap.</p>
<p>Anyway, I left it switched off for a bit longer, restarted it, and all I got was an error message saying &#8220;Error loading Operating System&#8221;.  The suggestion from eBuyer was that the laptop clearly isn&#8217;t faulty, clearly is fit for purpose, it&#8217;s just that it needs to be reformatted and have Windows installed on it.</p>
<p>The laptop is back in its box, waiting to be collected by a courier, and we will see whether eBuyer accept that it is faulty or not when it arrives there.  I obviously think that there is something wrong with it (the hard drive fault and the beeping on startup yesterday), they seem to think that Windows is the answer.  Either way, it&#8217;s not staying here &#8211; I&#8217;m off to a computer shop this afternoon to buy a new laptop &#8211; hopefully that one will run Linux!</p>
<p>Edit &#8211; a few more tries at using the laptop returned it to the status of beeping and erroring on start up.  Here&#8217;s two videos which show me attempting to edit the BIOS before the machine switches itself off.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://www.flickr.com/apps/video/stewart.swf?v=71377" /><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=57618fda3e&amp;photo_id=4466350685" /><param name="bgcolor" value="#000000" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/video/stewart.swf?v=71377" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://www.flickr.com/apps/video/stewart.swf?v=71377" allowfullscreen="true" bgcolor="#000000" flashvars="intl_lang=en-us&amp;photo_secret=57618fda3e&amp;photo_id=4466350685" data="http://www.flickr.com/apps/video/stewart.swf?v=71377"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://www.flickr.com/apps/video/stewart.swf?v=71377" /><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=8b5cb7b045&amp;photo_id=4466350671" /><param name="bgcolor" value="#000000" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/video/stewart.swf?v=71377" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://www.flickr.com/apps/video/stewart.swf?v=71377" allowfullscreen="true" bgcolor="#000000" flashvars="intl_lang=en-us&amp;photo_secret=8b5cb7b045&amp;photo_id=4466350671" data="http://www.flickr.com/apps/video/stewart.swf?v=71377"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/foehn-hirsch-laptop-and-linux/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Tom Kyte on How to Ask for Help</title>
		<link>http://www.workflowfaq.com/tom-kyte-on-how-to-ask-for-help</link>
		<comments>http://www.workflowfaq.com/tom-kyte-on-how-to-ask-for-help#comments</comments>
		<pubDate>Sun, 21 Mar 2010 11:24:20 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[my car wont start]]></category>
		<category><![CDATA[rtfm]]></category>
		<category><![CDATA[Tom Kyte]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=355</guid>
		<description><![CDATA[I&#8217;ve just been asked a question which seems to fit the classic Tom Kyte &#8220;my car won&#8217;t start&#8221; scenario &#8211; a few pieces of information (which are of relevance to the asker, who has been looking at it for a while) but there is nothing there that provides any information about what the problem actually [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just been asked a question which seems to fit the classic Tom Kyte &#8220;my car won&#8217;t start&#8221; scenario &#8211; a few pieces of information (which are of relevance to the asker, who has been looking at it for a while) but there is nothing there that provides any information about what the problem actually is.</p>
<p>Here&#8217;s a video from <a href="http://www.zdnet.com.au/how-developers-should-ask-for-help-339299138.htm">ZD Net Australia</a> &#8211; it&#8217;s an interview with Tom about how developers should ask for help:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="270" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.zdnet.com.au/videos/embed/22488727/" /><embed type="application/x-shockwave-flash" width="480" height="270" src="http://www.zdnet.com.au/videos/embed/22488727/" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/tom-kyte-on-how-to-ask-for-help/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Flickr Manager changes for 2.9</title>
		<link>http://www.workflowfaq.com/wordpress-flickr-manager-changes-for-2-9</link>
		<comments>http://www.workflowfaq.com/wordpress-flickr-manager-changes-for-2-9#comments</comments>
		<pubDate>Tue, 12 Jan 2010 12:28:21 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[2.9]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=211</guid>
		<description><![CDATA[I recently started a new blog for my photos, which I&#8217;m starting to advertise for sale through Etsy (links to follow once I have some more things in place ) and I added the WordPress Flickr Manager plugin so that I can easily pull in pictures from my Flickr account into the blog. However, it [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started a new blog for my photos, which I&#8217;m starting to advertise for sale through Etsy (links to follow once I have some more things in place <img src='http://www.workflowfaq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) and I added the WordPress Flickr Manager plugin so that I can easily pull in pictures from my Flickr account into the blog.  However, it didn&#8217;t work with WordPress 2.9 <img src='http://www.workflowfaq.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>So, I made a couple of changes to some files and it seems to be working now &#8211; so, if anyone is having the same problems, here&#8217;s a list of the files that I changed:</p>
<ul>
<li>wordpress-flickr-manager/js/wfm-lightbox.php</li>
<li>wordpress-flickr-manager/js/media-panel.php</li>
<li>wordpress-flickr-manager/js/wfm-hs.php</li>
</ul>
<p>In each of those files, remove any &#8216;@&#8217; characters that are in the files, for example:</p>
<pre class="code">this: wfmJS('a[@rel*=flickr-mgr]').each(function() {
becomes: wfmJS('a[rel*=flickr-mgr]').each(function() {</pre>
<p>Once you have made the changes, the plugin should work fine.</p>
<p>EDIT &#8211; March 15 2010 @1534</p>
<p>I&#8217;ve just had a look at the files that I changed to provide a fuller explanation of what I changed.  I can&#8217;t see what I have changed in the media-panel.php file (just downloaded the plugin again and can&#8217;t find any &#8216;@&#8217; signs in there now), but the changes I made to the other files are:</p>
<pre class="code">wfm-hs.php

Line 13 - wfmJS('a[@rel*=flickr-mgr]').each(function() {
becomes - wfmJS('a[rel*=flickr-mgr]').each(function() {

Line 21 - wfmJS('a[@rel*=flickr-mgr]').each(function() {
becomes- wfmJS('a[rel*=flickr-mgr]').each(function() {

wfm-lightbox.php

Line 58 - wfmJS('a[@rel*=flickr-mgr]').click(function() {
becomes - wfmJS('a[rel*=flickr-mgr]').click(function() {

Line 91 - wfmJS('a[@rel*=flickr-mgr]').each(function(){
becomes - wfmJS('a[rel*=flickr-mgr]').each(function(){
</pre>
<p>I&#8217;ve tested this with WP 2.9.2 this afternoon and it seems fine.</p>
<p><span style="text-decoration: underline;"><strong>UPDATE &#8211; 11th July 2010</strong></span></p>
<p>I&#8217;ve just been looking a bit more at this and have added a few replies to some comments.  I have the plugin working on WP3.0 now &#8211; I made no changes to the version I had before though.  The one thing that doesn&#8217;t work is trying to add photos from a set rather than just from the stream.</p>
<p>When you try to add a photo from a set, it only finds photos that are publicly available.  If the photos are not public, then it doesn&#8217;t find them in the set.  I don&#8217;t know whether this is a problem with the plugin, or a problem with the Flickr API though.  I make most of my photos private, so if I want to add from a set then it&#8217;s a problem &#8211; that said, I have the same problem when adding from Flickr to my photo printing service, which makes me think that the problem lies with the Flickr API rather than the plugin.</p>
<p>Looks like a more in depth examination of the plugin is required &#8211; if I get chance to do it, I will, but I am quite busy with work that brings in money at the moment, rather than coding for fun and hobby.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/wordpress-flickr-manager-changes-for-2-9/feed</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>VMWare user &#8211; eek!</title>
		<link>http://www.workflowfaq.com/vmware-user-eek</link>
		<comments>http://www.workflowfaq.com/vmware-user-eek#comments</comments>
		<pubDate>Fri, 04 Dec 2009 16:26:28 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Non-Oracle]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.workflowfaq.com/?p=196</guid>
		<description><![CDATA[OK &#8211; so now I&#8217;ve got the VMWare default username for logging in. It&#8217;s &#8220;root&#8221;.  EEK! Couple of minor things there &#8211; firstly, I&#8217;m not too keen on just running these things as the root user.  Secondly, not everyone knows the root password.  And thirdly, not everyone changes the root password from the default that [...]]]></description>
			<content:encoded><![CDATA[<p>OK &#8211; so now I&#8217;ve got the VMWare default username for logging in.</p>
<p>It&#8217;s &#8220;root&#8221;.  EEK!</p>
<p>Couple of minor things there &#8211; firstly, I&#8217;m not too keen on just running these things as the root user.  Secondly, not everyone knows the root password.  And thirdly, not everyone changes the root password from the default that is generated when you install Ubuntu.</p>
<p>Now, in Windows, any Windows user can log into the VMWare console.  In order to get that to work under Ubuntu (and I guess every flavour of Linux), you need to edit the configuration file which can be found in /etc/vmware/hostd/authorization.xml.</p>
<p>So, modify the file and then restart VMWare using</p>
<pre class="code">sudo service vmware restart</pre>
<p>and you should now be able to log in as your different user.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.workflowfaq.com/vmware-user-eek/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

