<?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>David Baldaro Weblog &#187; ubuntu</title>
	<atom:link href="http://david.baldaro.me.uk/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://david.baldaro.me.uk</link>
	<description>David Baldaro&#039;s home on the Internet</description>
	<lastBuildDate>Fri, 03 Feb 2012 16:38:21 +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>Using WebEX, in Mozilla Firefox on Ubuntu 9.04</title>
		<link>http://david.baldaro.me.uk/2009/07/using-webex-in-mozilla-firefox-on-ubuntu-904/</link>
		<comments>http://david.baldaro.me.uk/2009/07/using-webex-in-mozilla-firefox-on-ubuntu-904/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 11:32:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[WebEX]]></category>

		<guid isPermaLink="false">http://david.baldaro.me.uk/?p=616</guid>
		<description><![CDATA[We regularly use WebEX within our organisation – and whilst I mostly work under Windows; sometime it would [...]]]></description>
			<content:encoded><![CDATA[<p>We regularly use WebEX within our organisation – and whilst I mostly work under Windows; sometime it would be great to have the other PC on my desk (using Ubuntu 9.04) running the WebEX in the background.</p>
<p>I have always struggled in getting this to work – but now I have a solution.</p>
<p>Firstly you will need to enter:</p>
<blockquote><p>sudo apt-get install libstdc++5 sun-java6-plugin</p></blockquote>
<p>followed by added the following two lines into your ~/.profile file:</p>
<blockquote><p>export JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.66<br />
export PATH=$JAVA_HOME/bin:$PATH</p></blockquote>
<p>Then restart your server all just your X-Server and you should be able to join the WebEX meeting successfully!</p>
]]></content:encoded>
			<wfw:commentRss>http://david.baldaro.me.uk/2009/07/using-webex-in-mozilla-firefox-on-ubuntu-904/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>NetworkManager in Ubuntu sucks!</title>
		<link>http://david.baldaro.me.uk/2009/04/networkmanager-in-ubuntu-sucks/</link>
		<comments>http://david.baldaro.me.uk/2009/04/networkmanager-in-ubuntu-sucks/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 13:10:22 +0000</pubDate>
		<dc:creator>David Baldaro</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[networkmanager]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://david.baldaro.me.uk/?p=294</guid>
		<description><![CDATA[I recently switched by ubuntu 8.10 server/desktop to using the NetworkManger applet that comes as part of ubuntu. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently switched by ubuntu 8.10 server/desktop to using the NetworkManger applet that comes as part of ubuntu. By default it was sat that; but wouldn’t let me change or adjust any of my network settings. </p>
<p>I discovered that in order to make it work I needed to modify the /etc/NetworkManager/nm-system-settings.conf.</p>
<blockquote><p><a href="mailto:david@george:~$">david@george:~$</a> sudo nano /etc/NetworkManager/nm-system-settings.conf</p>
</blockquote>
<p>Then change the <em>managed=false</em> line to <em>managed=<strong>true</strong></em></p>
<blockquote><p>[main]     <br />plugins=ifupdown,keyfile </p>
<p>[ifupdown]     <br />managed=false</p>
</blockquote>
<p><font style="background-color: #422f33" color="#cdc6c4">However, once I did this every time that I booted the machine it always come up using DHCP, and not using the static IP address that I had originally set. I discovered that I could always manually change the interface using the NetworkManager to use the static IP opposed to dynamic; but that was a manual task and not great for a machine that is supposed to be acting as a server.</font></p>
<p><font style="background-color: #422f33" color="#cdc6c4">I also noticed that the NFS Server failed to load at boot as well whilst I was using the NetworkManager.</font></p>
<p><font style="background-color: #422f33" color="#cdc6c4">So – today I decided to go back to manual network configuration as it seemed more stable than using the GUI! But that was not as straight forward as I hoped. </font></p>
<p><font style="background-color: #422f33" color="#cdc6c4">Firstly, I reverted back the line in /etc/NetworkManager/nm-system-settings.conf to say <em>false</em>. Secondly I quickly sorted out my /etc/networks/interfaces file so that it was correct.</font></p>
<blockquote><p>auto lo     <br />iface lo inet loopback </p>
<p>auto eth0     <br />iface eth0 inet static      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; address 192.168.3.3      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; network 192.168.3.0      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; netmask 255.255.255.0      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; broadcast 192.168.3.255      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; gateway 192.168.3.1 </p>
<p>auto br0     <br />&#160; iface br0 inet static      <br />&#160; address 192.168.3.3      <br />&#160; netmask 255.255.255.0      <br />&#160; network 192.168.3.0      <br />&#160; broadcast 192.168.3.255      <br />&#160; gateway 192.168.3.1      <br />&#160; bridge_ports eth0 vbox0 vbox1</p>
</blockquote>
<p><font style="background-color: #422f33" color="#cdc6c4">Note: I use VirtualBox for virtualisation; hence the need to the Bridge and the vbox references. </font></p>
<p><font style="background-color: #422f33" color="#cdc6c4">All seemed fine – IP traffic was all looking fine; but then I discovered that DNS lookups were not working. After a bit of routing around I noticed that NetworkManager also overwrites the /etc/resolv.conf file – and in my case that was pointing to a invalid entry. So I revert back my /etc/resolv.conf to something more sensible. </font></p>
<blockquote><p>nameserver 192.168.3.1</p>
</blockquote>
<p><font style="background-color: #422f33" color="#cdc6c4">Everything seems to be working again – no more NFS failures on bootup, and all network interface seem present and stable!</font></p>
]]></content:encoded>
			<wfw:commentRss>http://david.baldaro.me.uk/2009/04/networkmanager-in-ubuntu-sucks/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Come on Lexmark support Linux a bit more please!</title>
		<link>http://david.baldaro.me.uk/2008/12/come-on-lexmark-support-linux-a-bit-more-please/</link>
		<comments>http://david.baldaro.me.uk/2008/12/come-on-lexmark-support-linux-a-bit-more-please/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 10:26:00 +0000</pubDate>
		<dc:creator>David Baldaro</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[lexmark]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dbaldaro.iblogger.org/2008/12/come-on-lexmark-support-linux-a-bit-more-please/</guid>
		<description><![CDATA[Why is it in today&#8217;s open market that some suppliers seem to ignore major trends in the market? [...]]]></description>
			<content:encoded><![CDATA[<p>Why is it in today&#8217;s open market that some suppliers seem to ignore major trends in the market? Take Lexmark and their support of Linux&#8230;
<div></div>
<div>A while ago, I purchased an all-in-one Lexmark x4550 printer; it was cheapish, and more importantly wireless so I could plug it in anywhere. Getting it working wirelessly under Windows wasn&#8217;t to bad, although scanning back wirelessly is still a bit hit and miss. However recently I tried to install it under ubuntu &#8230; and then things got annoying. </div>
<div></div>
<div>No driver, no PPD and no support &#8211; there seems to be people screaming all over the Internet that there is no driver and no support from Lexmark. I&#8217;m quite happy to install a virtual XP box, and share the printer from that &#8211; however I still need a PPD to configure it correctly. </div>
<div></div>
<div>I&#8217;m not even asking for full support &#8211; just the ability to print a sodding page would be nice! A Page in colour would be even better. But no, the best that I have managed to date is to get a blank piece of paper pushed through. &#8220;ohhhh&#8221; I hear you shout!</div>
<div></div>
<div>I have to admit that this was one of those impluse purchases that I should&#8217;ve checked more on!</div>
<div>Won&#8217;t be buying another Lexmark printer any time soon though!</div>
]]></content:encoded>
			<wfw:commentRss>http://david.baldaro.me.uk/2008/12/come-on-lexmark-support-linux-a-bit-more-please/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parental control across a home network &#8211; made easy!</title>
		<link>http://david.baldaro.me.uk/2008/12/parental-control-across-a-home-network-made-easy/</link>
		<comments>http://david.baldaro.me.uk/2008/12/parental-control-across-a-home-network-made-easy/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 09:02:00 +0000</pubDate>
		<dc:creator>David Baldaro</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dbaldaro.iblogger.org/2008/12/parental-control-across-a-home-network-made-easy/</guid>
		<description><![CDATA[My son is now starting to independently surf the Internet on his own (admitted on a PC in [...]]]></description>
			<content:encoded><![CDATA[<p>My son is now starting to independently surf the Internet on his own (admitted on a PC in a public place) but knowing the Internet like I do, I still worry. Having turned on Parental Control in Vista &#8211; I am consisently regretting it as it now asks to authorise every page and turn &#8211; which is madness. 
<div></div>
<div>So whilst I continue in removing Vista from my Home network &#8211; I explored a few ideas about how to make the place safer &#8211; and I stumbled across <a href="http://www.opendns.com">www.OpenDNS.com</a> which is a simple solution to what could be a huge problem.</div>
<div></div>
<div>With roughly 5 computers, wireless links, and internet enabled games console securing the lot was a snip &#8211; quite simply reconfigure your ADSL router to use OpenDNS&#8217;s DNS servers, and then create an account at OpenDNS and turn on the filtering option!</div>
<div></div>
<div>Now, as all the devices on my network route traffic and requests through my ADSL router (as they should) my router is now using OpenDNS to resolve and check the domain names against a set of criteria. So now purposely attempting to visit www.playboy.com returns an OpenDNS blocking page any any device. </div>
<div></div>
<div>Beautiful and yet simple!</div>
<div>Well done OpenDNS!</div>
]]></content:encoded>
			<wfw:commentRss>http://david.baldaro.me.uk/2008/12/parental-control-across-a-home-network-made-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally: Managed HDMI support in ubuntu 8.10 with MythTV</title>
		<link>http://david.baldaro.me.uk/2008/12/finally-managed-hdmi-support-in-ubuntu-810-with-mythtv/</link>
		<comments>http://david.baldaro.me.uk/2008/12/finally-managed-hdmi-support-in-ubuntu-810-with-mythtv/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 14:10:00 +0000</pubDate>
		<dc:creator>David Baldaro</dc:creator>
				<category><![CDATA[MythTV]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dbaldaro.iblogger.org/2008/12/finally-managed-hdmi-support-in-ubuntu-810-with-mythtv/</guid>
		<description><![CDATA[Well, it took me some time &#8211; so I figured that I would write up the details; so [...]]]></description>
			<content:encoded><![CDATA[<div>
<blockquote></blockquote>
<p>Well, it took me some time &#8211; so I figured that I would write up the details; so that when I rebuild my HTPC or just in case anyone else is having the same issues!</div>
<p>Firstly; I have MythTV 0.21 running on a Shuttle XPS SG33G5M with Ubuntu 8.10</p>
<p>I have my TV connected by HDMI from the Shuttle &#8211; however never been able to get my audio through the HDMI, so always had to run a phono cable from the rear of the Shuttle to separate speakers.</p>
<p>My devices were reported as:
<div>
<blockquote><span class="Apple-style-span" style="font-weight: bold;">david@Rosy:~$ aplay -l</span><br />**** List of PLAYBACK Hardware Devices ****<br />card 0: Intel [HDA Intel], device 0: ALC888 Analog [ALC888 Analog]<br />Subdevices: 1/1<br />Subdevice #0: subdevice #0<br />card 0: Intel [HDA Intel], device 1: ALC888 Digital [ALC888 Digital]<br />Subdevices: 1/1<br />Subdevice #0: subdevice #0<br />card 0: Intel [HDA Intel], device 3: ATI HDMI [ATI HDMI]<br />Subdevices: 0/1<br />Subdevice #0: subdevice #0</p></blockquote>
<p>&#8230;  and my outputs shown as &#8230;<br />
<blockquote><span class="Apple-style-span" style="font-weight: bold;"><br /></span></p></blockquote>
<blockquote><p><span class="Apple-style-span" style="font-weight: bold;"> david@Rosy:~$ aplay -L</span><br />default:CARD=Intel<br />HDA Intel, ALC888 Analog<br />Default Audio Device<br />front:CARD=Intel,DEV=0<br />HDA Intel, ALC888 Analog<br />Front speakers<br />surround40:CARD=Intel,DEV=0<br />HDA Intel, ALC888 Analog<br />4.0 Surround output to Front and Rear speakers<br />surround41:CARD=Intel,DEV=0<br />HDA Intel, ALC888 Analog<br />4.1 Surround output to Front, Rear and Subwoofer speakers<br />surround50:CARD=Intel,DEV=0<br />HDA Intel, ALC888 Analog<br />5.0 Surround output to Front, Center and Rear speakers<br />surround51:CARD=Intel,DEV=0<br />HDA Intel, ALC888 Analog<br />5.1 Surround output to Front, Center, Rear and Subwoofer speakers<br />surround71:CARD=Intel,DEV=0<br />HDA Intel, ALC888 Analog<br />7.1 Surround output to Front, Center, Side, Rear and Woofer speakers<br />iec958:CARD=Intel,DEV=0<br />HDA Intel, ALC888 Digital<br />IEC958 (S/PDIF) Digital Audio Output<br />null<br />Discard all samples (playback) or generate zero samples (capture)</p></blockquote>
<p>Firstly my version of ALSA was not the latest &#8230;</p></div>
<div>
<div>
<div></div>
<blockquote><div><span class="Apple-style-span" style="font-weight: bold;">david@Rosy:~$ cat /proc/asound/version</span></div>
<div>Advanced Linux Sound Architecture Driver Version 1.0.17a.</div>
</blockquote>
<div></div>
<div>After failing to download and install the latest ALSA drivers from <a href="http://www.alsa-project.org/">http://www.alsa-project.org/</a> I stubbled across a fantastic script which did it all for me. This <span class="Apple-style-span" style="font-weight: bold;">Alsa 1.0.18 Installation Script</span> (http://ubuntuforums.org/showthread.php?t=962695) automatically download, compiles, installs and configures ALSA 1.0.18a for you. <span class="Apple-style-span" style="font-style: italic;">God bless Google and the Open Source world!</span></div>
<div></div>
<div>Once this was completed a quick confirmed that I could pass audio through the HDMI cable to the TV &#8230;</div>
<div>
<div></div>
<blockquote><div><span class="Apple-style-span" style="font-weight: bold;"><br /></span></div>
<div><span class="Apple-style-span" style="font-weight: bold;">david@Rosy:~$ speaker-test -Dplughw:0,3 -c2</span></div>
<div></div>
<div>speaker-test 1.0.18</div>
<div></div>
<div>Playback device is plughw:0,3</div>
<div>Stream parameters are 48000Hz, S16_LE, 2 channels</div>
<div>Using 16 octaves of pink noise</div>
<div>Rate set to 48000Hz (requested 48000Hz)</div>
<div>Buffer size range from 64 to 16384</div>
<div>Period size range from 32 to 8192</div>
<div>Using max buffer size 16384</div>
<div>Periods = 4</div>
<div>was set period_size = 4096</div>
<div>was set buffer_size = 16384</div>
<div> 0 &#8211; Front Left</div>
<div> 1 &#8211; Front Right</div>
</blockquote>
<div></div>
<div>Now I turned my attention to MythTV and in Setup->Gerneral under the Audio Tab I configured my settings to:</div>
<div><span class="Apple-style-span" style="font-weight: bold;"></span></div>
<blockquote><div><span class="Apple-style-span" style="font-weight: bold;"><br /></span></div>
<div><span class="Apple-style-span" style="font-weight: bold;">Ouput Audio Device:</span> ALSA:plughw:0,3</div>
<div><span class="Apple-style-span" style="font-weight: bold;">Passthrough output device:</span> ALSA:plughw:0,3</div>
<div><span class="Apple-style-span" style="font-weight: bold;">Max Audio Channels:</span> 5.1</div>
<div><span class="Apple-style-span" style="font-weight: bold;">Upmix: </span>Passive</div>
<div><span class="Apple-style-span" style="font-weight: bold;">Enable AC3 to SPDIF passthrough: </span>on</div>
<div><span class="Apple-style-span" style="font-weight: bold;">Enable DTS to SPDIF passthrough: </span>on</div>
<div><span class="Apple-style-span" style="font-weight: bold;">Mixer Device: </span>ALSA:default</div>
<div><span class="Apple-style-span" style="font-weight: bold;">Mixer Controls:</span> Master</div>
</blockquote>
<div></div>
<div></div>
<div>This then configured my MythTV frontend to pass all the audio straight through to the HDMI cable going to the TV &#8211; <span class="Apple-style-span" style="font-weight: bold;">result!</span></div>
<div><span class="Apple-style-span" style="font-weight: bold;"><br /></span></div>
<div>This seemed fine &#8211; providing that whatever media I was watching/listening to was using MythTV internal commands. However as I was using a bespoke <span class="Apple-style-span" style="font-weight: bold;">mplayer </span>configuration anything that was played using it passed the audio back to the phono output and not the HDMI.</div>
<div></div>
<div>So, I under the Setup->Media Settings->Video Settings->Player Settings I modified <span class="Apple-style-span" style="font-weight: bold;">&#8230;</span><span class="Apple-style-span" style="font-weight: bold;"></span></div>
<div><span class="Apple-style-span" style="font-weight: bold;"></span><br />
<blockquote><span class="Apple-style-span" style="font-weight: bold;"><br /></span></p></blockquote>
<blockquote><p><span class="Apple-style-span" style="font-weight: bold;">Default Video Player:</span> mplayer -vo xv -ao alsa:device=hw=0.3 -autoq 1oo -vf pp -fs -zoom %s</p></blockquote>
</div>
<div></div>
<div>and then made sure that any video file type (avi, mpg etc) was set to use the <span class="Apple-style-span" style="font-weight: bold;">Default Video Player</span> and not the <span class="Apple-style-span" style="font-weight: bold;">Internal one</span>.</div>
<div></div>
<div>Result!!!</div>
<div></div>
</div>
<div></div>
<div></div>
<div></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://david.baldaro.me.uk/2008/12/finally-managed-hdmi-support-in-ubuntu-810-with-mythtv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

