<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>Unity Behind Diversity &#187; firefox</title>
	<atom:link href="http://blaise.ca/blog/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://blaise.ca/blog</link>
	<description>Searching for beauty in the dissonance</description>
	<lastBuildDate>Tue, 07 Feb 2012 13:35:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/ca/</creativeCommons:license>		<item>
		<title>SOLUTION: Firefox Fails When Upgrading After Using Mozilla PPA</title>
		<link>http://blaise.ca/blog/2010/05/01/solution-firefox-fails-when-upgrading-to-ubuntu-10-04-after-using-mozilla-ppa/</link>
		<comments>http://blaise.ca/blog/2010/05/01/solution-firefox-fails-when-upgrading-to-ubuntu-10-04-after-using-mozilla-ppa/#comments</comments>
		<pubDate>Sat, 01 May 2010 17:48:04 +0000</pubDate>
		<dc:creator>Blaise Alleyne</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[lucid lynx]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blaise.ca/blog/?p=1502</guid>
		<description><![CDATA[This is a quick fix for a problem I had when upgrading to Ubuntu 10.04, after having used the Mozilla PPA. The Firefox upgrade failed during the distribution upgrade process (from 9.10 to 10.04). I was told to run `dpkg -a &#8211;configure`, and the same error occurred again (it&#8217;s in bold). $ sudo dpkg -a [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick fix for a problem I had when upgrading to Ubuntu 10.04, after having used the Mozilla PPA.</p>
<p>The Firefox upgrade failed during the distribution upgrade process (from 9.10 to 10.04). I was told to run `dpkg -a &#8211;configure`, and the same error occurred again (it&#8217;s in bold).</p>
<p><code>$ sudo dpkg -a --configure<br />
Setting up firefox (3.6.3+nobinonly-0ubuntu4) ...<br />
<strong>update-alternatives: error: alternative path /usr/bin/firefox doesn't exist.</strong><br />
dpkg: error processing firefox (--configure):<br />
 subprocess installed post-installation script returned error exit status 2<br />
dpkg: dependency problems prevent configuration of firefox-3.5:<br />
 firefox-3.5 depends on firefox; however:<br />
  Package firefox is not configured yet.<br />
dpkg: error processing firefox-3.5 (--configure):<br />
 dependency problems - leaving unconfigured<br />
dpkg: dependency problems prevent configuration of firefox-3.0:<br />
 firefox-3.0 depends on firefox; however:<br />
  Package firefox is not configured yet.<br />
dpkg: error processing firefox-3.0 (--configure):<br />
 dependency problems - leaving unconfigured<br />
dpkg: dependency problems prevent configuration of firefox-gnome-support:<br />
 firefox-gnome-support depends on firefox (= 3.6.3+nobinonly-0ubuntu4); however:<br />
  Package firefox is not configured yet.<br />
dpkg: error processing firefox-gnome-support (--configure):<br />
 dependency problems - leaving unconfigured<br />
dpkg: dependency problems prevent configuration of firefox-3.5-gnome-support:<br />
 firefox-3.5-gnome-support depends on firefox-gnome-support; however:<br />
  Package firefox-gnome-support is not configured yet.<br />
dpkg: error processing firefox-3.5-gnome-support (--configure):<br />
 dependency problems - leaving unconfigured<br />
Errors were encountered while processing:<br />
 firefox<br />
 firefox-3.5<br />
 firefox-3.0<br />
 firefox-gnome-support<br />
 firefox-3.5-gnome-support<br />
</code></p>
<p>A quick web search brought up <a href="https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/524947">a bug report</a>, and I was able to figure out this fix with the help of one of the comments:</p>
<p><ins datetime="2011-05-27T17:14:30+00:00"><strong>Update: Fixed.</strong>My original solution was only temporary, and had to be repeated for each Firefox update (all the way through every update with 10.04, 10.10, now 11.04&#8230;). I&#8217;ve found the root of the problem now, by comparing local dpkg diversions for Firefox on my affected machines against an unaffected clean Ubuntu install.</p>
<p>On my laptop:<br />
<code><br />
$ sudo dpkg-divert --list | grep firefox<br />
local diversion of /usr/bin/firefox to /usr/bin/firefox.ubuntu<br />
local diversion of /usr/bin/mozilla-firefox to /usr/bin/mozilla-firefox.ubuntu<br />
</code></p>
<p>The clean Ubuntu install returned no results for the above command. (Also, note that in the full output for dpkg-divert &#8211;list, those were the <em>only</em> local diversion &#8212; another hint that they were from the PPA upgrade rather than Ubuntu itself.)</p>
<p>So, I ran the following commands to remove the diversions:<br />
<code>$ sudo dpkg-divert --remove /usr/bin/mozilla-firefox<br />
$ sudo dpkg-divert --remove /usr/bin/firefox</code></p>
<p>Then, the most recent Firefox upgrades worked without a hitch on both of my affected machines. Finally fixed&#8230; *fingers crossed*</ins></p>
<p><del datetime="2011-05-27T17:14:30+00:00"><ins datetime="2010-09-17T23:12:58+00:00"><strong>Updated:</strong> This isn&#8217;t a complete fix, as the problem reoccurs every time Firefox is updated. If someone knows how to fix this for good, let me know&#8230;</ins></del></p>
<p><del datetime="2011-05-27T17:14:30+00:00">$ sudo rm /usr/bin/firefox<br />
$ cd /usr/bin<br />
$ sudo ln -s ../lib/firefox-&lt;your-current-version&gt;/firefox.sh firefox<br />
$ sudo chmod 0777 firefox<br />
$ sudo apt-get -f install</del></p>
<p><del datetime="2011-05-27T17:14:30+00:00">The symlink for /usr/bin/firefox had been pointing to /usr/bin/firefox-3.5, which no longer existed, so the commands above (1) remove the dead-end link; (2) add the proper link (YMMV depending on which version of Firefox you are upgrading to); (3) resume the upgrade process.</del></p>
<p>Hope that helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://blaise.ca/blog/2010/05/01/solution-firefox-fails-when-upgrading-to-ubuntu-10-04-after-using-mozilla-ppa/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is Firefox missing the point in its response to Google Chrome?</title>
		<link>http://blaise.ca/blog/2008/09/16/is-firefox-missing-the-point-in-its-response-to-google-chrome/</link>
		<comments>http://blaise.ca/blog/2008/09/16/is-firefox-missing-the-point-in-its-response-to-google-chrome/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 17:34:34 +0000</pubDate>
		<dc:creator>Blaise Alleyne</dc:creator>
				<category><![CDATA[Free Culture]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[seth godin]]></category>
		<category><![CDATA[techdirt]]></category>

		<guid isPermaLink="false">http://blaise.ca/blog/?p=359</guid>
		<description><![CDATA[[This post originally appeared on Techdirt.] Seth Godin thinks Firefox is missing the point by launching new features in response to Google Chrome. He says the problem now is that &#8220;when your friends switch to Firefox, your life doesn&#8217;t get better.&#8221; Firefox needs to provide people with an incentive to spread it, so that the [...]]]></description>
			<content:encoded><![CDATA[<p>[This post originally appeared on <a href="http://techdirt.com/articles/20080914/2322362265.shtml">Techdirt</a>.]</p>
<p>Seth Godin thinks <a href="http://sethgodin.typepad.com/seths_blog/2008/09/firefox-is-miss.html">Firefox is missing the point</a> by launching new features in response to Google Chrome. He says the problem now is that &#8220;when your friends switch to Firefox, your life doesn&#8217;t get better.&#8221; Firefox needs to provide people with an incentive to spread it, so that the more people use it, the better it gets for users (think of a social networking site &#8212; you have a better experience if more of your friends join). He suggests new communication and collaboration features that <em>only work if you have Firefox</em>.</p>
<p>I think he&#8217;s missing the point.</p>
<p>He ignores the Firefox community. The life of a Firefox user <em>does</em> improve as the user base grows. A more vibrant community means better add-ons, bug fixes, security patches, phishing reports, translations/dictionaries, etc. &#8212; all members benefit. Mozilla is already providing the sort of incentive he describes. Sure, there may be ways to improve, but I don&#8217;t think they&#8217;re missing the point.</p>
<p>Plus, &#8220;only for Firefox users&#8221; <a href="http://www.mozilla.org/about/manifesto">isn&#8217;t the Mozilla approach</a>. Mozilla wants to improve the web for <em>everyone</em> &#8212; not just Firefox users. Mozilla thinks your browser should be like your phone or your car; it shouldn&#8217;t matter if your friends or co-workers are using the same product. You don&#8217;t need to consider which phone carrier your friend uses before making a call, or which car your co-worker has before providing directions; you shouldn&#8217;t have to think about what browser someone uses before communicating with them online. People don&#8217;t need special browser-specific features in order to communicate browser-to-browser, that&#8217;s what web services (or add-ons) are for. Those kinds of features would make life on the web more <em>difficult</em> for everyone if they were Firefox specific, and if they weren&#8217;t, Google could just implement them in Chrome.</p>
<p>The community is one thing Firefox has that Chrome can&#8217;t copy overnight.</p>
<p>If you read <a href="http://blog.lizardwrangler.com/2008/09/02/mozilla-firefox-and-google-chrome/">some</a> <a href="http://john.jubjubs.net/2008/09/01/thoughts-on-chrome-more/">responses</a> to Chrome from people at Mozilla, it doesn&#8217;t seem like they&#8217;re missing the point. Competition in the browser market is validation of Mozilla&#8217;s mission for Firefox, and Mozilla plans to compete by continuing to innovate and to involve the community. Seth Godin makes a great observation about giving people an incentive to spread your product &#8212; &#8220;people will recommend something if adoption improves their lives&#8221; &#8212; but he doesn&#8217;t mention the ways in which Mozilla has already taken that to heart. How do you think Firefox became popular in the first place?</p>
<p>[Read the <a href="http://techdirt.com/articles/20080914/2322362265.shtml#comments">comments</a> on Techdirt.]</p>
]]></content:encoded>
			<wfw:commentRss>http://blaise.ca/blog/2008/09/16/is-firefox-missing-the-point-in-its-response-to-google-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet another missed chance to be saved from MySpace</title>
		<link>http://blaise.ca/blog/2008/06/09/yet-another-missed-chance-to-be-saved-from-myspace/</link>
		<comments>http://blaise.ca/blog/2008/06/09/yet-another-missed-chance-to-be-saved-from-myspace/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 08:32:52 +0000</pubDate>
		<dc:creator>Blaise Alleyne</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[myspace]]></category>

		<guid isPermaLink="false">http://blaise.ca/blog/?p=177</guid>
		<description><![CDATA[Why is it that I keep finding these things after it&#8217;s too late? Ah well, it&#8217;s not so bad after all.]]></description>
			<content:encoded><![CDATA[<p>Why is it that I keep finding <a href="http://www.techcrunch.com/2008/06/08/firefox-add-on-to-save-you-from-myspace/">these</a> <a href="http://blaise.ca/blog/2008/06/04/what-i-should-have-done-instead-of-creating-a-myspace-profile/">things</a> after it&#8217;s <a href="http://blaise.ca/blog/2008/06/02/andrew-dubber-and-robyn-dellunto-convince-me-to-get-a-myspace-profile/">too late</a>?</p>
<p><a href="http://www.techcrunch.com/2008/06/08/firefox-add-on-to-save-you-from-myspace/"><img src="http://www.techcrunch.com/wp-content/amionmyspace.jpg" alt="AmIOnMySpace?" title="Thanks for saving me." style="width:450px;"/></a></p>
<p>Ah well, it&#8217;s <a href="http://blog.myspace.com/index.cfm?fuseaction=blog.view&#038;friendID=386242542&#038;blogID=403668023">not so bad</a> after all.</p>
]]></content:encoded>
			<wfw:commentRss>http://blaise.ca/blog/2008/06/09/yet-another-missed-chance-to-be-saved-from-myspace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hotmail discriminates against non-Windows Firefox users</title>
		<link>http://blaise.ca/blog/2008/01/26/hotmail-discriminates-against-non-windows-firefox-users/</link>
		<comments>http://blaise.ca/blog/2008/01/26/hotmail-discriminates-against-non-windows-firefox-users/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 09:59:16 +0000</pubDate>
		<dc:creator>Blaise Alleyne</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blaise.ca/blog/2008/01/26/hotmail-discriminates-against-non-windows-firefox-users/</guid>
		<description><![CDATA[Can you say artificial scarcity? Also, Hotmail&#8217;s &#8220;customer service&#8221; seems to be a poorly implemented bot. But did you really need another reason not to use Hotmail?]]></description>
			<content:encoded><![CDATA[<p>Can you say <a href="http://www.freesoftwaremagazine.com/columns/hotmail_doesnt_work_with_firefox_2">artificial scarcity</a>? Also, Hotmail&#8217;s &#8220;customer service&#8221; seems to be a poorly implemented bot.</p>
<p>But did you really need another reason not to use Hotmail?</p>
]]></content:encoded>
			<wfw:commentRss>http://blaise.ca/blog/2008/01/26/hotmail-discriminates-against-non-windows-firefox-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access Gmail with a secure connection</title>
		<link>http://blaise.ca/blog/2007/11/23/access-gmail-with-a-secure-connection/</link>
		<comments>http://blaise.ca/blog/2007/11/23/access-gmail-with-a-secure-connection/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 09:31:42 +0000</pubDate>
		<dc:creator>Blaise Alleyne</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blaise.ca/blog/2007/11/23/access-gmail-with-a-secure-connection/</guid>
		<description><![CDATA[Did you know that when you&#8217;re viewing mail in your Gmail account you&#8217;re not using a secure connection by default? That means that anyone who&#8217;s sniffing traffic on your network can intercept your packets and essentially read your email or, worse yet, steal your session (ie. login to Gmail as you)! The chances of this [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that when you&#8217;re viewing mail in your Gmail account you&#8217;re not using a secure connection by default? That means that anyone who&#8217;s sniffing traffic on your network can intercept your packets and essentially read your email or, worse yet, steal your session (ie. login to Gmail as <em>you</em>)!</p>
<p>The chances of this actually happening to you are very slim. But Google actually <a href="https://mail.google.com/support/bin/answer.py?hl=en&#038;answer=8155">offers</a> HTTPS (ie. encrypted) access to Gmail, so why not take advantage of it? To use HTTPS, you just need to change the &#8220;http://&#8221; in the address bar to &#8220;https://&#8221; once you&#8217;re logged in and hit enter.</p>
<p>You need to do this ever time to log into Gmail though, which is a bit annoying. That&#8217;s why I&#8217;ve begun using the <a href="http://userscripts.org/scripts/review/1404">GMailSecure script</a> for <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a>. Greasemonkey is a Firefox add-on which allows you to install scripts that customize websites for you. This script simply replaces &#8220;http://&#8221; with &#8220;https://&#8221; for you whenever you&#8217;re logged into Gmail.</p>
<p>For any security conscious Firefox+Gmail users out there, this add-on ensures that you&#8217;re always viewing your email over a secure connection.</p>
]]></content:encoded>
			<wfw:commentRss>http://blaise.ca/blog/2007/11/23/access-gmail-with-a-secure-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving Firefox/Thunderbird Profiles</title>
		<link>http://blaise.ca/blog/2007/07/28/moving-firefoxthunderbird-profiles/</link>
		<comments>http://blaise.ca/blog/2007/07/28/moving-firefoxthunderbird-profiles/#comments</comments>
		<pubDate>Sat, 28 Jul 2007 17:45:41 +0000</pubDate>
		<dc:creator>Blaise Alleyne</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[thunderbird]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blaise.ca/blog/?p=22</guid>
		<description><![CDATA[This example will involve moving a profile from Windows XP to Ubuntu 7.04, but the basic idea can be used to move profiles around in many other scenarios. Step 1: Find Your Files In Windows XP, look in: Firefox: C:\Documents and Settings\&#60;username&#62;\Application Data\Mozilla\Firefox\Profiles Thunderbird: C:\Documents and Settings\&#60;username&#62;\Application Data\Thunderbird\Profiles You should find a sufficiently cryptic folder [...]]]></description>
			<content:encoded><![CDATA[<p>This example will involve moving a profile from Windows XP to Ubuntu 7.04, but the basic idea can be used to move profiles around in many other scenarios.</p>
<p><strong>Step 1: Find Your Files</strong></p>
<p>In Windows XP, look in:<br />
<u>Firefox:</u> <code>C:\Documents and Settings\&lt;username&gt;\Application Data\Mozilla\Firefox\Profiles</code><br />
<u>Thunderbird:</u> <code>C:\Documents and Settings\&lt;username&gt;\Application Data\Thunderbird\Profiles</code></p>
<p>You should find a sufficiently cryptic folder (e.g. &#8220;b455b37.default&#8221;). You can check inside to see if it has the data you want (ie. bookmarks.html for Firefox, a Mail subfolder for Thunderbird, etc.). That&#8217;s your profile folder, the one you&#8217;ll need to copy in step two.</p>
<p><strong>Step 2: Copy Your Files</strong></p>
<p>In Ubuntu:<br />
<u>Firefox:</u> ~/.mozilla/firefox/Profiles/<br />
<u>Thunderbird:</u>: ~/.mozilla-thunderbird/</p>
<p>There are two options: (1) replace the contents of the existing profile directory with the contents of the profile directory from your Windows machine; (2) delete the existing profile directory and copy your entire profile directory from Windows in its stead.</p>
<p>The easiest way to copy files is probably to use a USB key, but it doesn&#8217;t really matter.</p>
<p><strong>Step 3: Profiles.ini</strong></p>
<p>If you chose option (1) above, then you need to edit &#8216;profiles.ini&#8217; to update the path to your profile (since the directory name has changed). You&#8217;ll need to open up &#8216;profiles.ini&#8217; in a text editor.</p>
<p>Firefox:<br />
<code>gedit ~/.mozilla/firefox/profiles.ini</code></p>
<p>Thunderbird:<br />
<code>gedit ~/.mozilla-thunderbird/profiles.ini</code></p>
<p>(If you&#8217;re copying to Windows, just use Notepad to edit the file.)</p>
<p>Inside profiles.ini, you&#8217;ll need to update the &#8216;Path&#8217; to reflect the new name of your profile directory:</p>
<p><code>[Profile0]<br />
Name=default<br />
IsRelative=1<br />
Path=<strong>&lt;path-to-new-profile&gt;</strong></code></p>
<p>Save the file, open the application and check to make sure your data is there. That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://blaise.ca/blog/2007/07/28/moving-firefoxthunderbird-profiles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

