<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Daniel Lange's blog (Entries tagged as mozilla)</title>
    <link>https://daniel-lange.com/</link>
    <description>agrep -pB IT /dev/life</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.6-alpha1 - http://www.s9y.org/</generator>
    <pubDate>Tue, 28 Feb 2023 11:22:36 GMT</pubDate>

    <image>
    <url>//daniel-lange.com/uploads/Avatar_Blog_144_234.png</url>
    <title>RSS: Daniel Lange's blog - agrep -pB IT /dev/life</title>
    <link>https://daniel-lange.com/</link>
    <width>144</width>
    <height>234</height>
</image>

<item>
    <title>Thunderbird gpg key import</title>
    <link>https://daniel-lange.com/archives/179-Thunderbird-gpg-key-import.html</link>
            <category>Open Source</category>
    
    <comments>https://daniel-lange.com/archives/179-Thunderbird-gpg-key-import.html#comments</comments>
    <wfw:comment>https://daniel-lange.com/wfwcomment.php?cid=179</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>https://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=179</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p style=&quot;font-size: 18pt; bold; display: flex; justify-content: center; align-items: center; height: 110px;&quot;&gt;Thunderbird, srsly?&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:698 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;557&quot; height=&quot;94&quot;  src=&quot;https://daniel-lange.com/uploads/entries/230227_gpg_pubring_size.jpg&quot;  alt=&quot;&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:699 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;710&quot; height=&quot;484&quot;  src=&quot;https://daniel-lange.com/uploads/entries/230227_Thunderbird_gpg_manager.jpg&quot;  alt=&quot;&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:700 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;739&quot; height=&quot;227&quot;  src=&quot;https://daniel-lange.com/uploads/entries/230227_Thunderbird_source_gpg_pubkeys_4.8MB_import_limit.jpg&quot;  alt=&quot;&quot;&gt;&lt;/p&gt;

&lt;p&gt;5MB (or 4.8MiB) import limit. Sure. My modest pubring (111 keys) is 18MB. The &lt;a href=&quot;https://wiki.debian.org/DebianKeyring&quot;&gt;Debian keyring&lt;/a&gt; is 28MB.&lt;/p&gt;

&lt;p&gt;May be, just may be, add another 0 to that if statement?&lt;/p&gt;

&lt;p&gt;So, until that happens, workarounds ...&lt;/p&gt;

&lt;h4&gt;Option 1:&lt;/h4&gt;

&lt;p&gt;Export each pubkey into a separate file. The import dialog allows to select them all in one go. But - of course - it will ask confirmation for each. So prepare some valerian tea.&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;gpg &lt;span style=&quot;color: #660033;&quot;&gt;--with-colons&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--list-public-keys&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;grep&lt;/span&gt; ^pub &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;cut&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-d&lt;/span&gt; : &lt;span style=&quot;color: #660033;&quot;&gt;-f&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;5&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;xargs&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-I&lt;/span&gt; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-n&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt; gpg &lt;span style=&quot;color: #660033;&quot;&gt;-ao&lt;/span&gt; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;.pub &lt;span style=&quot;color: #660033;&quot;&gt;--export&lt;/span&gt; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;;&lt;/div&gt;

&lt;h4&gt;Option 2:&lt;/h4&gt;

&lt;p&gt;Strip all the signatures, so Thunderbird gets a smaller file to chew on. This uses &lt;code&gt;pgp-clean&lt;/code&gt; from &lt;a href=&quot;https://packages.debian.org/sid/signing-party&quot;&gt;signing-party&lt;/a&gt;.&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;gpg &lt;span style=&quot;color: #660033;&quot;&gt;--with-colons&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--list-public-keys&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;grep&lt;/span&gt; ^pub &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;cut&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-d&lt;/span&gt; : &lt;span style=&quot;color: #660033;&quot;&gt;-f&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;5&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;xargs&lt;/span&gt; pgp-clean &lt;span style=&quot;color: #660033;&quot;&gt;-s&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&amp;gt;&lt;/span&gt; there_you_go_thunderbird.pub&lt;/div&gt;

