<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
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/"
> <channel><title>Comments on: Firefox: Add a Trusted CA</title> <atom:link href="http://www.cyberciti.biz/faq/firefox-adding-trusted-ca/feed/" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/faq/firefox-adding-trusted-ca/</link> <description>Every answer asks a more beautiful question.</description> <lastBuildDate>Fri, 10 Feb 2012 19:55:56 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Viktor</title><link>http://www.cyberciti.biz/faq/firefox-adding-trusted-ca/#comment-66361</link> <dc:creator>Viktor</dc:creator> <pubDate>Wed, 04 Jan 2012 15:55:44 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=5147#comment-66361</guid> <description>This is not a difference between different versions of Firefox but between Firefox for Windows and for Linux (at least Ubuntu). Not sure why this difference exists but it is pretty old.</description> <content:encoded><![CDATA[<p>This is not a difference between different versions of Firefox but between Firefox for Windows and for Linux (at least Ubuntu). Not sure why this difference exists but it is pretty old.</p> ]]></content:encoded> </item> <item><title>By: Viktor</title><link>http://www.cyberciti.biz/faq/firefox-adding-trusted-ca/#comment-66360</link> <dc:creator>Viktor</dc:creator> <pubDate>Wed, 04 Jan 2012 15:53:49 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=5147#comment-66360</guid> <description>This does not seem to work under Ubuntu 11.04. I do not have many computers (3), but there some dozens of users and I copied my CA-certificate to /usr/share/ca-certificates/mozilla/my.crt and even ran &#039;dpkg-reconfigure ca-certificates&#039; selecting this certificate and &#039;update-ca-certificates&#039;, but it seems firefox does not use this database. The certificate does not appear in the certificate list of firefox (for some random user).</description> <content:encoded><![CDATA[<p>This does not seem to work under Ubuntu 11.04. I do not have many computers (3), but there some dozens of users and I copied my CA-certificate to /usr/share/ca-certificates/mozilla/my.crt and even ran &#8216;dpkg-reconfigure ca-certificates&#8217; selecting this certificate and &#8216;update-ca-certificates&#8217;, but it seems firefox does not use this database. The certificate does not appear in the certificate list of firefox (for some random user).</p> ]]></content:encoded> </item> <item><title>By: rduke15</title><link>http://www.cyberciti.biz/faq/firefox-adding-trusted-ca/#comment-61095</link> <dc:creator>rduke15</dc:creator> <pubDate>Thu, 28 Jul 2011 13:40:00 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=5147#comment-61095</guid> <description>@john, your 1000 desktops are probably Windows rather than Linux. But if your user profiles are on a Samba server, it can be quite easy to script. See here: &lt;a href=&quot;http://bahut.alma.ch/2011/07/importing-root-certificates-into.html&quot; rel=&quot;nofollow&quot;&gt;Link #1&lt;/a&gt;.
If you have to do it on Windows and can compile the nss tools or find some binary, you could do something similar in Windows. See here for example: &lt;a href=&quot;http://www.appdeploy.com/messageboards/printable.asp?m=52532&quot; rel=&quot;nofollow&quot;&gt;Link #2&lt;/a&gt;</description> <content:encoded><![CDATA[<p>@john, your 1000 desktops are probably Windows rather than Linux. But if your user profiles are on a Samba server, it can be quite easy to script. See here: <a
href="http://bahut.alma.ch/2011/07/importing-root-certificates-into.html" rel="nofollow">Link #1</a>.</p><p>If you have to do it on Windows and can compile the nss tools or find some binary, you could do something similar in Windows. See here for example: <a
href="http://www.appdeploy.com/messageboards/printable.asp?m=52532" rel="nofollow">Link #2</a></p> ]]></content:encoded> </item> <item><title>By: kace</title><link>http://www.cyberciti.biz/faq/firefox-adding-trusted-ca/#comment-55344</link> <dc:creator>kace</dc:creator> <pubDate>Thu, 03 Feb 2011 21:21:50 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=5147#comment-55344</guid> <description>UPDATE:  For me, anyway, it&#039;s now found under &quot;Tools &gt; Options &gt; ...&quot; vice &quot;Edit &gt; Preferences &gt; ...&quot;   The &quot;... Advanced &gt; Encryption &gt; ...&quot; and so on is the same.  I&#039;ve got version Firefox 3.6.13.</description> <content:encoded><![CDATA[<p>UPDATE:  For me, anyway, it&#8217;s now found under &#8220;Tools &gt; Options &gt; &#8230;&#8221; vice &#8220;Edit &gt; Preferences &gt; &#8230;&#8221;   The &#8220;&#8230; Advanced &gt; Encryption &gt; &#8230;&#8221; and so on is the same.  I&#8217;ve got version Firefox 3.6.13.</p> ]]></content:encoded> </item> <item><title>By: Patrick</title><link>http://www.cyberciti.biz/faq/firefox-adding-trusted-ca/#comment-43720</link> <dc:creator>Patrick</dc:creator> <pubDate>Wed, 16 Sep 2009 22:36:54 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=5147#comment-43720</guid> <description>@John
I suppose it depends on the operating system. But if you have 1k Linux desktops it should be easy (hopefully you have an SSH key installed on each).
Put there IP addresses into a file and from a bash shell do something like this:
for compy in `cat file_with_addresses` ; do scp your_ca.crt root@$compy:/usr/share/ca-certificates/mozilla/ ; ssh root@$compy &#039;ln -s /usr/share/ca-certificates/mozilla/your_ca.crt /etc/ssl/certs/your_ca.pem&#039; ; done
These paths are based on Ubuntu 9.04. If you are running some other distro, you&#039;ll need to figure out the paths for yourself.</description> <content:encoded><![CDATA[<p>@John</p><p>I suppose it depends on the operating system. But if you have 1k Linux desktops it should be easy (hopefully you have an SSH key installed on each).</p><p>Put there IP addresses into a file and from a bash shell do something like this:</p><p>for compy in `cat file_with_addresses` ; do scp your_ca.crt root@$compy:/usr/share/ca-certificates/mozilla/ ; ssh root@$compy &#8216;ln -s /usr/share/ca-certificates/mozilla/your_ca.crt /etc/ssl/certs/your_ca.pem&#8217; ; done</p><p>These paths are based on Ubuntu 9.04. If you are running some other distro, you&#8217;ll need to figure out the paths for yourself.</p> ]]></content:encoded> </item> <item><title>By: John</title><link>http://www.cyberciti.biz/faq/firefox-adding-trusted-ca/#comment-43528</link> <dc:creator>John</dc:creator> <pubDate>Wed, 02 Sep 2009 01:46:02 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=5147#comment-43528</guid> <description>Cool now how do I do it for 1000 desktops?
Cheaper for me to buy a cert from a registered CA.</description> <content:encoded><![CDATA[<p>Cool now how do I do it for 1000 desktops?<br
/> Cheaper for me to buy a cert from a registered CA.</p> ]]></content:encoded> </item> </channel> </rss>
