<?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>Linux &#8211; Roumazeilles.net</title>
	<atom:link href="https://www.roumazeilles.net/news/en/wordpress/category/science-and-geeks/software/linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.roumazeilles.net/news/en/wordpress</link>
	<description>Technology opinions and others</description>
	<lastBuildDate>Sun, 22 Nov 2020 18:40:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Raspberry Pi as a local DNS/DHCP server</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2020/11/23/raspberry-pi-as-a-local-dns-dhcp-server/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2020/11/23/raspberry-pi-as-a-local-dns-dhcp-server/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Mon, 23 Nov 2020 19:21:56 +0000</pubDate>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Routers & networks]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[dnsmasq]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[IPv4]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=15038</guid>

					<description><![CDATA[For a local network supporting a small company or an Internet-active family, it is always possible to rely totally on an Internet Service Provider (ISP) which will provide basic network services straight from the Internet box/router (fibre or ADSL). But, if &#8211; like me &#8211; you want to have more flexibility, you&#8217;d prefer to setup [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>For a local network supporting a small company or an Internet-active family, it is always possible to rely totally on an Internet Service Provider (ISP) which will provide basic network services straight from the Internet box/router (fibre or ADSL). But, if &#8211; like me &#8211; you want to have more flexibility, you&#8217;d prefer to setup your own services.</p>



<p>I noticed the market emergence of nano-computers like Android boxes or Raspberry Pi which allow to easily setup services that may have been prohibitely expensive in the past.</p>



<p>So, I decided to pruchase a Raspberry Pi 3 B+ (a rather cheap network little box, with low power consumption, able to stay online permanently, and easily configurable). I wanted to start by deploying the minimal network services to give me maximum agency.</p>



<p>Minimum feature set included:</p>



<ul class="wp-block-list"><li>A <strong>DHCP </strong>server (to assign IP addresses on the local network with ability to fix some of them in a static list, for easier management)</li><li>A <strong>DNS </strong>server providing<ul><li>DNS request cache (to speed up the overall Internet access of my Internet users)</li><li>Delivery of local network names</li><li>Capacity to allow future DNS filtering (I don&#8217;t care much about adult-content filtering, but I&#8217;d like to stop some of the phishers, even if these two activities are technically identical)</li></ul></li></ul>



<p>In the future, some more services may come handy (nothing of this has been studied here):</p>



<ul class="wp-block-list"><li>An NTP server (for time)</li><li>A WINS Windows names server</li></ul>



<h2 class="wp-block-heading">Comparison</h2>



<p>As a matter of fact, I noticed that two serveurs seemed able to simultanesouly provide DHCP and DNS: <a href="https://nlnetlabs.nl/projects/unbound/about/">Unbound</a> and <a href="https://wiki.debian.org/dnsmasq">dsnmasq</a>.</p>



<p>Unbound highlights:</p>



<ul class="wp-block-list"><li>Lightweight server</li><li>DNSSEC support</li><li>rather security-oriented</li><li>No DNS authoritative server (but able to handle a local domain)</li></ul>



<p>dnsmasq highlights:</p>



<ul class="wp-block-list"><li> Lightweight server</li><li>DNSSEC support</li><li>DHCP and DNS are integrated in the same server</li><li>May use /etc/hosts to feed DNS</li><li>No DNS recursive server (only forward to an authoritative/recursive like 8.8.8.8 or 9.9.9.9 or your ISP DNS server)</li><li>No DNS authoritative server (but able to handle a local domain) </li></ul>



<p>I chose dnsmasq, mainly because of the DNS + DHCP integration.</p>



<h2 class="wp-block-heading">Some surprising discoveries</h2>



<p>Première information vite découverte : les serveurs NAS Synology sont tout à fait incompatibles avec le filtrage de DNS de CleanBrowsing. Celui-ci compte synology.me (service nécessaire pour le DDNS de Synology) dans les domaines à risque. De nombreux services du NAS cessent immédiatement de fonctionner.</p>



<p>Je n&#8217;ai pas vérifié mais il est probable que de nombreux autres services DDNS (Dynamic DNS) soient black-listés pour les mêmes raisons : devant le nombre de petits serveurs Synology (ou autres) mal configurés, ces DDNS renvoient sans doute vers une forte proportion de domaines qui ont été pris en otage par les hackers.</p>



<p>Il faut donc pouvoir gérer cela plus finement si vous avez vous-même votre propre NAS Synology (et sans doute d&#8217;autres marques).</p>



<h2 class="wp-block-heading">Observations</h2>



<p>After a few months of  dnsmasq use on Rapsberry Pi, it is time to comment and share my experience.</p>



<p>First, this worked really well. Even if I had one case of locked down DHCP server (no warning, no error, but killed). I tried finding why, but it was far easier to reboot the server box (On-Off switch) to restore the service. Of course, a few minutes of digging into logs did bring me some worried looks from another network user&#8230;</p>



<p>The DNS filter setup to remove access to some risky domains work perfectly well. But, I have to admit that nothing seems to have triggered that (except my tests). Since this is not the only security barrier on my network, this may be OK. For the record, here is the filter creation script I use:</p>



<pre class="wp-block-preformatted">#!/bin/sh
#Dated 2020-11-10 1.0 Addition of --quiet to wget (to reduce clutter to /var/mail/pi)
#                     *** STABLE RELEASE ***

cd /var/lib/work

#Get anti-phishing filter lists from Internet
wget -q -O ./isc-low.txt 'https://isc.sans.edu/feeds/suspiciousdomains_Low.txt'
wget -q -O ./isc-med.txt 'https://isc.sans.edu/feeds/suspiciousdomains_Medium.txt'
wget -q -O ./isc-hig.txt 'https://isc.sans.edu/feeds/suspiciousdomains_High.txt'
wget -q -O ./yoyo.dnsmasq.txt 'https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&amp;hostformat=nohtml&amp;showintro=0&amp;mimetype=plaintext'
#Remodel the lists into DNSmasq filters
catcherIP='192.168.1.250'
inputfile="./isc-med.txt"
tmpfile="/tmp/.adlist.$$"
tmpconffile="/tmp/.dnsmasq.conf.$$"
configfile="/etc/dnsmasq.filter.conf"
configheader="/etc/dnsmasq.filter.header"

#Start with putting our own header
    [ -f "$configheader" ] &amp;&amp; cat $configheader &gt;&gt; $tmpconffile
#check if TmpFile could be init'd with header
if [ ! -s $tmpconffile ]
then
    echo "temp fil '$tmpconffile' could not be found or is empty; quitting"
    exit
fi
#Remove list headers
cat $inputfile | grep -v "^#" | grep -v "^Site$" &gt; $tmpfile
#Buid list to DNSmasq format, and add it to the file
sed "s/(.*)/address=\/\1\/${catcherIP}/" $tmpfile &gt;&gt; $tmpconffile
#Move the final list to destination
sudo cp $tmpconffile $configfile</pre>



<p>One of the advantages of this server is its speed. I may have been slightly worried (or attentive) before knowing the Raspberry Pi, but there was no reason. Maybe because of the low workload (despite an HTTP server, some distant connexions, and a few local scripts) and because of the good power developed by the CPU, everything is fine and dandy even when a dozen clients are pounding the DNS server (the iPhones are quite insistant in using the netowrk on a continuous basis)).</p>



<p>dnsmasq is perfectly able t manageIPv6 DHCP, and correspondingIPv6 DNS. Documentation about this is terse (if not simply lacking), but it works well and I learned quite a few things. The Raspberry Pi was so reliable that it was IPv6 proxy during some of my tests without any perceptible impact. (I was rightfully impressed).</p>



<p>After initially using dynamic address allocation, I moved the DHCP server into a nearly exclusively static configuration (my own choice in order to have easier local client identification). No big deal, neither in IPv4 nor in IPv6.</p>



<p>Conclusion: Totally positive.</p>



<p>In the future, I may be tempted to deploy more powerful servers for DHCP and DNS for a wider support (maybe or maybe not) and to try a network spy like SNORT or SURICATA. But this is a completely different story. And, in this case, I may be tempted to go to a really powerful solution (I have an Avenger96 under initial trial, but its software support seems to be a real mess).</p>



<h2 class="wp-block-heading">A few other interesting links</h2>



<ul class="wp-block-list"><li>A few other solutions for a DHCP server:<ul><li><a href="https://www.isc.org/dhcp-tools/"></a><a href="https://www.linux.com/tutorials/dnsmasq-easy-lan-name-services/">DNSmasq installation</a> (DHCP only)</li><li>Dragon: <a href="https://blogging.dragon.org.uk/howto-setup-dnsmasq-as-dns-dhcp/">DNSmasq installation</a> (DHCP + DNS)</li><li>Instructables: <a href="https://www.instructables.com/id/Running-your-own-DNSDHCP-Server-the-Easy-way/">installation for DNSmasq</a> (DHCP &amp; DNS)  </li><li><a href="https://wiki.debian.org/DHCP_Server">ISC-DHCP server on Debian</a></li><li><a href="https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/">ISC-DHCP server on Ubuntu</a></li><li><a href="https://wiki.debian.org/DHCP_Server">Tools designed to work with ISC-DHCP</a></li><li><a href="https://wiki.debian.org/DHCP_Server">Fast instructions for installing DHCP, DNS, </a><a href="http://www.raspberry-pi-geek.com/Archive/2014/03/Setting-up-Raspberry-Pi-as-a-DHCP-NTP-and-DNS-server">and NTP on Raspberry Pi</a></li></ul></li><li>Some data about installation of another DNS server:<ul><li><a href="https://www.digitalocean.com/community/tutorials/how-to-configure-bind-as-a-private-network-dns-server-on-debian-9">BIND local-mode DNS server on Debian 9</a></li><li><a href="https://www.digitalocean.com/community/tutorials/how-to-configure-bind-as-an-authoritative-only-dns-server-on-ubuntu-14-04">BIND authoritative DNS server on Ubuntu</a></li><li><a href="https://www.digitalocean.com/community/tutorials/how-to-configure-bind-as-a-caching-or-forwarding-dns-server-on-ubuntu-14-04">BIND &#8220;caching&#8221; or &#8220;forward-only&#8221; DNS server on Ubuntu</a></li></ul></li><li>DNS filters:<ul><li><a href="https://www.gmass.co/blog/domain-blacklists-comprehensive-guide/">THE guide on cleaning DNS from public domain lists</a></li></ul></li><li>Setup of a LaSynology NAS or router:<ul><li><a href="https://www.synology.com/fr-fr/knowledgebase/DSM/tutorial/Network/How_to_set_up_your_domain_with_Synology_DNS_Server">Configuration of a DNS server on DSM</a></li></ul></li><li>Server comparisons:<ul><li><a href="https://computingforgeeks.com/bind-vs-dnsmasq-vs-powerdns-vs-unbound/">BIND vs. dnsmasq vs PowerDNS vs Unbound</a><br><br> <br><br> </li></ul></li></ul>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2020/11/23/raspberry-pi-as-a-local-dns-dhcp-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>MS Office or OpenOffice? The comparison</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2010/03/26/ms-office-or-openoffice-the-comparison/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2010/03/26/ms-office-or-openoffice-the-comparison/#comments</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Fri, 26 Mar 2010 20:12:13 +0000</pubDate>
				<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Spreadsheet]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Word processor]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS-Office]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[OpenOffice]]></category>
		<category><![CDATA[PowerPoint]]></category>
		<category><![CDATA[Word]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=4074</guid>

					<description><![CDATA[Thanks to Bruce Byfield of Linux Journal, it is now possible to have a relatively fair comparison of the heavy-weight champion of office suites (Microsoft Office or MS-Office) and the young hyper-active challenger (OpenOffice). Obviously, OpenOffice advantage is that it is cheaper than Microsoft Office: It&#8217;s free. But what are the other ways to compare [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" src="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2010/03/microsoftoffice-vs-openoffice.jpg" alt="microsoftoffice vs openoffice" title="microsoftoffice vs openoffice" width="350" height="261" class="alignleft size-full wp-image-4077" srcset="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2010/03/microsoftoffice-vs-openoffice.jpg 350w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2010/03/microsoftoffice-vs-openoffice-300x224.jpg 300w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2010/03/microsoftoffice-vs-openoffice-150x112.jpg 150w" sizes="(max-width: 350px) 100vw, 350px" /></p>
<p>Thanks to Bruce Byfield of <a href="http://www.linuxjournal.com/magazine/openofficeorg-vs-microsoft-office">Linux Journal</a>, it is now possible to have a relatively fair comparison of the heavy-weight champion of office suites (<a href="http://www.microsoft.com/office/">Microsoft Office</a> or MS-Office) and the young hyper-active challenger (<a href="http://www.openoffice.org/">OpenOffice</a>).</p>
<p>Obviously, OpenOffice advantage is that it is cheaper than Microsoft Office: It&#8217;s free.</p>
<p>But what are the other ways to compare both? Bruce goes to great lengths (3 pages) to try and give us a balanced comparison around the overall interface, the MS-Word/OpenOffice Writer word processors, MS-Excel/OpenOffice Calc spreadsheet applications, PowerPoint/OpenOffice Impress presentation tools.</p>
<p>Interestingly, and I believe that this is a credit OpenOffice, the differences are really small and the price (free) of OpenOffice will be heavy in the decision.</p>
<p><a href="http://www.linuxjournal.com/magazine/openofficeorg-vs-microsoft-office">OpenOffice.org vs. Microsoft Office</a></p>
<p>By the way, did I mention that I am a strong advocate of OpenOffice? I have been using it both for personal and professional activities, for 10 years now; And it it keeps improving a very good base into an excellent tool (including the full compatibility with Microsoft files).</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2010/03/26/ms-office-or-openoffice-the-comparison/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Less keyboard, more work</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2010/02/17/less-keyboard-more-work/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2010/02/17/less-keyboard-more-work/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Wed, 17 Feb 2010 20:02:05 +0000</pubDate>
				<category><![CDATA[Create a web site]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3935</guid>

					<description><![CDATA[We do so much typing that we tend to forget about it. But there are ways to improve the situation (ensuring that you type less to produce more text).one of the best ways is to identify the texts you keep typing on the keyboard. then, you just have to use a utility program to help [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>We do so much typing that we tend to forget about it. But there are ways to improve the situation (ensuring that you type less to produce more text).one of the best ways is to identify the texts you keep typing on the keyboard. then, you just have to use a utility program to help you setup a shortcut to be used.</p>
<p>The program will recognize the shortcut, then automatically replace it with the correct text. Type &#8220;<code>win</code>&#8220;, see &#8220;<code>Windows</code>&#8221; appear. Type &#8220;<code>HTML</code>&#8221; and see a full block of selected HTML code appear (I use such shortcuts to create blocks of HTML code on this site, reducing typing time and avoiding typos).</p>
<p>For this, you need to be supported by a small program. I found two interesting ones :</p>
<ul>
<li><a href="http://www.autohotkey.com/download/">AutoHotkey</a> (for Windows) allows to write very simple scripts (examples are provided); I use it everyday (it works perfectly on a Windows 7 installation, by the way).</li>
<li>Some people would prefer to explore <a href="http://lifehacker.com/238306/lifehacker-code-texter-windows">Texter</a> and <a href="http://www.smileonmymac.com/TextExpander/">TextExpander</a>, too.</li>
<li>If you are on Linux, you will prefer to have a look at <a href="http://autokey.sourceforge.net/">AutoKey</a> which is freely inspired by AutoHokey  (copying is a form of flattery)</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2010/02/17/less-keyboard-more-work/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>OpenOffice.org v3.2 available for free download</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2010/02/15/openoffice-org-v3-2-available-for-free-download/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2010/02/15/openoffice-org-v3-2-available-for-free-download/#comments</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Mon, 15 Feb 2010 18:22:12 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Spreadsheet]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Word processor]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[OpenOffice]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=4024</guid>

					<description><![CDATA[The excellent office desktop suite, OpenOffice.org (Word, Excel and PowerPoint, in a free form, if you want) just moved to version 3.2 (still free). New features: Faster start-up times Compatibility with MS-Office 2007 documents Better Compatibility with MS-Office 97, 2000, XP documents, encrypted with a password Importation of dynamic tables from Excel Comments are now [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The excellent office desktop suite, <a href="http://www.OpenOffice.org/">OpenOffice.org</a> (Word, Excel and PowerPoint, in a free form, if you want) just moved to version <a href="http://download.OpenOffice.org/other.html#tested-full">3.2</a> (still free).</p>
<p>New features:</p>
<ul>
<li>Faster start-up times</li>
<li>Compatibility with MS-Office 2007 documents</li>
<li>Better Compatibility with MS-Office 97, 2000, XP documents, encrypted with a password</li>
<li>Importation of dynamic tables from Excel</li>
<li>Comments are now possible in the Impress presentations</li>
<li>Improvements to the Calc cells handling (cell merging, sorting, etc.)</li>
</ul>
<p>For Windows, Mac and GNU/Linux.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2010/02/15/openoffice-org-v3-2-available-for-free-download/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>IE6 becomes Firefox 3.6 with the help of China</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2010/01/24/ie6-becomes-firefox-3-6-with-the-help-of-china/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2010/01/24/ie6-becomes-firefox-3-6-with-the-help-of-china/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Sun, 24 Jan 2010 12:49:18 +0000</pubDate>
				<category><![CDATA[Create a web site]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Liberties]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Routers & networks]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Opera]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3953</guid>

					<description><![CDATA[This week has seen a pretty exhilarating story develop in front of our Internet eyes. Started as a muddy conflict between Google and the People&#8217;s Republic of China, it turned into a Firefox marketing victory. Let me summarize it a bit. In the beginning was Google which installed its servers in China in 2006. The [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This week has seen a pretty exhilarating story develop in front of our Internet eyes. Started as a muddy conflict between Google and the People&#8217;s Republic of China, it turned into a Firefox marketing victory. Let me summarize it a bit.</p>
<div class="left_box"><a href="http://www.flickr.com/photos/35983122@N08/3878552354/" title="google chrome browser logo" target="_blank"><img decoding="async" src="https://farm3.static.flickr.com/2500/3878552354_1ed70b8571_m.jpg" alt="google chrome browser logo" border="0" /></a></div>
<p>In the beginning was Google which installed its servers in China in 2006. The &#8220;<em>do no evil</em>&#8221; company accepted the conditions of the government of the PRC and included heavy filtering and censoring of its search results (looking for <code>Tienanmen</code> will produce wildly different results in and out of China). But in January 2009, Google discovered that some hackers obtained some detailed information out of its own servers at this was targeting both American companies and Chinese political opponents or partisans of free speech in China. Subsequently, Google announced its intention of both lifting the censorship and leaving China.</p>
<p>What is still very unclear:</p>
<ul>
<li>Is Google really serious about these two options?</li>
<li>Is the main reason for its ire, the political chase or the technological spying? (the US government including Hilary Clinton pushed hard with Google)</li>
</ul>
<p>What is clear:</p>
<ul>
<li>The breach of information seems limited (only email subject lines have been breached, not contents).</li>
<li>The hackers were affiliated to Chinese official bodies and did not only target Google.</li>
<li>The hackers used some social engineering and security issues present in Internet Explorer and Adobe PDF, which were probably known but not closed by Microsoft and Adobe.</li>
</ul>
<p>So, when such information appears in wide open channels of the world press, what happens? Most experts started commenting on the security loopholes in Internet Explorer 6 (and about Adobe PDF reader, too). Many people observed that Internet Explorer 6 is rather old and it is unfortunate that so many people still use it despite the known fact that it is a security liability when browsing the Internet. With such a rush, some very official people also asked for replacement of Internet Explorer (mainly v6) to be replaced with more modern browsers. Even representatives of the German, French and Australian governments asked their countries to replace Internet Explorer with something else.</p>
<p><figure id="attachment_3954" aria-describedby="caption-attachment-3954" style="width: 500px" class="wp-caption alignright"><img decoding="async" src="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2010/01/firefox-explosion.jpg" alt="3x Firefox" title="firefox-explosion" width="500" height="406" class="size-full wp-image-3954" srcset="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2010/01/firefox-explosion.jpg 500w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2010/01/firefox-explosion-300x244.jpg 300w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2010/01/firefox-explosion-150x122.jpg 150w" sizes="(max-width: 500px) 100vw, 500px" /><figcaption id="caption-attachment-3954" class="wp-caption-text">3x Firefox</figcaption></figure></p>
<p>The competition has seen this as a godsend since it created a rush for the other available browsers. For example (see the graph on the side), Firefox saw a <a href="http://www.downloadsquad.com/2010/01/20/government-warnings-against-ie-cause-orgy-of-firefox-opera-down/">brutal explosion</a> of its downloads in Germany (nearly 300,000 Germans have downloaded Firefox in four days): about three times more than usual. It has been true in other countries even if it was not measured as precisely, and it has been observed by the other browsers Opera, Safari, Chrome (currently profiting from heavy advertising in some European countries like France).</p>
<p>This was definitely a good thing since it was bringing better browsers to many computers. It could have stayed there but there were several reaction and parallel events happening at the same time. The first one was that Firefox was preparing a major upgrade to the successful browser (in many parts of the world Firefox is now used by more Internet users than Internet Explorer). Named v3.6, this new version is bigger than what could have been expected from its small number increase (from 3.5 to 3.6 should have been a minor upgrade). This major event accelerated the rush, with people looking for features like:</p>
<ul>
<li>Built-in skins, to make it more personalized</li>
<li>Faster, more stable</li>
<li>More security conscious with the addition of user-level messages about risks, including reminders about what plug-ins are outdated and must be upgraded.</li>
<li>Visual tab previews, which show you the tabs when you press Ctrl-Tab</li>
<li>Aptitude to browse without leaving too many footsteps and traces in your PC (good for clean browsing like when you visit Adult sites)</li>
</ul>
<p>This version is also appreciated by developers who will find a bunch of little improvements (like CSS gradients).</p>
<p>This is not only a great story to read. This is a great browser and you should consider downloading <a href="http://www.mozilla.com/en-US/">Firefox 3.6</a> now!</p>
<div class="right_box"><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/pYQ6jD8k4f4&#038;hl=fr_FR&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="https://www.youtube.com/v/pYQ6jD8k4f4&#038;hl=fr_FR&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></div>
<p>If you are not completely convinced, you should also consider downloading the newest <a href="http://www.opera.com/">Opera browser</a>. Opera v10.10 has been available for a few months now and it also offering these advantages, plus some neat features like:</p>
<ul>
<li>Opera Unite: to easily share information between Opera users and browsers, without using a web site or a share folder on some social network.</li>
<li>Opera Turbo: to adapt Opera to very slow Internet connections.</li>
<li>Speed dial: to get a faster access to some web sites you choose (bookmarks on steroids).</li>
<li>Mouse moves for faster commands.</li>
<li>Opera link: to share bookmarks, speed dial configurations between several machines where you use Opera.</li>
</ul>
<p><a href="http://www.opera.com/">Opera</a> is clearly my preferred browsing solution (even if I need to test my web sites on everything I can find, Opera is the central hub of my Internet browsing). Go and <a href="http://www.opera.com/download/">download Opera v10.10</a> now.</p>
<p>And, if you are not sure yet, I can also offer the small and fast browser from Google: <a href="http://www.google.com/chrome?hl=en">Chrome</a>. Since it all started around Google and China, it was worth mentioning, of course.</p>
<p>All this has been going so fast that Microsoft needed to do something. Of course, they have a newer version of Internet Explorer (IE8 is included in Windows 7 and can be <a href="http://www.microsoft.com/nz/windows/internet-explorer/default.aspx">downloaded freely</a>. But this was not enough, too many people were starting to complain that Microsoft may wait about a month before updating IE6 in the normal update cycle. Even worse, some experts started telling the world that Microsoft actually was aware of this flaw in IE6 for many months. In such conditions, not doing anything usually turns out to produce a public relations nightmare and prepares for bad wind.</p>
<p>So, Microsoft rushed an <em>out-of-band update to IE6</em> and Windows Update is now offering the correction to all Windows users still using IE6 (of course, you still have to use Windows Update and it is well known that too many people do not have this configured or do not accept the proposed updates &#8211; this is wrong and one the reasons so many PCs are infected with Trojan horses, virus and adwares). Now, if you did not move to a later Windows version and if you did not take advantage of the much better IE7 or IE8, it&#8217;s time to <a href="http://www.microsoft.com/technet/security/bulletin/ms10-002.mspx">upgrade your old hag</a>.</p>
<p>We can expect to see a few more updates to this story in the future, but there is a lesson to be learned (by Google, and most Internet users): </p>
<blockquote><p>Always keep your browser up-to-date and refrain from clicking on any link in a mail message you did not expect.</p></blockquote>
<p>Additionally, there is a lesson for Microsoft:</p>
<blockquote><p>Sorry! but even the older software has to be kept alive when you are or have been the near-monopoly on this technology. This comes with responsibilities.</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2010/01/24/ie6-becomes-firefox-3-6-with-the-help-of-china/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Cygnus for Windows 7</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2010/01/23/cygnus-for-windows-7/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2010/01/23/cygnus-for-windows-7/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Sat, 23 Jan 2010 19:00:57 +0000</pubDate>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Cygnus]]></category>
		<category><![CDATA[GNU]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3943</guid>

					<description><![CDATA[The Cygnus name will certainly remind you of something ig you are interested into GNU/Linux, but maybe not more. Actually, this is a software package which has been designed to provide a lot of the &#8220;basic&#8221; Linux commands to be used from inside a Command-Line box of Windows. Version 1.7 of Cygnus is now available [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The Cygnus name will certainly remind you of something ig you are interested into GNU/Linux, but maybe not more. Actually, this is a software package which has been designed to provide a lot of the &#8220;basic&#8221; Linux commands to be used from inside a Command-Line box of Windows.</p>
<p>Version 1.7 of <a href="http://cygwin.com/">Cygnus</a> is now available that supports Windows 7 (but drops support for Windows 95, 98 &#038; Me).</p>
<p>As if this was not enough, this version also has the capability to configure IPv6 (if you are already attracted by this solution) or supports multiple installations.</p>
<p><a href="http://cygwin.com/ml/cygwin-announce/2009-12/msg00027.html">Cygnus v1.7-1.1 new release</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2010/01/23/cygnus-for-windows-7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The space shuttle as wallpaper</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/12/22/the-space-shuttle-as-wallpaper/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/12/22/the-space-shuttle-as-wallpaper/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Tue, 22 Dec 2009 13:36:49 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Graphics & display]]></category>
		<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photo & Graphics]]></category>
		<category><![CDATA[Web sightings]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[NASA]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[wallpaper]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3877</guid>

					<description><![CDATA[The larger our displays, the tougher it gets to find adequate wallpapers. NASA (through a sélection from Chamorro) comes to our resscue with these exceptionnaly beautiful high-resolution images. Our computer will have a hig-technology look even in 4000&#215;3000 pixels. You can notice that these images being free of copyright will allow to produce impressive posters [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The larger our displays, the tougher it gets to find adequate wallpapers. NASA (through <a href="http://chamorrobible.org/gpw/gpw-200911.htm">a sélection from Chamorro</a>) comes to our resscue with these exceptionnaly beautiful high-resolution images. Our computer will have a hig-technology look even in 4000&#215;3000 pixels.</p>
<p><figure id="attachment_4246" aria-describedby="caption-attachment-4246" style="width: 800px" class="wp-caption aligncenter"><a href="http://chamorrobible.org/gpw/gpw-200911.htm"><img decoding="async" src="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2009/12/gpw-200911-NASA-ISS021-E-032920-Space-Shuttle-Atlantis-STS-129-over-the-Mediterranean-Sea-20091125.jpg" alt="Atlantis Space Shuttle" title="gpw-200911-NASA-ISS021-E-032920-Space-Shuttle-Atlantis-STS-129-over-the-Mediterranean-Sea-20091125" width="800" height="530" class="size-full wp-image-4246" /></a><figcaption id="caption-attachment-4246" class="wp-caption-text">Atlantis Space Shuttle</figcaption></figure></p>
<p>You can notice that these images being free of copyright will allow to produce impressive posters if you agree not to make it a commercial venture. Idea?</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/12/22/the-space-shuttle-as-wallpaper/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>1 minute for a faster Internet (DNS)</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/12/08/1-minute-for-a-faster-internet-dns/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/12/08/1-minute-for-a-faster-internet-dns/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Mon, 07 Dec 2009 22:36:19 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Routers & networks]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google DNS]]></category>
		<category><![CDATA[server]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3857</guid>

					<description><![CDATA[There are few things that you can do to significantly improve the speed of your Internet connection. Of course, you can switch to another Internet Service Provider, but it&#8217;s a mess. On the opposite, it is easy to have an sub-optimal connection because of the response time of the DNS server of your Internet Provider. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="http://code.google.com/p/namebench/"><img loading="lazy" decoding="async" src="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2009/12/namebench_macosx.png" alt="namebench_macosx" title="namebench_macosx" width="550" height="308" class="aligncenter size-full wp-image-4223" /></a></p>
<p>There are few things that you can do to significantly improve the speed of your Internet connection. Of course, you can switch to another Internet Service Provider, but it&#8217;s a mess. On the opposite, it is easy to have an sub-optimal connection because of the response time of the DNS server of your Internet Provider. This server offers a translation service a domain name (for example, www.roumazeilles.net) into its equivalent numeric IP address (the only one that the web browser really understands and needs).</p>
<p>But all DNS servers are not born equal and if those offered by your Internet Service Provider (ISP) have an advantage (they are nearer to your own computer), they are not always the fastest ones. <a href="http://code.google.com/p/namebench/">NameBench</a> gives you the opportunity to easily and automatically check what DNS server is the most efficient (and to compare it with your own current DNS configuration).</p>
<p>In my own personal case, I just reduced DNS times by 50% (no less!) while I thought I had a rather good configuration. As a matter of fact, Neuf Telecom servers are faster that those from Free&#8230;</p>
<p>This works on Windows, MacOS as well as GNU/Linux.</p>
<p>By the way, for those of you who may be wondering, Yes! I included the all new Google DNS as one of the tested options and it was far slower than most of the other freely available possibilities.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/12/08/1-minute-for-a-faster-internet-dns/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Best PDF reader</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/09/24/best-pdf-reader/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/09/24/best-pdf-reader/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Thu, 24 Sep 2009 15:51:35 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[PDF]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3593</guid>

					<description><![CDATA[With the repeated announcement of (minor) incidents with the security of the original PDF reader from Adobe, I wondered what could be a good replacement. Obviously, it seems important to stay around free or low prices (Adobe Acrobat: Windows/Mac/Linux, Basic: free, Pro: $299), but is it possible to beat the Adobe product to read PDF [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>With the repeated announcement of (minor) incidents with the security of the original PDF reader from Adobe, I wondered what could be a good replacement. Obviously, it seems important to stay around free or low prices (Adobe Acrobat: Windows/Mac/Linux, Basic: free, Pro: $299), but is it possible to beat the Adobe product to read PDF files?</p>
<ul>
<li><a href="http://www.docu-track.com/home/prod_user/PDF-XChange_Tools/pdfx_viewer/">PDF-XChange</a> (Windows, Basic: free, Pro: $34): loads real fast (much faster than the Adobe viewer), has all the basic options (annotations, graphic annotations, etc.) and the Pro version allows to reorganize the pages of a document or to extract text from it.</li>
<li><a href="http://www.foxitsoftware.com/">Foxit</a> (Windows/Linux, Basic: free, Pro Pack: $39.99): loads even faster, allows annotations (but only the Pro versio does it without watermark).</li>
<li><a href="http://blog.kowalczyk.info/software/sumatrapdf/download.html">Sumatra PDF</a> (Windows, free): is even simple; everything is done for sheer speed.</li>
<li>Apple PDF Preview (Mac, free): is very powerful (and it&#8217;s free, remember) and included in the MacOS offering; annotations, extraction, reorganization, all is available</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/09/24/best-pdf-reader/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Give your Linux a Mac look</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/09/18/give-your-linux-a-mac-look/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/09/18/give-your-linux-a-mac-look/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Fri, 18 Sep 2009 17:44:59 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Mac]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3614</guid>

					<description><![CDATA[Mac4Lin v1.0 is a free download for Linux systems which will allow your machine to appear very similar to a recent Mac.]]></description>
										<content:encoded><![CDATA[<p><a href="http://phoenix-ani.blogspot.com/2009/06/mac4lin-ver10-released.html">Mac4Lin v1.0</a> is a free download for Linux systems which will allow your machine to appear very similar to a recent Mac.</p>
<p><img loading="lazy" decoding="async" src="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/09/Mac4Lin.png" alt="Mac4Lin" title="Mac4Lin" width="640" height="400" class="aligncenter size-full wp-image-3615" srcset="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/09/Mac4Lin.png 640w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/09/Mac4Lin-300x188.png 300w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/09/Mac4Lin-600x375.png 600w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/09/Mac4Lin-150x94.png 150w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/09/18/give-your-linux-a-mac-look/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>User manual of OpenLDAP</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/08/12/user-manual-of-openldap/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/08/12/user-manual-of-openldap/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Wed, 12 Aug 2009 18:20:34 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[OpenLDAP]]></category>
		<category><![CDATA[tutorial]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3439</guid>

					<description><![CDATA[A good bookmark: Using OpenLDAP on Debian Woody to serve Linux and Samba Users is a user manual for OpenLDAP; But it does a lot more than merely explaining the installation of this directory on Debian Linux. It can be considered as a proper training to OpenLDAP in more ways than one. But if you [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>A good bookmark: <a href="http://home.subnet.at/~max/ldap/#intro">Using OpenLDAP on Debian Woody to serve Linux and Samba Users</a> is a user manual for OpenLDAP; But it does a lot more than merely explaining the installation of this directory on Debian Linux. It can be considered as a proper training to OpenLDAP in more ways than one.</p>
<p>But if you consider that this is not the right thing, you could thing a more organized (but less readable) description of LDAP: &#8220;<a href="http://beginlinux.com/server_training/server-managment-topics/1015-basics-of-ldap">Basics of LDAP</a>&#8221; which is also very much Linux-oriented, of course.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/08/12/user-manual-of-openldap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the best SSD drive today?</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/07/27/what-is-the-best-ssd-drive-today/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/07/27/what-is-the-best-ssd-drive-today/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Mon, 27 Jul 2009 12:13:33 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[SSD]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3500</guid>

					<description><![CDATA[SSD drives are those disk drives that are not using rotating platters with data stored magnetically, but that are based upon a set Flash memory components (so, without any mobile part, and with a performance that has nothing to do with even the fastest magnetic hard disk drives). SSD drives are expensive but, with costs [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><figure id="attachment_3838" aria-describedby="caption-attachment-3838" style="width: 300px" class="wp-caption alignleft"><a href="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2009/07/intel_ssds_X25-M.jpg"><img loading="lazy" decoding="async" src="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2009/07/intel_ssds_X25-M-300x173.jpg" alt="Intel X25-M" title="intel_ssds_X25-M" width="300" height="173" class="size-medium wp-image-3838" /></a><figcaption id="caption-attachment-3838" class="wp-caption-text">Intel X25-M</figcaption></figure></p>
<p>SSD drives are those disk drives that are not using rotating platters with data stored magnetically, but that are based upon a set Flash memory components (so, without any mobile part, and with a performance that has nothing to do with even the fastest magnetic hard disk drives). SSD drives are expensive but, with costs are plummeting, the most expert and demanding users are starting to look at them dreamingly.</p>
<p>But everything shows that the SSD drives are not all equal (there is still an intense competition at this apex of performance). We see many a product recommended, often without all the technical arguments.</p>
<p>The &#8220;<a href="http://www.techreport.com/articles.x/17136/1">A look at SSD performance in Windows Vista &#8211; The more things change&#8230;</a>&#8221; article from Geoff Gasior (The Tech Report) is definitely full of little gems because of that: It comes after a large number of tests (and many articles on the same subject) and compares finely the most representative products of the market.</p>
<div class="right25_box">
<p>Intel is presenting new X25-M SSD products that are supposed to bring prices down and performance up (in a nice gray metal case). See <a href="http://arstechnica.com/hardware/news/2009/07/intels-new-34nm-ssds-cut-prices-by-60-percent-boost-speed.ars">more details</a> in Ars Technica early presentation.</div>
<p>Without telling it all (read the article. It&#8217;s worth it and you will learn many things), there are a few important conclusions drawn:</p>
<ul>
<li>Initial performance is usually much reduced after some time and some even light use,</li>
<li>X25-M from Intel is probably the best drive around, the most well-balanced (recommended for a purchase in the short-term),</li>
<li>The OCZ Summit is the faster in write operations (Intel is an ace of reading),</li>
<li>the differences between suppliers come more from the controller used (Intel, Samsung Indilinx) than from the the brand.</li>
<li>The arrival of Windows 7 (with its <em>TRIM</em> feature support) will probably change the situation (all the more because TRIM support is not yet certain from Intel) and, if you can wait, you will be better being patient and hope for Windows 7 and the new products and new firmwares made just for it.</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/07/27/what-is-the-best-ssd-drive-today/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Planetary pictures and wallpapers</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/07/11/planetary-pictures-and-wallpapers/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/07/11/planetary-pictures-and-wallpapers/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Sat, 11 Jul 2009 13:45:19 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Graphics & display]]></category>
		<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photo & Graphics]]></category>
		<category><![CDATA[Record images]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web sightings]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[wallpaper]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3140</guid>

					<description><![CDATA[I consider that the most useful and often the most interesting wallpapers for your computer desktop are images that are relatively feature-less. A picture full of little details continuously grabbing your attention is a major nuisance. It&#8217;s much better to have either a very smooth image or a photo containing a lot of continuous tones. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I consider that the most useful and often the most interesting wallpapers for your computer desktop are images that are relatively feature-less. A picture full of little details continuously grabbing your attention is a major nuisance. It&#8217;s much better to have either a very smooth image or a photo containing a lot of continuous tones.</p>
<p><figure id="attachment_3141" aria-describedby="caption-attachment-3141" style="width: 224px" class="wp-caption aligncenter"><a href="http://neosmart.net/gallery/v/wallpapers/Win7/Official/"><img loading="lazy" decoding="async" src="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/04/windows7_wallpapers-224x300.jpg" alt="Windows 7 official wallpapers" title="windows7_wallpapers" width="224" height="300" class="size-medium wp-image-3141" /></a><figcaption id="caption-attachment-3141" class="wp-caption-text">Windows 7 official wallpapers</figcaption></figure></p>
<p>Look at the full set of the Windows 7 wallpapers. This is the upcoming version of Windows (after Windows Vista, it seems that Microsoft intends to switch back to a numbering scheme). Most of them may be colourful, but with very smooth surfaces where your icons will be appearing quite neatly and they offer a nice contrast.</p>
<p><figure id="attachment_3142" aria-describedby="caption-attachment-3142" style="width: 500px" class="wp-caption alignright"><a href="http://hirise.lpl.arizona.edu/ESP_011425_1775"><img loading="lazy" decoding="async" src="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/04/esp_011425_1775.jpg" alt="Fresh Impact Crater Formed between February 2005 and July 2005 / Credit: NASA/JPL/University of Arizona" title="esp_011425_1775" width="500" height="333" class="size-full wp-image-3142" srcset="https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/04/esp_011425_1775.jpg 500w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/04/esp_011425_1775-300x200.jpg 300w, https://www.roumazeilles.net/news/en/wordpress/wp-content/uploads/2009/04/esp_011425_1775-150x100.jpg 150w" sizes="auto, (max-width: 500px) 100vw, 500px" /></a><figcaption id="caption-attachment-3142" class="wp-caption-text">Fresh Impact Crater Formed between February 2005 and July 2005<br />Credit: NASA/JPL/University of Arizona</figcaption></figure></p>
<p>So, I was quite interested when I stumbled upon the collection of pictures taken by the <a href="http://en.wikipedia.org/wiki/Hirise">HiRise</a> (<em>High Resolution Imaging Science Experiment</em> camera installed on board the Mars Reconnaissance Orbiter). Shooting photos of Mars surface, this photo camera brings extraordinary color images that provide nice patterns to be used as background for your Windows desktop (or even Linux or Mac desktop) and can be renewed quite regularly: Their <a href="http://hirise.lpl.arizona.edu/katalogos.php">catalog</a> is available on the University of Arizona web site.</p>
<p>Furthermore, they provide an enormous resolution for their images which is a very good way to extract any size you may need for your extra-high-resolution background or to cover your 2- or 3-LCD display. Or even more. If you feel that there own selection of wallpapers is not enough:</p>
<ul>
<li>800&#215;600
<li>1024&#215;768</li>
<li>1152&#215;864</li>
<li>1280&#215;960</li>
<li>1440&#215;1080</li>
<li>1600&#215;1200</li>
<li>1920&#215;1440</li>
<li>2048&#215;1536</li>
<li>2560&#215;1600</li>
</ul>
<p>You can still stick to the original size (JPEG-2000 format images range between 0.5GB and 3GB).</p>
<p>And the good news is that there is <a href="http://hirise.lpl.arizona.edu/media/usage.php">no copyright restrictions</a>, so you could do pretty much what you want with them: Really free desktop wallpapers.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/07/11/planetary-pictures-and-wallpapers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Your OS passwords are not safe</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/05/24/your-os-passwords-are-not-safe/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/05/24/your-os-passwords-are-not-safe/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Sun, 24 May 2009 10:41:39 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[password]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3179</guid>

					<description><![CDATA[You choose your passwords as the most sophisticated and the strongest as you understand the importance to protect your computer. But did you know that this is nearly useless? A few commands and here is your safe password replaced or removed by a mere user, by your youngest nephew. On Windows, it&#8217;s enough to use [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>You choose your passwords as the most sophisticated and the strongest as you understand the importance to protect your computer. But did you know that this is nearly useless? A few commands and here is your safe password replaced or removed by a mere user, by your youngest nephew.</p>
<ul>
<a href="http://ophcrack.sourceforge.net/"><img loading="lazy" decoding="async" src="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2009/04/logo_complet.png" alt="logo_complet" title="logo_complet" width="197" height="32" class="alignright size-full wp-image-3460" /></a>	</p>
<li>On <strong>Windows</strong>, it&#8217;s enough to use the bootable CD-ROM of <font color="#DDDDDD"><a href="http://ophcrack.sourceforge.net/">Ophcrack</a></font> which is available as <em>Open Source</em>. Reboot and watch the software program find the Windows Administrator password&#8230;</li>
<li>Ophcrack also works on <strong>Mac</strong> (and Linux) but with OSX10.4, it&#8217;s enough to use the Apple installation CD and to choose &#8220;Utilities&#8221; to run &#8220;Reset the password&#8221;. On OSX10.5, you&#8217;ll have to reboot, press Command+S, then type the following at the prompt:</li>
<pre>fsck -fy
mount -uw /
launchctl load /System/Library/LaunchDaemons/com.apple.DirectoryServices.plist
dscl . -passwd /Users/UserName newpassword</pre>
<li>If on <strong>Linux</strong>, if boot is controled by GRUB, it&#8217;s enough to press ESC during the boot sequence to choose &#8216;Recovery Mode&#8217; which will will start you as root without even knowing the password. Just change it now&#8230;</li>
<li>But even better (or worse), on Linux again, here is a list of <a href="http://www.handlewithlinux.com/10-ways-of-resetting-a-lost-linux-root-password">10 ways of resetting a lost linux root password</a></li>
</ul>
<p>Plus ou moins inspiré de <a href="http://www.joetech.com/2009/01/29/how-to-crack-the-account-password-on-any-operating-system/">JoeTech</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/05/24/your-os-passwords-are-not-safe/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Computer skills</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2009/05/01/computer-skills/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2009/05/01/computer-skills/#comments</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Fri, 01 May 2009 09:05:20 +0000</pubDate>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Create a web site]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[New web site]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[fun]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=3080</guid>

					<description><![CDATA[From GraphJam.]]></description>
										<content:encoded><![CDATA[<p><center><img decoding="async" src="https://graphjam.files.wordpress.com/2009/03/song-chart-memes-computer-skills.jpg" alt="Computer skills I have / They think I have" /></center></p>
<p>From <a href="http://graphjam.com/">GraphJam</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2009/05/01/computer-skills/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>10 things Linux does better than Windows</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2008/12/18/10-things-linux-does-better-than-windows/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2008/12/18/10-things-linux-does-better-than-windows/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Thu, 18 Dec 2008 19:41:32 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=2746</guid>

					<description><![CDATA[I found this nice article of the same title (&#8220;10 things Linux does better than Windows&#8220;) on TechRepublic.com. I found it interesting because I could not really find all 10 of them. Will you be able to list all of them? TCO (Total Cost of Ownership): Linux is less expensive in an enterprise because of [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I found this nice article of the same title (&#8220;<a href="http://blogs.techrepublic.com.com/10things/?p=415">10 things Linux does better than Windows</a>&#8220;) on TechRepublic.com. I found it interesting because I could not really find all 10 of them. Will you be able to list all of them?</p>
<ol>
<li><strong>TCO (Total Cost of Ownership)</strong>: Linux is less expensive in an enterprise because of the high cost of per-seat licenses.</li>
<li><strong>Desktop</strong>: Nowadays, Linux is as easy as Windows for most entry-level users.</li>
<li><strong>Server</strong>: So many servers are now running on Linux.</li>
<li><strong>Security</strong>: Windows progressed a lot recently, but is still the target of a lot of malware, virus, Trojans, etc. that Linux has avoided by immunity through faster problem fixes.</li>
<li><strong>Flexibility</strong>: Linux is amazingly able to adapt itself to various applications and environments.</li>
<li><strong>Package management</strong>: Installation of new applications in Linux is years ahead of the dinosaur Install-Software solution of Microsoft.</li>
<li><strong>Community</strong>: Not that the Linux community would be larger, but it is so much more active and willing to support all kinds of users.</li>
<li><strong>Interoperability</strong>: Windows works well with Windows. For the rest, just go to Linux if you want to interoperate with Apple OS X, various Unix systems, various Linux distributions, OS/2, PlayStations, PDAs, and&#8230; Windows.</li>
<li><strong>Command line</strong>: You may not need to use it, but when times come for it, Linux command line is worlds better than Microsoft mock-up.</li>
<li><strong>Evolution</strong>: Do you remember the feel of going from XP to Vista? Do you remember how many times Microsoft forced you to upgrade machines? Linux is much more adaptable and provides a proven smooth path to newer, better versions.</li>
</ol>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2008/12/18/10-things-linux-does-better-than-windows/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Photoshop CS4 vs. The Gimp v2.6</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2008/10/08/photoshop-cs4-vs-the-gimp-v26/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2008/10/08/photoshop-cs4-vs-the-gimp-v26/#comments</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Wed, 08 Oct 2008 16:16:16 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photo & Graphics]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Use your D-SLR]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=2501</guid>

					<description><![CDATA[Newsrooms are full of weird coincidences. For example, we just learned that  two products often presented as direct competition were launched this Fall. To my right, here is Adobe with its boxing champion, Photoshop, loaded up to version CS4. To my left, Linux and its community of free developpers pushing the challenger on the ring, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><figure id="attachment_2744" aria-describedby="caption-attachment-2744" style="width: 300px" class="wp-caption alignleft"><a href="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2008/10/cs4.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-2744" title="cs4" src="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2008/10/cs4-300x233.jpg" alt="Photoshop CS4" width="300" height="233" /></a><figcaption id="caption-attachment-2744" class="wp-caption-text">Photoshop CS4</figcaption></figure></p>
<p>Newsrooms are full of weird coincidences. For example, we just learned that  two products often presented as direct competition were launched this Fall. To my right, here is Adobe with its boxing champion, Photoshop, loaded up to version CS4. To my left, Linux and its community of free developpers pushing the challenger on the ring, version 2.6 of <a href="http://www.gimp.org/">The Gimp</a>.</p>
<p>I am still convinced that this is not an even fight (and Photoshop is favored by bookmakers, for those still doubting it) but both announces are interesting and should be reviewed shortly.</p>
<p>Photoshop CS4 is a new step forward based on the award-winning user interface that made it a best seller and on top-level performance. To this market reference product, Adobe adds the following image-edition-oriented features:</p>
<ul>
<li>Accelerated computation using the modern graphic cards coprocessor and the Windows 64 features (when available, of course), and many tools needed to support a 3rd dimension in graphics design (painting on top of 3Dmodels, 3D compositing, etc.)</li>
<li>Several new tools</li>
<li>Adobe Camera Raw v5 is improved again to include complementary tools applicabel to RAW photo files (local editing, gradual correction filters, etc.)</li>
<li>Bridge CS4 is notably accelerated</li>
</ul>
<p><figure id="attachment_2743" aria-describedby="caption-attachment-2743" style="width: 300px" class="wp-caption alignright"><a href="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2008/10/alternative-2-6-ui-layout-example-one.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-2743" title="alternative-2-6-ui-layout-example-one" src="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2008/10/alternative-2-6-ui-layout-example-one-300x187.jpg" alt="The Gimp 2.6" width="300" height="187" /></a><figcaption id="caption-attachment-2743" class="wp-caption-text">The Gimp 2.6</figcaption></figure></p>
<p>On the other side, The Gimp is now available as version 2.6. Here again, improvements are notable, even if a little smaller:</p>
<ul>
<li>A number of improvements to the user interface (but I still thing that this is the weak point of this software program; Recommendation: Look into <a href="http://www.gimpshop.com/">GimpShop</a> which is a hack to The Gimp in order to make it appear similar to Photoshop)</li>
<li>Improvements to the selection tool</li>
<li>Improvements to the drawing brush</li>
<li>32-bit GEGL data management (perfectly adapted to keep maximum quality in 12- and 14-bit RAW files)</li>
</ul>
<p>All this will probably start again comment wars supporting one or the other solution. But remember that The Gimp is simply <strong>free</strong>. On the contrary, Photoshop CS4 (even if getting the upgrade license and despite the many available options) will still be very expensive (<em>Master Collection</em> at $2,499).</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2008/10/08/photoshop-cs4-vs-the-gimp-v26/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Chrome is not a browser</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2008/09/04/chrome-is-not-a-browser/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2008/09/04/chrome-is-not-a-browser/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Thu, 04 Sep 2008 18:22:38 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Spreadsheet]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web sightings]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Word processor]]></category>
		<category><![CDATA[Chrome]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/?p=2219</guid>

					<description><![CDATA[How could we ignore the launch of Chrome, the new browser from Google? Every is babbling about it, everybody tried it (it can be downloaded here). But after one test run, I believe that I should explain something. Yes, this is a marvellous browser because it takes most of the good things from FireFox, Opera [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><figure id="attachment_2460" aria-describedby="caption-attachment-2460" style="width: 150px" class="wp-caption alignright"><img loading="lazy" decoding="async" class="size-thumbnail wp-image-2460" title="google chrome" src="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2008/09/chrome-205_noshadow-150x150.png" alt="Google Chrome" width="150" height="150" /><figcaption id="caption-attachment-2460" class="wp-caption-text">Google Chrome</figcaption></figure></p>
<p>How could we ignore the launch of Chrome, the new browser from Google? Every is babbling about it, everybody tried it (it can be downloaded <a href="http://www.google.com/chrome">here</a>).</p>
<p>But after one test run, I believe that I should explain something. Yes, this is a marvellous browser because it takes most of the good things from FireFox, Opera or Safari (all IE competition). I immediately noticed:</p>
<ul>
<li>No space is lost in useless graphical waste, everything is concentrating on user display,</li>
<li>The good tab management,</li>
<li>The impressive performance,</li>
<li>The name-completion in the address bar.</li>
</ul>
<p>Some will also have noticed the more technical features like:</p>
<ul>
<li>The separation of applications running in different tabs,</li>
<li>The very small footprint (including for the Javascript).</li>
</ul>
<p>But, all this is hiding a very critical reality: Google did not even try to make a mere browser (it even lacks a simple RSS feed manager). They are more interested in doing more than Internet Explorer competiton. Much more.</p>
<p><figure id="attachment_2461" aria-describedby="caption-attachment-2461" style="width: 481px" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="size-full wp-image-2461" title="chrome-tasks" src="https://www.roumazeilles.net/news/fr/wordpress/wp-content/uploads/2008/09/chrome-tasks.png" alt="Chrome (tasks)" width="481" height="202" /><figcaption id="caption-attachment-2461" class="wp-caption-text">Chrome (tasks)</figcaption></figure></p>
<p>The impressive advantage of this browser is elsewhere: it will fight against Microsoft <strong>applications</strong> allowing to work online in the best possible conditions. Chrome is nearly an Operating System competing with Windows. Yes, because where Windows offered a vehicle to sell Microsoft Office, Chrome will allow Google to develop a wider range of online tools in the path opened by the Desktop applications and GMail.</p>
<p>It will hurt Microsoft real bad. Chrome is obviously the best browser to support this approach. Rock solide, fast (very), reliable and able to support application crashes.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2008/09/04/chrome-is-not-a-browser/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Open the bottle for Wine 1.0</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2008/06/23/open-the-bottle-for-wine-10/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2008/06/23/open-the-bottle-for-wine-10/#respond</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Mon, 23 Jun 2008 17:28:10 +0000</pubDate>
				<category><![CDATA[Legal downloads]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photo & Graphics]]></category>
		<category><![CDATA[Video games]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[wine]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/2008/06/23/open-the-bottle-for-wine-10/</guid>

					<description><![CDATA[After years of preparation and beta-phase, finally, Wine has been able to reach launch as Wine 1.0. Why is it significant? Because this is the software package designed to be able to run many Windows applications from a GNU/Linux distribution. If you want to switch to Linux, you may not be willing to abandon some [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" src="https://www.winehq.org/images/winehq_top_logo.png" alt="Wine" align="left">After years of preparation and beta-phase, finally, <a href="http://www.winehq.org/?announce=1.0">Wine</a> has been able to reach launch as <strong>Wine 1.0</strong>. Why is it significant? Because this is the software package designed to be able to run many Windows applications from a GNU/Linux distribution. If you want to switch to Linux, you may not be willing to abandon some of the applications that were developped for Windows.</p>
<p><a href="http://www.winehq.org/">Wine</a> is there to solve the problem. It runs many games and it runs Photoshop CS2 and CS3 from the box (I did not test it myself, though). It was the plain objective of Google when they allocated money and developers to support this project. They reached their goal.</p>
<p>It is probably the right time to try <a href="http://www.opensuse.org/">OpenSuse 11.0</a> (one of the best new Linux distributions) with <a href="http://www.winehq.org/">Wine</a>.</p>
<p>See also: <a href="http://lifehacker.com/396590/run-windows-apps-in-linux-with-wine-10">Run Windows Apps in Linux with Wine 1.0</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2008/06/23/open-the-bottle-for-wine-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google goes IPv6</title>
		<link>https://www.roumazeilles.net/news/en/wordpress/2008/06/13/google-goes-ipv6/</link>
					<comments>https://www.roumazeilles.net/news/en/wordpress/2008/06/13/google-goes-ipv6/#comments</comments>
		
		<dc:creator><![CDATA[Yves Roumazeilles]]></dc:creator>
		<pubDate>Fri, 13 Jun 2008 10:12:29 +0000</pubDate>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Routers & networks]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web sightings]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IPv4]]></category>
		<guid isPermaLink="false">https://www.roumazeilles.net/news/en/wordpress/2008/06/13/google-goes-ipv6/</guid>

					<description><![CDATA[As you certainly already know if you follow regularly this web site, the Internet addresses will soon be depleted (all used). The end of the Internet world as we know it should be reached around 2011 or 2012. That is the reason why some companies are working to push out the most common Internet protocol [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>As you certainly already know if you follow regularly this web site, the Internet addresses will soon be depleted (all used). The end of the Internet world as we know it should be reached around 2011 or 2012. That is the reason why some companies are working to push out the most common Internet protocol (IPv4) and to make space for its successor (IPv6).</p>
<p>This is why, while the Internet Engineering Task Force (IETF) was preparing a night without IPv4 to reach the largest possible public, Google launched a version of its search engine reserved to IPv6: <a href="http://ipv6.google.com/">ipv6.google.com</a> (If you are like almost everybody, you will not see anything at the end of the link).</p>
<p>Now, we all have to switch as soon as possible.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.roumazeilles.net/news/en/wordpress/2008/06/13/google-goes-ipv6/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