&lt;p&gt;Option 1 will retain the signatures on individual keys, Option 2 will not.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Mon, 27 Feb 2023 15:50:00 +0000</pubDate>
    <guid isPermaLink="false">https://daniel-lange.com/archives/179-guid.html</guid>
    <category>fail</category>
<category>gpg</category>
<category>mozilla</category>
<category>thunderbird</category>

</item>
<item>
    <title>Thunderbird startup hang (hint: Add-Ons)</title>
    <link>https://daniel-lange.com/archives/131-Thunderbird-startup-hang-hint-Add-Ons.html</link>
            <category>Debian</category>
    
    <comments>https://daniel-lange.com/archives/131-Thunderbird-startup-hang-hint-Add-Ons.html#comments</comments>
    <wfw:comment>https://daniel-lange.com/wfwcomment.php?cid=131</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>https://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=131</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;If you see Thunderbird hanging during startup for a minute and then continuing to load fine, you are probably running into an issue similar to what I saw when Debian migrated Icedove back to the &quot;official&quot; Mozilla Thunderbird branding and changed &lt;code&gt;~/.icedove&lt;/code&gt; to &lt;code&gt;~/.thunderbird&lt;/code&gt; in the process (one symlinked to the other).&lt;/p&gt;

&lt;p&gt;Looking at the console log (=start Thunderbird from a terminal so you see its messages), I got:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;console.log: foxclocks.bootstrap._loadIntoWindow(): got xul-overlay-merged - waiting for overlay-loaded
[.. one minute delay ..]
console.log: foxclocks.bootstrap._windowListener(): got window load chrome://global/content/commonDialog.xul
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Stracing confirms it hangs because Thunderbird loops waiting for a &lt;abbr title=&quot;Fast Userspace muTual EXclusion locking mechanism. Who makes up these acronyms?&quot;&gt;FUTEX&lt;/abbr&gt; until that apparently gets kicked by a XUL core timeout.&lt;br /&gt;
(Thanks for defensive programming folks!)&lt;/p&gt;

&lt;p&gt;So in my case uninstalling the Add-On &lt;a href=&quot;https://addons.mozilla.org/eN-US/thunderbird/addon/foxclocks/&quot; title=&quot;A world clock Add-On for Thunderbird / Firefox&quot;&gt;Foxclocks&lt;/a&gt; easily solved the problem.&lt;/p&gt;

&lt;p&gt;I assume other Thunderbird Add-Ons may cause the same issue, hence the more generic description above.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Thu, 11 May 2017 08:00:00 +0000</pubDate>
    <guid isPermaLink="false">https://daniel-lange.com/archives/131-guid.html</guid>
    <category>addon</category>
<category>bug</category>
<category>debian</category>
<category>mozilla</category>
<category>thunderbird</category>

</item>
<item>
    <title>Mozilla Firefox and Thunderbird Menu font sizes</title>
    <link>https://daniel-lange.com/archives/120-Mozilla-Firefox-and-Thunderbird-Menu-font-sizes.html</link>
            <category>Open Source</category>
    
    <comments>https://daniel-lange.com/archives/120-Mozilla-Firefox-and-Thunderbird-Menu-font-sizes.html#comments</comments>
    <wfw:comment>https://daniel-lange.com/wfwcomment.php?cid=120</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>https://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=120</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;The font size Mozilla chose for Firefox and Thunderbird menus looks awfully large on Netbook screens. It wastes space and is visually at odds with reasonably sized content. And for some weird reason you can set the content font and size via the menu but not the font and size for the drop-down menus themselves.&lt;/p&gt;

&lt;p&gt;As the &quot;Theme Font &amp;amp; Size Changer&quot; Add-On doesn&#039;t work reliably and phones home way too often (showing a nag screen), I dug back into how to do this &quot;manually&quot;. Probably a decade after I fixed this the first time...&lt;/p&gt;

&lt;p&gt;You need to create the file &lt;code&gt;~/.mozilla/firefox/*/chrome/userChrome.css&lt;/code&gt;  with * being your profile directory (&amp;lt;random_number&amp;gt;.default usually) and you most probably have to create the &lt;code&gt;chrome&lt;/code&gt; directory first.&lt;/p&gt;

&lt;p&gt;The same for Thunderbird resides in &lt;code&gt;~/.thunderbird/*/chrome/userChrome.css&lt;/code&gt;. Here again the &lt;code&gt;chrome&lt;/code&gt; directory will most probably need to be created first.&lt;/p&gt;

&lt;div class=&quot;javascript geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #006600; font-style: italic;&quot;&gt;/* Global UI font */&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #339933;&quot;&gt;*&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt; font&lt;span style=&quot;color: #339933;&quot;&gt;-&lt;/span&gt;size&lt;span style=&quot;color: #339933;&quot;&gt;:&lt;/span&gt; 10pt &lt;span style=&quot;color: #339933;&quot;&gt;!&lt;/span&gt;important&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;&amp;#160; font&lt;span style=&quot;color: #339933;&quot;&gt;-&lt;/span&gt;family&lt;span style=&quot;color: #339933;&quot;&gt;:&lt;/span&gt; Ubuntu &lt;span style=&quot;color: #339933;&quot;&gt;!&lt;/span&gt;important&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;

&lt;p&gt;needs to go into these files for Firefox or Thunderbird respectively. The curly braces are important. So copy &amp;amp; paste correctly. Symlinks or hardlinks are fine if those files do not need to differ between your web browser and your email client.&lt;/p&gt;

&lt;p&gt;Restart Firefox and/or Thunderbird to see the effect.&lt;/p&gt;

&lt;p&gt;Obviously you can choose any other font and font size in the snippet above to suit your taste and requirements.&lt;/p&gt;

&lt;p&gt;If you are massively space-confined and don&#039;t mind a quite ugly UI, check out the &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/littlefox-for-firefox/&quot;&gt;Littlefox Add-on&lt;/a&gt;. Ugly but optimal use of the minimal screen estate with very small screens.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sun, 04 Sep 2016 11:37:57 +0000</pubDate>
    <guid isPermaLink="false">https://daniel-lange.com/archives/120-guid.html</guid>
    <category>browser</category>
<category>client</category>
<category>design</category>
<category>email</category>
<category>firefox</category>
<category>font</category>
<category>linux</category>
<category>mozilla</category>
<category>screen</category>
<category>size</category>
<category>thunderbird</category>
<category>ui</category>

</item>
<item>
    <title>SyncPlaces, SortPlaces ... preserving these and other excellent Firefox add-ons</title>
    <link>https://daniel-lange.com/archives/71-SyncPlaces,-SortPlaces-...-preserving-these-and-other-excellent-Firefox-add-ons.html</link>
            <category>Internet</category>
    
    <comments>https://daniel-lange.com/archives/71-SyncPlaces,-SortPlaces-...-preserving-these-and-other-excellent-Firefox-add-ons.html#comments</comments>
    <wfw:comment>https://daniel-lange.com/wfwcomment.php?cid=71</wfw:comment>

    <slash:comments>142</slash:comments>
    <wfw:commentRss>https://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=71</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;A few days ago I was re-installing a laptop of mine. Downloading the default add-ons for Firefox came to a stall as I could not find SyncPlaces, which I&#039;ve been using for a few years to synchronize my bookmarks between the systems I use. As I knew the author, Andy Halford, has a &lt;a href=&quot;http://www.andyhalford.com/&quot; title=&quot;Andy Halford&#039;s homepage&quot;&gt;homepage&lt;/a&gt; I surfed there and found...&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&quot;&lt;strong&gt;So long Mozilla and thanks for all the fish&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;If you are here looking for any of my extensions (SyncPlaces, SortPlaces, CheckPlaces or SearchPlaces) then I&#039;m sad to inform you that these are no longer available.&lt;/p&gt;
  
  &lt;p&gt;Unfortunately I do not have the time or the motivation to continue to support these in light of the close-minded, short-sighted and increasingly inflexible organisation that Mozilla has become. Apparently spending 1000&#039;s of hours promoting their products and providing my extensions to the general public to fill the gaps in their product, and repair bookmarks destroyed by Firefox Sync, counts for little and does not deserve any flexibility or support from them. Apparently add-on developers are second-class citizens to them whatever they may say. Surprising given that these are the main USP of Firefox, and developers are providing their time and efforts for free. My decision was taken after a series of problems the last one being the final straw.&quot;&lt;br /&gt;
  &lt;em&gt;Andy Halford, 17.06.12&lt;/em&gt; &lt;a href=&quot;https://daniel-lange.com/uploads/entries/120707_Screenshot_Homepage_AndyHalford.png&quot; title=&quot;Screenshot of Andy Halford&#039;s homepage on 07.07.12&quot;&gt;screenshot&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I was unable to find any details what caused this rant and the serious decision to remove his excellent add-ons from the Internet.
There are a &lt;a href=&quot;http://forums.mozillazine.org/viewtopic.php?f=38&amp;amp;t=2492681&quot; title=&quot;Mozillazine thread: Need alternate Add-Ons for CheckPlaces and SortPlaces!&quot;&gt;few discussions&lt;/a&gt; on the Mozillazine forums but nothing enlightening so far.
&lt;a href=&quot;http://www.andyhalford.com/&quot; title=&quot;Andy Halford&#039;s homepage&quot;&gt;Andy&#039;s personal homepage&lt;/a&gt;, &lt;a href=&quot;http://thehalfords.co.uk&quot; title=&quot;Andy Halford&#039;s family homepage&quot;&gt;family homepage&lt;/a&gt; and the &lt;a href=&quot;http://totalvalidator.com/&quot; title=&quot;TotalValidator product homepage&quot;&gt;TotalValidator product&lt;/a&gt; he and his wife offer are all still online, he just pulled all his popular Firefox add-ons.&lt;/p&gt;

&lt;p&gt;Andy states on his homepage&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&quot;I will not be answering any further emails on this matter, I suggest that you direct any questions to Mozilla themselves and ask them why they were happier for me to leave than to use a little common sense.&quot; [ib.]&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I still tried to contact him and asked for an interview but he has not come back to me so far. I&#039;ve sent a second email with the URL of this blog post.&lt;/p&gt;

&lt;p&gt;The SyncPlaces plug-in is still prominently featured on Wikipedia&#039;s &lt;a href=&quot;http://en.wikipedia.org/wiki/Comparison_of_browser_synchronizers&quot; title=&quot;Wikipedia entry: Comparison of browser synchronizers&quot;&gt;Comparison of browser synchronizers&lt;/a&gt; at press time.&lt;/p&gt;

&lt;p&gt;Now this is a mess. With some ungraciously licensed closed source software, you&#039;re probably used to plan migrations once license terms run out or you have to upgrade to the &lt;em&gt;much improved&lt;/em&gt; successor product because &quot;extended support&quot; for your perfectly fine current version gets ridiculously expensive.&lt;/p&gt;

&lt;p&gt;But with open source you have more rights and e.g. the security to use the product as long as you wish. &lt;em&gt;If&lt;/em&gt; you have kept a copy of the code (and the license file). Because in this case the Mozilla Firefox installer .xpi&#039;s are hard to come by. Mozilla has a &lt;a href=&quot;https://addons.mozilla.org/&quot; title=&quot;Mozilla add-ons repository&quot;&gt;centralized add-on repository&lt;/a&gt; and once the files are pulled from there, they quickly vanish off the net. Now don&#039;t get me wrong, these plug-ins are now unmaintained software, so you will have to migrate at some point in time, but not necessarily now. You have some time for planning and evaluation of alternatives.&lt;/p&gt;
 &lt;a class=&quot;block_level&quot; href=&quot;https://daniel-lange.com/archives/71-SyncPlaces,-SortPlaces-...-preserving-these-and-other-excellent-Firefox-add-ons.html#extended&quot;&gt;Continue reading &quot;SyncPlaces, SortPlaces ... preserving these and other excellent Firefox add-ons&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 08 Jul 2012 03:45:00 +0000</pubDate>
    <guid isPermaLink="false">https://daniel-lange.com/archives/71-guid.html</guid>
    <category>addon</category>
<category>bookmarks</category>
<category>firefox</category>
<category>mozilla</category>
<category>opensource</category>
<category>plugin</category>
<category>updated</category>

</item>
<item>
    <title>Kubuntu 9.10 (karmic) 64bit firefox java plugin</title>
    <link>https://daniel-lange.com/archives/51-Kubuntu-9.10-karmic-64bit-firefox-java-plugin.html</link>
            <category>Linux</category>
    
    <comments>https://daniel-lange.com/archives/51-Kubuntu-9.10-karmic-64bit-firefox-java-plugin.html#comments</comments>
    <wfw:comment>https://daniel-lange.com/wfwcomment.php?cid=51</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>https://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=51</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;For some unknown reason the (K)Ubuntu developers did not update the Java plugin for firefox after jaunty (yet?).&lt;/p&gt;

&lt;p&gt;The version that Karmic (9.10) pulls out of the multiverse repository is still jaunty&#039;s (9.04).&lt;/p&gt;

&lt;p&gt;So when you try:&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;apt-get install&lt;/span&gt; sun-java6-plugin&lt;/div&gt;

&lt;p&gt;you&#039;ll get something like&lt;/p&gt;

&lt;blockquote&gt;
&lt;pre&gt;&lt;code&gt;   Reading package lists... Done
   Building dependency tree
   Reading state information... Done
   Some packages could not be installed. This may mean that you have
   requested an impossible situation or if you are using the unstable
   distribution that some required packages have not yet been created
   or been moved out of Incoming.
   The following information may help to resolve the situation:
   
   The following packages have unmet dependencies:
     sun-java6-plugin: Depends: sun-java6-bin (= 6-15-1) but 6-16-0ubuntu1.9.04 is to be installed
   E: Broken packages
&lt;/code&gt;&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Duh.&lt;/p&gt;

&lt;p&gt;Actually if you have the Java Runtime Environment (JRE, package name &lt;code&gt;sun-java6-jre&lt;/code&gt;) installed all files needed are already present.&lt;br /&gt;
Just not put in the right place on the filesystem.&lt;/p&gt;

&lt;p&gt;So, run:&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;sudo&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;apt-get install&lt;/span&gt; sun-java6-jre &amp;#160; &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# install JRE if needed&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;sudo&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;ln&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-s&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;usr&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;lib&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;jvm&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;java-&lt;span style=&quot;color: #000000;&quot;&gt;6&lt;/span&gt;-sun&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;jre&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;lib&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;amd64&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;libnpjp2.so &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;usr&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;lib&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;mozilla&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;plugins&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;&lt;/div&gt;

&lt;p&gt;This will install the JRE (if it&#039;s not already installed) and will symlink the firefox plugin for java in place so that it&#039;ll be found after a browser restart.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sun, 06 Dec 2009 17:00:00 +0000</pubDate>
    <guid isPermaLink="false">https://daniel-lange.com/archives/51-guid.html</guid>
    <category>64bit</category>
<category>firefox</category>
<category>java</category>
<category>karmic</category>
<category>kubuntu</category>
<category>mozilla</category>
<category>plugin</category>
<category>ubuntu</category>

</item>

</channel>
</rss>
