<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1400765799263079238</id><updated>2012-02-17T00:38:05.941-05:00</updated><category term='linux'/><category term='globaljam'/><category term='Windows integration'/><category term='openweek'/><category term='QA'/><category term='photography'/><category term='books'/><category term='community'/><category term='developerweek'/><category term='logiciel libre'/><category term='monitoring'/><category term='canonical'/><category term='networking'/><category term='advocacy'/><category term='free software'/><category term='cisco'/><category term='social networking'/><category term='commands'/><category term='opensource'/><category term='ubuntu-qc'/><category term='planet-ubuntu'/><category term='launchpad'/><category term='ubuntu'/><category term='testing'/><category term='hardware'/><category term='motu'/><title type='text'>Matt's blog</title><subtitle type='html'>The thoughts of a Systems and Network Administrator and computer geek on networking, computers, and life.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/-/ubuntu-qc'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/search/label/ubuntu-qc'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/-/ubuntu-qc/-/ubuntu-qc?start-index=26&amp;max-results=25'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>29</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-5999434240255539704</id><published>2011-12-15T12:00:00.000-05:00</published><updated>2011-12-15T12:00:58.114-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='canonical'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Enabling IPv6 Privacy Addresses</title><content type='html'>At the last UDS, we once again discussed the state of IPv6 support in Ubuntu. We're in the process of making Ubuntu really rock with IPv6, and this comes with decisions and hard work.&lt;br /&gt;&lt;br /&gt;One of these decisions was to enable IPv6 Privacy Extensions by default. In other words, rather than having an IPv6 address that is derived directly from your network device's MAC address, you'll now have that, but supplemented with time-based temporary addresses, randomly created, used to establish outgoing connections to systems. This leads to higher privacy; because it makes it harder for an eavesdropper to identify whether different addresses really refer to the same node (that's because the *prefix*, which network you come from, would change, but never the last part of the address, unless using privext). How all of this works is described in more details in &lt;a href="http://tools.ietf.org/html/rfc4941"&gt;RFC 4941&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;And leading to this, the hard work. We've recently enabled IPv6 privacy extensions through a new file shipped by &lt;b&gt;procps&lt;/b&gt;: &lt;i&gt;/etc/sysctl.d/10-ipv6-privacy.conf&lt;/i&gt;. Sysctls are parsed early on in the boot process, but perhaps not early enough; which lead to an issue: on some systems, one would see some interfaces with privext enabled, and some others without. This appears to be because some interfaces (eth0 on my system) are initialized early enough in the boot process that it comes up before the sysctl settings are applied.&lt;br /&gt;&lt;br /&gt;With this, another issue: there are three types of sysctl settings for ipv6: default, all, and per-interface entries. According to kernel documentation and help strings; default is meant as the ... &lt;i&gt;default&lt;/i&gt; for future interfaces that would get created. At least, that's how I get it. Per-interface entries are obvious: you're just changing the setting for that particular interface. But what about &lt;i&gt;all&lt;/i&gt;?&lt;br /&gt;&lt;br /&gt;Well, it turns out &lt;i&gt;net.ipv6.conf.all.&lt;b&gt;anything&lt;/b&gt;&lt;/i&gt; doesn't really do anything, except for &lt;i&gt;forwarding&lt;/i&gt; and &lt;i&gt;disable_ipv6&lt;/i&gt;. These two options are already handled specially by kernel code. The particular setting that interested me was &lt;i&gt;use_tempaddr&lt;/i&gt; though, and isn't being propagated (to the per-interface entries) or use globally to enable privacy addresses on all interfaces; which is something you'll likely want if you are looking to enable privacy extensions at all. Take this example: if you're using a mobile system, you might have wired and wireless connected at the same time, and may want to get up, unplug wired, and move around to a different spot, with or without suspending. While NetworkManager will in time allow toggling privacy extensions per connection, you shouldn't need to manually change this for a default install, on a typical, mobile worker day.&lt;br /&gt;&lt;br /&gt;So I started writing &lt;a href="https://lists.ubuntu.com/archives/kernel-team/2011-December/018284.html"&gt;my first ever kernel patch&lt;/a&gt;: having the &lt;i&gt;net.ipv6.conf.all.use_tempaddr&lt;/i&gt; sysctl propagate its value to all the other interfaces already present on the system when the value is changed. It's currently being reviewed before I work towards having it included in the kernel proper. Reviews for that patch are welcome on the kernel-team mailing list.&lt;br /&gt;&lt;br /&gt;I've now tested that this solves the issue of applying that particular sysctl at boot time; much like it appears to be expected to work by just about everyone if I'm to believe research I've done on the web on that subject. If there are brave souls wanting to test this, head over to &lt;a href="https://launchpad.net/%7Emathieu-tl/+archive/nm"&gt;my NM PPA&lt;/a&gt;. You'll need to be running Precise, and the package you'll want is &lt;b&gt;linux 3.2.0-4.11~mtrudel2&lt;/b&gt;. Since this is a custom hacked up kernel package (but I tried hard to follow the Kernel Team's procedures), standard warnings of caution and the usual "if your system gets broken you get to keep both pieces" apply... but I'm running that package too ;)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-5999434240255539704?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/5999434240255539704/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=5999434240255539704' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/5999434240255539704'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/5999434240255539704'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/12/enabling-ipv6-privacy-addresses.html' title='Enabling IPv6 Privacy Addresses'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-215524811518391672</id><published>2011-08-31T14:58:00.000-04:00</published><updated>2011-08-31T14:58:29.371-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='globaljam'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='canonical'/><title type='text'>Ubuntu Global Jam event in Montreal</title><content type='html'>With the Ubuntu Global Jam fast approaching, the Ubuntu-Quebec community is once again organizing an event to get together, find, track down and fix bugs, in Montreal (and inviting anyone interested in helping out to join us). The event will take place Saturday and Sunday, September 3 &amp;amp; 4, 2011, starting around 9 am.&lt;br /&gt;&lt;br /&gt;Many thanks to &lt;a href="https://launchpad.net/%7Ekomputes"&gt;komputes&lt;/a&gt; for doing the work of organizing the event and getting everything ready.&lt;br /&gt;&lt;br /&gt;This time, our local Global Jam event will be hosted at the Canonical offices here in Montreal! Huge thanks to management for allowing us to use the office.&lt;br /&gt;&lt;br /&gt;So if you're in or around Montreal, come join the local Ubuntu-Qc members and let's make Oneiric really rock! Just so we know what to expect, &lt;a href="http://loco.ubuntu.com/events/ubuntu-qc/1162/detail/"&gt;please make sure you register your presence on the LoCo directory event page&lt;/a&gt;. You can also watch &lt;a href="https://wiki.ubuntu.com/QuebecTeam/GlobalJam11.09"&gt;our wiki page for more information&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://wiki.ubuntu.com/UbuntuGlobalJam?action=AttachFile&amp;amp;do=get&amp;amp;target=ubuntu_global_jam_badge_v1.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://wiki.ubuntu.com/UbuntuGlobalJam?action=AttachFile&amp;amp;do=get&amp;amp;target=ubuntu_global_jam_badge_v1.png" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.canonical.com/about-canonical/contact/our-offices"&gt;Canonical Canada Limited&lt;/a&gt;&lt;br /&gt;4200, boulevard Saint-Laurent&lt;br /&gt;Suite 1200 (12e étage)&lt;br /&gt;Montréal, QC&lt;br /&gt;H2W 2R2&lt;br /&gt;Canada &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Avec le Global Jam qui arrive à grand pas, l'équipe Ubuntu-Québec récidive et organise une fois de plus un événement à Montréal et invite ses membres (et tous les intéressés!) à se réunir pour trouver, rapporter et régler des bogues. L'événement se tiendra les Samedi et Dimanche, 3 et 4 septembre 2011, à partir de 9 heures.&lt;br /&gt;&lt;br /&gt;Un gros merci va à &lt;a href="https://launchpad.net/%7Ekomputes"&gt;komputes&lt;/a&gt; pour le travail d'organisation de l'événement.&lt;br /&gt;&lt;br /&gt;De plus, on tient à remercier Canonical pour avoir accepté d'héberger l'événement!&lt;br /&gt;&lt;br /&gt;Si vous êtes dans la région de Montréal, vous êtes donc invités à vous joindre aux membres d'Ubuntu-Qc et nous aider à rendre la version 11.10, Oneiric Ocelot, vraiment parfaite!&lt;br /&gt;&lt;br /&gt;Pour nous permettre de savoir combien de personnes sont attendues, &lt;a href="http://loco.ubuntu.com/events/ubuntu-qc/1162/detail/"&gt;n'oubliez pas de signifier votre présence sur la page à cet effet sur le LoCo directory&lt;/a&gt;. Vous pouvez également obtenir plus d'information &lt;a href="https://wiki.ubuntu.com/QuebecTeam/GlobalJam11.09"&gt;sur notre page wiki&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Voir ci-haut pour l'adresse ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-215524811518391672?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/215524811518391672/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=215524811518391672' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/215524811518391672'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/215524811518391672'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/08/ubuntu-global-jam-event-in-montreal.html' title='Ubuntu Global Jam event in Montreal'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-4409243993055778109</id><published>2011-06-18T15:29:00.000-04:00</published><updated>2011-06-18T15:29:37.289-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='hardware'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Hacking on usb-modeswitch, part 1</title><content type='html'>Lately I've been spending time porting the usb_modeswitch_dispatcher tcl script from the usb-modeswitch package to C.&lt;br /&gt;&lt;br /&gt;While being a great exercise at both my knowledge of Tcl (almost non-existent) and my knowledge of C; it's also been very interesting so far to look at how things were being done to "switch" USB devices from a storage mode into modem mode.&lt;br /&gt;&lt;br /&gt;One of the problems I'm hitting now is balancing between performance and disk space usage. In an attempt to cut down on installed space, usb_modeswitch data has been all compressed into one tarball, comprising 162 small text files with the necessary vendor and product IDs expected before, after switching and the magic message to do the actual switch (see &lt;a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578024"&gt;Debian bug 578024&lt;/a&gt; for the rationale for compressing files). Having a compressed tarball is great to save space, but would tend to cause delays at boot time when the file needs to be uncompressed (perhaps multiple times) during boot-up. On the other hand, separate files take more space, which is especially a problem for those who don't need usb-modeswitch on their systems.&lt;br /&gt;&lt;br /&gt;I'm now working on quantifying the performance impact between compressed and uncompressed, as well as trying to figure out the actual size impact between both options for the Live CD. Theoretically, there should be little difference or even higher space usage with the compressed tarball on the LiveCD (because you can't really compressed something already compressed). I'll find out and post results here. As for the performance impact, there may not be much to look through the compressed tarball and extract one file from it, but every little bit of gain can help.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-4409243993055778109?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/4409243993055778109/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=4409243993055778109' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4409243993055778109'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4409243993055778109'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/06/hacking-on-usb-modeswitch-part-1.html' title='Hacking on usb-modeswitch, part 1'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-7902201345855419261</id><published>2011-04-03T14:55:00.000-04:00</published><updated>2011-04-03T14:55:20.080-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='globaljam'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Jamming in Montreal</title><content type='html'>I'll shamelessly copy Jorge's post here to present the Montreal jam:&lt;br /&gt;&lt;br /&gt;We're doing some unity testing this weekend. We were about 11 at some point yesterday, and we're 7 this afternoon.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-M5jtx8saGFU/TZjB66yuslI/AAAAAAAABPA/55CiqmpLQuU/s1600/CIMG0075.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://2.bp.blogspot.com/-M5jtx8saGFU/TZjB66yuslI/AAAAAAAABPA/55CiqmpLQuU/s320/CIMG0075.JPG" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Sadly, we didn't happen to have our own Jason to answer user questions, so I did the best I could ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-7902201345855419261?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/7902201345855419261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=7902201345855419261' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/7902201345855419261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/7902201345855419261'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/04/jamming-in-montreal.html' title='Jamming in Montreal'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-M5jtx8saGFU/TZjB66yuslI/AAAAAAAABPA/55CiqmpLQuU/s72-c/CIMG0075.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-9120440354123158152</id><published>2011-03-30T18:54:00.000-04:00</published><updated>2011-03-30T18:54:56.255-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='globaljam'/><category scheme='http://www.blogger.com/atom/ns#' term='testing'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Global Jam in Montréal</title><content type='html'>So we're doing it again!&lt;br /&gt;&lt;br /&gt;It's obviously getting a bit on the late side to announce this, but I only got the confirmation for our location this weekend -- after work or when I had a second, I wrote the &lt;a href="https://lists.ubuntu.com/archives/ubuntu-quebec/2011-March/006501.html"&gt;Ubuntu-Quebec mailing list invitation&lt;/a&gt;, dented about the event, and created the &lt;a href="http://loco.ubuntu.com/events/team/842/detail/"&gt;LoCo directory entry for this event&lt;/a&gt; already.&lt;br /&gt;&lt;br /&gt;So once again, people wanting to help improve Natty Narwhal or who would like to know more about bugs, triaging, fixing bugs, testing the new release or even writing documentation for applications, and living around Montreal, Qc, don't hesitate to come join us at SUPInfo Montréal this weekend. The closest subway station is McGill on the green line, then about 3 minutes walking time ;)&lt;br /&gt;&lt;br /&gt;We're holding our sessions on *both* Saturday and Sunday, from 11am to 5pm on each day.&lt;br /&gt;&lt;br /&gt;SUPInfo Montréal&lt;br /&gt;752 Sherbrooke West&lt;br /&gt;Montreal, Quebec&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;iframe frameborder="0" height="350" marginheight="0" marginwidth="0" scrolling="no" src="http://www.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=fr&amp;amp;geocode=&amp;amp;q=752+Sherbrooke+W,+Montreal,+Quebec&amp;amp;aq=&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=38.826758,86.572266&amp;amp;ie=UTF8&amp;amp;hq=&amp;amp;hnear=752+Rue+Sherbrooke+Ouest,+Montr%C3%A9al,+Qu%C3%A9bec+H3A+2K6,+Canada&amp;amp;z=14&amp;amp;ll=45.504343,-73.574104&amp;amp;output=embed" width="425"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;small&gt;&lt;a href="http://www.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=fr&amp;amp;geocode=&amp;amp;q=752+Sherbrooke+W,+Montreal,+Quebec&amp;amp;aq=&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=38.826758,86.572266&amp;amp;ie=UTF8&amp;amp;hq=&amp;amp;hnear=752+Rue+Sherbrooke+Ouest,+Montr%C3%A9al,+Qu%C3%A9bec+H3A+2K6,+Canada&amp;amp;z=14&amp;amp;ll=45.504343,-73.574104" style="color: blue; text-align: left;"&gt;Agrandir le plan&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-9120440354123158152?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/9120440354123158152/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=9120440354123158152' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/9120440354123158152'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/9120440354123158152'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/03/global-jam-in-montreal.html' title='Global Jam in Montréal'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-3526824336129837883</id><published>2011-03-24T12:34:00.000-04:00</published><updated>2011-03-24T12:34:30.845-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='logiciel libre'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='hardware'/><category scheme='http://www.blogger.com/atom/ns#' term='opensource'/><category scheme='http://www.blogger.com/atom/ns#' term='free software'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Idea #27250: Auto eth0 isn't very user friendly. Many people wont know what it is.</title><content type='html'>&lt;b&gt;&lt;span style="font-size: large;"&gt;The Problem &lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;In case you didn't already figure it out, the title refers to a quite popular &lt;a href="http://brainstorm.ubuntu.com/idea/27250/"&gt;idea on Ubuntu Brainstorm&lt;/a&gt;. It also refers to a bug report against NetworkManager in &lt;a href="https://bugs.edge.launchpad.net/ubuntu/+source/network-manager/+bug/386900"&gt;Launchpad: bug #386900&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;This is one issue I'd particularly like to solve soon. Although it most likely won't change for Natty (given that we're in Feature Freeze, and UI Freeze incessantly), I believe the question truly can be brought to a concensus and fixed early in the Oneiric cycle (and actually be made available upstream for everyone's benefit).&lt;br /&gt;&lt;br /&gt;I think much of the issues coming from this bug report stem from diverging expectations of people who just care about their wired connection working and likely don't need to change it all that often, and people who actively use NetworkManager's connection profiles to achieve various things.&lt;br /&gt;&lt;br /&gt;First, some background:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why "Auto eth0" ?&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The name "Auto eth0" comes from... well, the fact that it's a connection that was created automatically by NetworkManager with the simplest default settings (that is, just use DHCP to set an IP address), and the fact that it was created for the interface &lt;i&gt;eth0&lt;/i&gt;. As such, people with multiple wired network cards would then get one "Auto XXXX" profile for each wired card. This profile should take care of 90% of all use cases, since most people will just want their system to be plugged in, their home router to hand over an IP address and be able to get online.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What's this with profiles ?&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I just mentioned that the connection names shown are profiles. This is actually very important to me and quite a lot of people, because there are often cases where one would want to use specific network settings when at work and while at home. In other words, one could use "Auto eth0" at home with a simple setup, and benefit from a "At work" profile which sets a static IP address, or different DNS search strings (what would let your computer access "planet", instead of "planet.ubuntu.com" in Firefox, for instance).&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why so many issues ?&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I guess this all falls apart when you consider that most people probably won't use alternate profiles for wired connections. DHCP tends to get most things right from the start, which make profiles not very useful unless you want to do very specific things with your connection.&lt;br /&gt;&lt;b&gt; &lt;/b&gt;&lt;br /&gt;Add to this the fact that not everyone knows that &lt;i&gt;eth0&lt;/i&gt; is what Linux calls your first wired network card (instead of say "Local Area Connection" as I believe it is on Windows), and you have a nice little mess to untangle.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;Fixing all of this&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I can't say I have all the answers. It's still unclear to me how much information is absolutely required, and I'm well aware that we can't really please everyone.&lt;b&gt; &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;However, I've &lt;a href="http://brainstorm.ubuntu.com/idea/27250/"&gt;added a proposal to the brainstorm idea (Solution #7)&lt;/a&gt;. It goes like this:&lt;br /&gt;&lt;blockquote&gt;I'm suggesting the name of the profile to be something like "Default". It should not be tied to any particular adapter.&lt;br /&gt;This way, any new connection use that profile which will have default settings to use DHCP and the usual (as Auto eth0 is set). All adapters could share it, so adding a new interface to a computer would still just "work".&lt;br /&gt;&lt;br /&gt;For notifications, I suggest the following changes:&lt;br /&gt;&lt;br /&gt;- The title should mention "Wired network", and probably the same of the interface (eth0 in most cases).&lt;br /&gt;- The text of the notification should say:&lt;br /&gt;&lt;br /&gt;Connection established, using profile "Default"&lt;br /&gt;&lt;br /&gt;or whatever profile in use.&lt;/blockquote&gt;Furthermore, perhaps items in the network menu shouldn't list the full details of the network card (it's full name from udev as it does now). Instead, the interface name would be sufficient. I expect people who use multiple cards to know what &lt;i&gt;eth0&lt;/i&gt; and &lt;i&gt;eth1&lt;/i&gt; mean and refer to.&lt;br /&gt;&lt;br /&gt;Lastly, drop the "Auto" from user-created wireless network profiles too. Since they are created by the user and carry the name of the wireless network, "Auto" is both unnecessary, and possibly incorrect (since people can change the settings after creating it).&lt;br /&gt;&lt;br /&gt;I'd very much like anyone with an opinion on this to vote on Ubuntu Brainstorm for the idea they prefer, and comment with why my suggestion breaks things for them if it does. I certainly could have forgotten things. Comments on this blog are welcome too ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-3526824336129837883?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/3526824336129837883/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=3526824336129837883' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/3526824336129837883'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/3526824336129837883'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/03/idea-27250-auto-eth0-isnt-very-user.html' title='Idea #27250: Auto eth0 isn&apos;t very user friendly. Many people wont know what it is.'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-5648806569540012372</id><published>2011-03-09T12:44:00.000-05:00</published><updated>2011-03-09T12:44:07.275-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='logiciel libre'/><category scheme='http://www.blogger.com/atom/ns#' term='photography'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='free software'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='advocacy'/><title type='text'>This weekend's GeekFest in Montreal</title><content type='html'>We had a table at this weekend's GeekFest geek festival in Montreal. It was awesome! Tons of people, and even better, tons of interest about Ubuntu and our LoCo team.&lt;br /&gt;&lt;br /&gt;We gave out CDs, stickers, some extra FSF stickers I had in my backpack, and generally told people all they wanted to know about Ubuntu, gaming on Ubuntu (we had a demo of World of Goo running on one of the laptops for a good part of Sunday), and the Ubuntu Quebec LoCo team. It was very interesting to hear people tell us they already knew about Ubuntu or used it at home, at work, etc; yet still didn't know about the local community team and the help resources we offer.&lt;br /&gt;&lt;br /&gt;One of the things we focused on was how Ubuntu Quebec has a mailing list and forum to provide help, announce events and just generally discuss things, as well as our IRC channel on Freenode (&lt;i&gt;#ubuntu-qc&lt;/i&gt;, for those who don't know!). Lots of people were surprised to hear of a user group for Ubuntu but very interested by it. I printed and gave out nearly 40 business cards with contact information for the LoCo team.&lt;br /&gt;&lt;br /&gt;I am very happy to have been helped by two very active members of the team: Christian Parent (&lt;i&gt;Mobidoy&lt;/i&gt;) and Philippe Gauthier (&lt;i&gt;deuxpi&lt;/i&gt;), and joined on Sunday by Eric Beaurivage (&lt;i&gt;sipherdee&lt;/i&gt;), another LoCo team member. Without them, we certainly couldn't have been able to speak to so many people, and we definitely wouldn't have had any time to visit the other kiosks (can't just stay sitting... if you hold a kiosk in a conference, just got to go see the other things!).&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;Christian always has very cool ideas, this weekend it was to show &lt;a href="https://picasaweb.google.com/lh/photo/jpSzPE2dkSNmekZUzGPkyA?feat=directlink"&gt;his new laptop sticker&lt;/a&gt; (a mouse pad glued to the laptop).&lt;br /&gt;&lt;br /&gt;Some other interesting aspects:&lt;br /&gt;&lt;br /&gt;To our right was the kiosk of devLAB, a project to start programming contests, identify new technologies, etc... Did I get this all right? Sure hope so. The great thing too is that they were interested by our Global Jam ideas, so there may be collaboration on that aspect to come for this cycle's Global Jam event in Montreal. That still needs to be discussed on the mailing list.&lt;br /&gt;&lt;br /&gt;We met with someone from Foonzo Café, a new café in Montreal near Peel metro which runs all their systems on Ubuntu! They have some 80 seated places, so we may consider holding the Montreal release party there for Natty. Check how the discussion unfolds for this on our mailing list.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-7N4hTMbHfC8/TXet2v70oOI/AAAAAAAABNU/rWfsQBp94JI/s1600/CIMG0045.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="https://lh6.googleusercontent.com/-7N4hTMbHfC8/TXet2v70oOI/AAAAAAAABNU/rWfsQBp94JI/s320/CIMG0045.JPG" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;And last but not least, we met with Carlos and his brother who started "Carlito's Contraptions". They work on Nao the robot to develop applications, have it do stuff... While Nao doesn't exactly run Ubuntu (it's really a stripped down Linux with the bare minimum), their development systems are Ubuntu. They were nice enough to allow us to take action shots of Nao with a Ubuntu logo sticker. First it was on a GeekFest pin attached to Nao with sticky-tack, then they put another sticker directly on Nao's right arm. Rock on guys!&lt;br /&gt;&lt;br /&gt;Take a look at all the pictures on my Picasa Album: "&lt;a href="https://picasaweb.google.com/mathieu.tl/GeekFestMtl2011#"&gt;GeekFestMtl 2011&lt;/a&gt;".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-5648806569540012372?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/5648806569540012372/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=5648806569540012372' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/5648806569540012372'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/5648806569540012372'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/03/this-weekends-geekfest-in-montreal.html' title='This weekend&apos;s GeekFest in Montreal'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='https://lh6.googleusercontent.com/-7N4hTMbHfC8/TXet2v70oOI/AAAAAAAABNU/rWfsQBp94JI/s72-c/CIMG0045.JPG' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-7553704907693529982</id><published>2011-01-12T18:32:00.000-05:00</published><updated>2011-01-12T18:32:21.438-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='testing'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='canonical'/><title type='text'>How to contribute to NetworkManager (or nm-applet)</title><content type='html'>Since NetworkManager (and all of the attached parts; VPN plugins, clients, backend...) is such a complex system, we're always looking for people to help out in whichever way they can.&lt;br /&gt;&lt;br /&gt;One of the things I'd like to focus on this cycle (even if this announcement should have come long ago), is test cases and generally getting a good grasp of what works and what doesn't with NM, the clients, or plugins. Test cases are useful for us to know that things are performing as they should and even more important where development snapshots are involved, given the "in flux" nature of the code we're providing users. It's not that it's unstable code really (in fact, it's clearly not... 0.8 is now a stable branch that got tons of bug fixes, and seems rock solid if I believe the type and number of reports we get). Still, I'm interested to know about failures. That's partly why I wrote a number of test cases on the &lt;a href="http://desktop.qa.ubuntu.com/qatracker/test/4535"&gt;Desktop Testing Team tracker&lt;/a&gt;. There's a need for more though, and that's where the help of the community comes in.&lt;br /&gt;&lt;br /&gt;If you know of some things that are important to you in NetworkManager, nm-applet, or the VPN plugins, write test cases for them! It will help everyone make sure those remain working, iron out the small annoying bugs, and just improve on the overall usefulness of NetworkManager.&lt;br /&gt;&lt;br /&gt;Obviously, test cases and testing isn't the only place you can help. Are you annoyed at some little thing that works, but you'd love for it to go one step further in providing an amazing experience? Then we need you.&lt;br /&gt;&lt;br /&gt;It's also very much the way I started contributing to Ubuntu, dealing with small annoyances which would make my life easier in using the desktop every day... And it was as simple and providing support for saving group or user password for the VPNC plugin.&lt;br /&gt;&lt;br /&gt;I can already think of a few more of these small things, such as hiding the SIM PIN when prompted for it (since it's a password)...&lt;br /&gt;&lt;br /&gt;I've started identifying small (but important!) bugs like this in Launchpad. As for other projects, look for the '&lt;b&gt;bitesize&lt;/b&gt;' tag. &lt;a href="https://bugs.edge.launchpad.net/ubuntu/+source/network-manager/+bugs?field.tag=bitesize"&gt;Here's an example&lt;/a&gt;.&lt;br /&gt;They may not all be tagged &lt;b&gt;bitesize&lt;/b&gt;, but if there's something that almost works for you and you want to take a look at fixing it, jump in! We'll all be glad you did. The same principle applies to many of the bugs marked as &lt;i&gt;Wishlist&lt;/i&gt;, which are good ideas, maybe some need more discussion upstream, but they are all ready to be worked on (and have varying degrees of difficulty).&lt;br /&gt;&lt;br /&gt;If you're looking to work on NM, the first thing you may want to look at is the wiki at &lt;a href="http://live.gnome.org/NetworkManager"&gt;http://live.gnome.org/NetworkManager&lt;/a&gt;. It's generally also a good idea to subscribe to the mailing list (see the previous link), so you can discuss changes with the community at large. Finally, there's truly no place more useful than the &lt;a href="http://live.gnome.org/NetworkManager/Debugging"&gt;DebuggingTips&lt;/a&gt; page even for non-technical users. It's where you can poke NetworkManager to tell you exactly what goes on. In. Details.&lt;br /&gt;&lt;br /&gt;In the cases where changes can be reasonably integrated into Ubuntu and/or Debian directly, feel free to submit merge requests and patches. This includes helping out fixing issues in the growing indicator patch for the applet :)&lt;br /&gt;&lt;br /&gt;Finally if you're just curious and want to help out, you should know that there is a lot of work being done at the moment to simplify NM in various ways; all of which to in time become version 0.9. If you want to know more about the plans for NM 0.9, it's here: &lt;a href="http://live.gnome.org/NetworkManager/ApiSimplify"&gt;http://live.gnome.org/NetworkManager/ApiSimplify&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;When I'm connected I'm always happy to answer questions and help out in any way possible, both on NM and general desktop-ish stuff. You can reach me on &lt;b&gt;#ubuntu-desktop&lt;/b&gt; or &lt;b&gt;#nm&lt;/b&gt; on Freenode. I'm &lt;i&gt;cyphermox&lt;/i&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-7553704907693529982?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/7553704907693529982/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=7553704907693529982' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/7553704907693529982'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/7553704907693529982'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/01/how-to-contribute-to-networkmanager-or.html' title='How to contribute to NetworkManager (or nm-applet)'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-2443576526483984935</id><published>2011-01-05T16:08:00.000-05:00</published><updated>2011-01-05T16:08:38.942-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='canonical'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Natty nm-applet improvements</title><content type='html'>As those running Natty have undoubtedly noticed (and it has been &lt;a href="https://lists.launchpad.net/ayatana/msg04524.html"&gt;noted on the Ayatana mailing list&lt;/a&gt;), we currently have a stop-gap measure (until we get connman and indicator-network magic!) for an indicator for network connections being nm-applet with a big ugly patch to make it work as an indicator.&lt;br /&gt;&lt;br /&gt;In light of the discussion I'm referring to above, as well as a number of bugs that have been reported against network-manager-applet, I've been working on fixing these issues, including &lt;a href="https://bugs.edge.launchpad.net/ubuntu/+source/network-manager-applet/+bug/694534"&gt;making the animations work again&lt;/a&gt;, re-adding &lt;a href="https://bugs.edge.launchpad.net/ubuntu/+source/network-manager-applet/+bug/683896"&gt;icons for wireless signal strength&lt;/a&gt; and &lt;a href="https://bugs.edge.launchpad.net/ubuntu/+source/network-manager-applet/+bug/696442"&gt;fixing the icons when connected to VPNs&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Most of this was coming from the fact that icons could not be dynamically composited by nm-applet when using libappindicator as it used to be doing. However, it's just about ready to all be live again:&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_u586mTATcEs/TSTbB7lR_BI/AAAAAAAABLQ/X1FaerFH2I4/s1600/S%25C3%25A9lection_193.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://2.bp.blogspot.com/_u586mTATcEs/TSTbB7lR_BI/AAAAAAAABLQ/X1FaerFH2I4/s320/S%25C3%25A9lection_193.png" width="238" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;All I'm waiting for is review of a &lt;a href="https://code.launchpad.net/%7Emathieu-tl/ubuntu-mono/secure-icons/+merge/45268"&gt;merge request&lt;/a&gt; to provide the new icons needed. :)&lt;br /&gt;&lt;br /&gt;Now, there is still a number of things that need to be fixed in the indicator patch and in the look and feel of nm-applet as an indicator. While this is still meant to remain a bridge until we can switch to connman and indicator-network, I'm looking forward to getting new ideas and to know about the issues you see in nm-applet's look right now. Jump in on the ayatana list and give us your thoughts!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-2443576526483984935?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/2443576526483984935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=2443576526483984935' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/2443576526483984935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/2443576526483984935'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2011/01/natty-nm-applet-improvements.html' title='Natty nm-applet improvements'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_u586mTATcEs/TSTbB7lR_BI/AAAAAAAABLQ/X1FaerFH2I4/s72-c/S%25C3%25A9lection_193.png' height='72' width='72'/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-18770804355836822</id><published>2010-10-12T17:15:00.001-04:00</published><updated>2010-10-13T09:35:15.147-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='testing'/><category scheme='http://www.blogger.com/atom/ns#' term='hardware'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Booting to ISO images from a USB key</title><content type='html'>I'm pretty sure this has been done before (I recall seeing a blog post about it... if you're the one who posted on Planet Ubuntu with a similar howto, let me know as I want to talk to you, at least to say thanks), but here it is anyway:&lt;br /&gt;&lt;br /&gt;A couple of days ago I wrote this quick script to generate a roughly correct grub.cfg from the contents of a directory filled with .iso files. The goal: generate a USB bootable key that runs GRUB and allows you to choose which ISO to boot. It could be Ubuntu desktop, netbook, etc, doesn't matter, as long as you have enough room on the key.&lt;br /&gt;&lt;br /&gt;This is done by leveraging the loopback grub command and the isoscan parameter. But first, setting it up...&lt;br /&gt;&lt;br /&gt;You'll need (to):&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;one free USB key, formatted to vfat (mkfs.vfat -F 32 /dev/sdX1) the more space the better&lt;/li&gt;&lt;li&gt;create a directory called "iso" on it&lt;/li&gt;&lt;li&gt;install grub on it: &lt;pre&gt;grub-install --root-directory=/media/MOUNTPOINT /dev/sdX&lt;/pre&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;this will create the boot/grub directories and install everything grub needs&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;copy iso files to the iso/ directory&lt;/li&gt;&lt;li&gt;run update-grub.py (available in bzr branch:&amp;nbsp;&lt;a href="https://code.edge.launchpad.net/~mathieu-tl/+junk/bootable-iso-usb/"&gt;lp:~mathieu-tl/+junk/bootable-iso-usb&lt;/a&gt;)&amp;nbsp;from the key's mountpoint&amp;nbsp;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Careful: it's only quickly tested, and overwrites boot/grub/grub.cfg from the current working directory.&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;div&gt;Sorry for the unimaginative naming of the script.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;In short, this script attempts to guess what kind of distribution is in the ISO file. I've tested desktop and alternate with success, both seem to boot and properly get you to an install (or for desktop, "maybe-ubiquity", which means you'll get a prompt for whether you want to run the live session or just ubiquity to install). All this needed was to make use of the iso naming scheme and more importantly of the contents of the ISO files, as read by isoinfo (from the genisoimage package).&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Even if it never ends up being of any use, it was at least a fun little thing to write.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-18770804355836822?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/18770804355836822/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=18770804355836822' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/18770804355836822'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/18770804355836822'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/10/booting-to-iso-images-from-usb-key.html' title='Booting to ISO images from a USB key'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-6170129007066950209</id><published>2010-09-14T15:15:00.001-04:00</published><updated>2010-09-14T20:50:43.366-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='canonical'/><title type='text'>Looking back over the past few months...</title><content type='html'>I'm pretty new as a Canonical employee overall, only having been with the company for about 7 months, but I must say I'm really thrilled to be part of a large gang of people so involved in making Ubuntu great; with so much pride in all the work accomplished. If there's one thing that has been constantly motivating me, it has to be the prospect of working every day with the community and with other Canonical employees on making Ubuntu better.&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;Certifying hardware&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In the past seven months, I've been working as a Hardware Certification Engineer in the Montreal office. What does that mean? Well it's pretty simple: testing, testing, testing, automation, testing.&lt;br /&gt;&lt;br /&gt;Yup. Testing. The hardware certification team is pretty much the group bringing you your daily Dell deals from behind the scenes, driving the testing efforts to make sure you can get systems available from large manufacturers such as Toshiba, Dell, HP, no matter if they are desktops, laptops or server. Getting the &lt;i&gt;&lt;a href="http://webapps.ubuntu.com/certification/"&gt;Big Orange Stamp of Approval(tm)&lt;/a&gt;&lt;/i&gt; on these systems so that you can get them with Ubuntu pre-installed, and truly get support from our excellent Support team (many of them working from Montreal too!).&lt;br /&gt;&lt;br /&gt;What this truly meant for me was tons and tons of learning, with lots of experience gained. I've been identifying a lot of kernel bugs, installer issues, etc. &lt;a href="https://bugs.edge.launchpad.net/ubuntu/+source/casper/+bug/602273"&gt;I've learned way more about casper than I had ever dreamed&lt;/a&gt; :)&lt;br /&gt;&lt;br /&gt;There was obviously not just testing involved, as there were some times where I needed to track down the location of systems, deal with manufacturers on how to get a new system from them to our labs, or quickly work with the OEM teams to get new offerings (and for that, new certified systems) out of the door. We've been privileged enough to have lots of systems shipped to us, which has always been one of the most valuable things manufacturers and distributors could do to help the Ubuntu community. I hope we still get so keen support for years to come.&lt;br /&gt;&lt;br /&gt;On top of it all was automation of various testing efforts, one of which being maintenance of the amazing piece of work Marc Tardif started with checkbox and the kickstart / preseed systems that make daily testing possible for the many systems in the Canonical certification labs.&lt;br /&gt;&lt;br /&gt;When you look for a cool new computer to run Ubuntu on next time, make sure you take a look at the Certification website: &lt;a href="http://webapps.ubuntu.com/certification"&gt;webapps.ubuntu.com/certification&lt;/a&gt;. You'll undoubtedly be happy you did.&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;On the side&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I haven't only ever been doing certification testing. Part of the real cool things about Canonical is the fact that being involved in a lot of things, being passionate about what we do, is truly encouraged. In fact, it really couldn't be otherwise.&lt;br /&gt;&lt;br /&gt;I've done as much as I could to help with the ISO testing efforts whenever there was some free time. This has been truly a lot of fun as well, and certainly of use, since I do have an ESX server accessible for testing Server images (especially JeOS installs), some systems on which to try out Wubi, and a lot of interest in EC2 and cloud computing.&lt;br /&gt;&lt;br /&gt;My work day rarely ever stopped when I got out of the office. Part of why I joined Canonical may have been my involvement in the &lt;a href="http://www.ubuntu-qc.org/"&gt;Ubuntu Quebec&lt;/a&gt; LoCo team, organizing events and trying to motivate people to contribute to Ubuntu. I'm still as involved in the LoCo team as ever, and I'm always very happy to help people with their issues on IRC as much as on the ubuntu-qc mailing list, or even in person at the various events Ubuntu-Quebec or other Linux user groups have organized in Montreal. I've even started an Ubuntu Hour gathering in Longueuil, though to my chagrin, I've rarely had much company. I'm at least happy to have been able to use that time to get stuff done on other projects and to answer mailing list postings.&lt;br /&gt;&lt;br /&gt;I've also been reasonably active in the Debian community, and still working towards becoming an official Debian developer (if you are a DD and would be so kind as to sign my GPG key, please ping me on IRC :). I've been maintaining concordance and congruity, two applications to control and program Logitech Harmony remotes (one CLI, one GUI), the GNU Accounting Utilities (acct), the Ethos libary (a plugin framework), as well as the Emerillon map viewer for GNOME (with the help of the Debian GNOME team. Thanks!).&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;And now&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Those who know me well know how strong I feel about one of my favorite projects: NetworkManager. In order to further my involvement in Ubuntu and help out NetworkManager, but also other projects, and truly help making Ubuntu rock yet even more, I've just started in the Canonical Desktop team. I'm thrilled to join the others who bring you cool new toys and two (and more) awesome desktop environments with every new release.&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;For the future&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;My task won't only be to maintain NetworkManager, but also to work on maintaining ConnMan and making sure it's truly usable and useful for Ubuntu users. The rest of the stack underlying these two beasts won't be spared: I look forward to help bringing the hot new features of wpasupplicant, mobile-broadband-provider-info, isc-dhcp (version 4, nothing less!) to Ubuntu, as well as ensuring all of these won't descend in bug hell.&lt;br /&gt;&lt;br /&gt;Another aspect of it will be helping out on the maintenance of Firefox and Chromium.&lt;br /&gt;&lt;br /&gt;There isn't a whole lot more I can add about this, but I'm very happy I can lend a hand to Chris Coulson and the others from the Canonical Desktop Team but also everyone in the community contributing to and working on the above products. It's truly a daunting task to maintain all of these systems with so many moving parts, but I wake up every day looking forward to what I'll be doing, and certain I'll enjoy every part of it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-6170129007066950209?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/6170129007066950209/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=6170129007066950209' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/6170129007066950209'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/6170129007066950209'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/09/looking-back-over-past-few-months.html' title='Looking back over the past few months...'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-7984067194133664489</id><published>2010-09-10T14:20:00.000-04:00</published><updated>2010-09-10T14:20:21.626-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='hardware'/><category scheme='http://www.blogger.com/atom/ns#' term='opensource'/><category scheme='http://www.blogger.com/atom/ns#' term='free software'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Broadcom driver now open source</title><content type='html'>This has been brought to my attention today. I see this as a huge win for Ubuntu, since, let's face it, Broadcom devices are a large part of the WiFi device ecosystem. I'm happy to see Broadcom finally publishing&amp;nbsp;some of their source code, and through this helping out Linux users of all distributions get better working WiFi. I see this as a win for Ubuntu in general because it will always make me happier to see people having fewer issues with wireless devices. This also translates to less wheel-spinning with broken drivers we could not possibly fix (since they are closed source), towards more productive work on other aspects of Ubuntu... or just a better chance of fixing driver issues :)&lt;br /&gt;&lt;br /&gt;Of course, this is a work in progress and not all Broadcom devices are currently supported by this driver, but I believe that in due time, Broadcom could become one of the golden examples we can give to hardware manufacturers on how to provide the best kind of support they can to the Linux community.&lt;br /&gt;&lt;br /&gt;Read more about this on &lt;a href="http://linux.slashdot.org/story/10/09/09/1925214/Broadcom-Releases-Source-Code-For-Drivers"&gt;Slashdot&lt;/a&gt;, &lt;a href="http://www.osnews.com/story/23786/BREAKING_BROADCOM_OPEN_SOURCES_WIRELESS_DRIVERS"&gt;OSNews&lt;/a&gt;, or read the &lt;a href="http://thread.gmane.org/gmane.linux.kernel.wireless.general/55418"&gt;annoucement on the Linux Wireless mailing list&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Thanks Broadcom!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-7984067194133664489?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/7984067194133664489/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=7984067194133664489' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/7984067194133664489'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/7984067194133664489'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/09/broadcom-driver-now-open-source.html' title='Broadcom driver now open source'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-6461981774153123503</id><published>2010-08-25T11:06:00.000-04:00</published><updated>2010-08-25T11:06:32.804-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='QA'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='globaljam'/><category scheme='http://www.blogger.com/atom/ns#' term='testing'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Ubuntu Global Jam in Montreal: help testing and fixing bugs in Maverick</title><content type='html'>We're doing it again!&lt;br /&gt;&lt;br /&gt;Here in Montreal we're just about ready to start jamming this weekend. Rooms have been confirmed, and we already have a fair amount of interest from what I can see in the LoCo directory event listing! We're also happy to have been sharing ideas and plans with txwikinger who's been organizing the &lt;a href="http://loco.ubuntu.com/events/team/257/detail/"&gt;Global Jam event in the Waterloo/Kitchener area&lt;/a&gt; in Ontario.&lt;br /&gt;&lt;br /&gt;Do you want to help make Ubuntu better?&lt;br /&gt;Do you look forward to meeting some of the people who do testing, triaging and bug fixing on Ubuntu in Montreal, and maybe ask them to look at your own little pet-peeve bugs?&lt;br /&gt;&lt;br /&gt;Then come join us at the SupInfo Montréal offices this Saturday, starting from 9am! All you need to bring is a computer and willingness to participate. :)&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: 28px; line-height: 41px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;table style="-webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-collapse: collapse; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 28px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;tbody style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 28px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;tr style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 28px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;th class="form-item-label" scope="row" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 10px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;/th&gt;&lt;td style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;SupInfo Montréal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;th class="form-item-label" scope="row" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 10px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/th&gt;&lt;td class="form-item-value" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;752 Rue Sherbrooke Ouest&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;th class="form-item-label" scope="row" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 10px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/th&gt;&lt;td class="form-item-value" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;Montreal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;th class="form-item-label" scope="row" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 10px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/th&gt;&lt;td class="form-item-value" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;Canada&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 28px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;th class="form-item-label" scope="row" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 10px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/th&gt;&lt;td class="form-item-value" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 0,75em; font-style: inherit; font-weight: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline;"&gt;&lt;a href="http://www.supinfo.com/en/News0eaaf665-d9bf-4563-befb-ac97f8b035c2.aspx" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #dd4814; cursor: pointer; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;http://www.supinfo.com/en/News0eaaf665-d9bf-4563-befb-ac97f8b035c2.aspx&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;If you choose to pass by, please let us know by &lt;a href="http://loco.ubuntu.com/events/team/320/detail/"&gt;registering for the event on the LoCo Directory&lt;/a&gt;... just so we know roughly how many people to expect.&lt;br /&gt;&lt;br /&gt;You can get all of the information about our event on the QuebecTeam wiki:&amp;nbsp;&lt;a href="http://wiki.ubuntu.com/QuebecTeam/GlobalJam"&gt;QuebecTeam/GlobalJam&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;As a side note, we should have a local archive mirror, and copies of maverick and lucid ISO images. I've spent the past weeks preparing it on a portable USB hard drive, after getting some help in starting from Dustin Kirkland. Thanks Dustin!&lt;/span&gt;&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-6461981774153123503?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/6461981774153123503/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=6461981774153123503' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/6461981774153123503'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/6461981774153123503'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/08/ubuntu-global-jam-in-montreal-help.html' title='Ubuntu Global Jam in Montreal: help testing and fixing bugs in Maverick'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-4869841843395250708</id><published>2010-06-28T14:48:00.009-04:00</published><updated>2010-06-28T15:49:48.253-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='QA'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows integration'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='testing'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Wubi: installing Ubuntu inside Windows</title><content type='html'>Do you know about &lt;a href="http://www.ubuntu.com/desktop/get-ubuntu/windows-installer"&gt;Wubi&lt;/a&gt;?&lt;br /&gt;&lt;br /&gt;Wubi is a very nice tool if you want to try out Ubuntu for the first time. It allows you to install Ubuntu alongside Windows, without re-partitioning your hard-drive. All this from the CD-ROM if you load it in computer while Windows is running, or &lt;a href="http://www.ubuntu.com/desktop/get-ubuntu/windows-installer"&gt;downloadable as a standalone app&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The Ubuntu QA team is always looking for help to test installing Ubuntu using Wubi. It's both a great way to try Ubuntu if you really still need to run Windows on your computer and want to help out with testing Ubuntu, or as any kind of first jump into testing and QA. Testing efforts are being tracked on the &lt;a href="http://iso.qa.ubuntu.com/"&gt;Ubuntu ISO Tracker&lt;/a&gt;. If you want to help, please read the &lt;a href="https://wiki.ubuntu.com/Testing/ISO/Procedures"&gt;documentation &lt;/a&gt;first.&lt;br /&gt;&lt;br /&gt;So if you chose to download Wubi's standalone application, double-click on its icon, or load in the Ubuntu CD-ROM you may have just burned (or received from &lt;a href="https://shipit.ubuntu.com/"&gt;shipit&lt;/a&gt; or your &lt;a href="https://wiki.ubuntu.com/LoCoTeams"&gt;LoCo team&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt;If you're using a CD-ROM, Wubi should start automatically (or in Windows 7, you should see an autorun dialog).&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_u586mTATcEs/TCju_yQZ7qI/AAAAAAAABIE/k3lKwr_uYEY/s1600/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_001.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487898925540699810" src="http://3.bp.blogspot.com/_u586mTATcEs/TCju_yQZ7qI/AAAAAAAABIE/k3lKwr_uYEY/s200/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_001.png" style="cursor: pointer; float: left; height: 142px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_u586mTATcEs/TCjvBJzCrXI/AAAAAAAABIc/lQkHr-UMbxQ/s1600/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_004.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487898949039861106" src="http://1.bp.blogspot.com/_u586mTATcEs/TCjvBJzCrXI/AAAAAAAABIc/lQkHr-UMbxQ/s200/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_004.png" style="cursor: pointer; float: left; height: 142px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_u586mTATcEs/TCjvBmbX7ZI/AAAAAAAABIk/VH6rq2GmZ9I/s1600/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_005.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487898956725218706" src="http://4.bp.blogspot.com/_u586mTATcEs/TCjvBmbX7ZI/AAAAAAAABIk/VH6rq2GmZ9I/s200/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_005.png" style="cursor: pointer; float: left; height: 142px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;The install application gives you three choices. The first one being to reboot your system and use the CD-ROM directly to demo and install Ubuntu, the third sends you to the &lt;a href="http://www.ubuntu.com/"&gt;Ubuntu website&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;For the purpose of this post I will instead walk you through option 2, which is to install Ubuntu alongside Windows, from within Windows.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_u586mTATcEs/TCjvATyVnTI/AAAAAAAABIM/398Umx78L5s/s1600/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_002.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487898934541393202" src="http://1.bp.blogspot.com/_u586mTATcEs/TCjvATyVnTI/AAAAAAAABIM/398Umx78L5s/s200/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_002.png" style="cursor: pointer; float: left; height: 142px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;You will then be presented with all the questions that make sure the installer knows everything it needs to know about the installation of Ubuntu you want to do. Choose your username, password, and where you want to install Ubuntu (which Windows harddrive, C:, D:, or whatever), what language you want to see Ubuntu in, etc.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_u586mTATcEs/TCjvAwBJMYI/AAAAAAAABIU/ZbE6Fqi7Go8/s1600/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_003.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487898942119686530" src="http://3.bp.blogspot.com/_u586mTATcEs/TCjvAwBJMYI/AAAAAAAABIU/ZbE6Fqi7Go8/s200/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_003.png" style="cursor: pointer; float: left; height: 142px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;If you're using the standalone Wubi app, you will need to wait a bit while  the Ubuntu CD ISO image is being downloaded. The image is necessary, as  the standalone app does not contain the required packages for the  install.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_u586mTATcEs/TCjvxAKwsYI/AAAAAAAABIs/7QHunLP_tuc/s1600/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_006.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487899771088712066" src="http://3.bp.blogspot.com/_u586mTATcEs/TCjvxAKwsYI/AAAAAAAABIs/7QHunLP_tuc/s200/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_006.png" style="cursor: pointer; float: left; height: 142px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;Wubi will then proceed to the next part of the installation, which is to copy everything it needs to your hard drive in a &lt;span style="font-style: italic; font-weight: bold;"&gt;ubuntu&lt;/span&gt; folder on the hard drive you selected in the preceeding screen.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_u586mTATcEs/TCjvxlsP4JI/AAAAAAAABI0/Q_G7jqXHFfA/s1600/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_007.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487899781161279634" src="http://4.bp.blogspot.com/_u586mTATcEs/TCjvxlsP4JI/AAAAAAAABI0/Q_G7jqXHFfA/s200/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_007.png" style="cursor: pointer; float: left; height: 142px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;Once the first part of the installation is over, select what you want to do... my preference is to reboot right away and carry on with the rest of the installation procedure.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_u586mTATcEs/TCjvyMbJzXI/AAAAAAAABI8/030c57lw3ZU/s1600/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_008.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487899791558561138" src="http://4.bp.blogspot.com/_u586mTATcEs/TCjvyMbJzXI/AAAAAAAABI8/030c57lw3ZU/s200/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_008.png" style="cursor: pointer; float: left; height: 111px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;Once your computer has booted, you will be presented with a menu. That menu will time out and default to Windows after a few seconds. Choose Ubuntu to continue with the installation.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_u586mTATcEs/TCjvyS8ec0I/AAAAAAAABJE/l3nNM_1F3LQ/s1600/IMAG0039.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487899793308939074" src="http://2.bp.blogspot.com/_u586mTATcEs/TCjvyS8ec0I/AAAAAAAABJE/l3nNM_1F3LQ/s200/IMAG0039.jpg" style="cursor: pointer; float: left; height: 134px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;You are now booting into the real thing: at this point you are in Ubuntu, but the installation isn't quite done yet, so grab a (quick) coffee while the last tidbits get copied and configured.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_u586mTATcEs/TCjvyh4fv6I/AAAAAAAABJM/7DMeeGetNyo/s1600/IMAG0040.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487899797318778786" src="http://4.bp.blogspot.com/_u586mTATcEs/TCjvyh4fv6I/AAAAAAAABJM/7DMeeGetNyo/s200/IMAG0040.jpg" style="cursor: pointer; float: left; height: 134px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;At the end of the second part of the installation, your computer will reboot again, present you again with the first menu where you will want to choose Ubuntu, and show an additional menu where you can choose to start Ubuntu in recovery mode, should you need to fix a broken installation. From there, you can also go back to Windows.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_u586mTATcEs/TCjxINeGbSI/AAAAAAAABJU/plRD6g3vD08/s1600/IMAG0041.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5487901269308108066" src="http://1.bp.blogspot.com/_u586mTATcEs/TCjxINeGbSI/AAAAAAAABJU/plRD6g3vD08/s200/IMAG0041.jpg" style="cursor: pointer; float: left; height: 134px; margin: 0pt 10px 10px 0pt; width: 200px;" /&gt;&lt;/a&gt;Voilà, the installation is done. At this point, all that is left to do is click on your username in the lis and enter the password you chose back in Windows during the first phase of the installation to get to the Ubuntu desktop.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-4869841843395250708?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/4869841843395250708/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=4869841843395250708' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4869841843395250708'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4869841843395250708'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/06/wubi-installing-ubuntu-inside-windows.html' title='Wubi: installing Ubuntu inside Windows'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_u586mTATcEs/TCju_yQZ7qI/AAAAAAAABIE/k3lKwr_uYEY/s72-c/WinXP+%5BEn+fonction%5D+-+Oracle+VM+VirtualBox_001.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-3876662112577541684</id><published>2010-06-15T08:55:00.009-04:00</published><updated>2010-06-15T17:57:09.704-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='hardware'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='canonical'/><title type='text'>HP Mini netbooks mic/headphones adapter</title><content type='html'>Engineers at HP have been having these wonderful ideas in hope of saving space (I guess). On some of their netbooks, in particular the &lt;a href="http://en.wikipedia.org/wiki/HP_Mini_1000"&gt;Mini 1000&lt;/a&gt;, there is only one 3.5mm port to be used for both the microphone and headphones.&lt;br /&gt;&lt;br /&gt;I needed to tests this system in order to confirm the status of bug &lt;a href="https://bugs.edge.launchpad.net/ubuntu/+source/alsa-driver/+bug/532958"&gt;#532958&lt;/a&gt;. If you're like me and didn't get an adapter with the system, here is how you can make one.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Requirements:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_u586mTATcEs/TBeBnq2UVyI/AAAAAAAABHk/ED2UezR3Zdk/s1600/IMAG0036.jpg"&gt;&lt;img style="float: left; margin: 0pt 10px 10px 0pt; cursor: pointer; width: 133px; height: 200px;" src="http://4.bp.blogspot.com/_u586mTATcEs/TBeBnq2UVyI/AAAAAAAABHk/ED2UezR3Zdk/s200/IMAG0036.jpg" alt="" id="BLOGGER_PHOTO_ID_5482993589863864098" border="0" /&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt; 1 cable: &lt;a href="http://www.btecanada.com/catalog/product_info.php/products_id/52473?osCsid=81c0698a036622d43ee2f7b3b1856562"&gt;3 RCA plugs to one 4-channel 3.5mm plug&lt;/a&gt; - costs about 2$ to 10$&lt;/li&gt;&lt;li&gt; 2 1/8 (3.5mm) female jack, of the type you prefer (I used chassis) - cost less than a dollar each&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Process:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Note the type of cable I'm using: it is somewhat important. You could of course use any type of cable with at least 3 wires, but you would then have to find a 4-channel 3.5mm plug, which is a little less easy to find. This cable already has it, so just remove the RCA plugs, and skin these ends to reveal the signal wire and ground.&lt;br /&gt;&lt;br /&gt;You'll want to then attach the wires to the 3.5mm jacks as shown in the pictures below.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_u586mTATcEs/TBeBh0uh3GI/AAAAAAAABHc/vyFSGhVM0LQ/s1600/IMAG0035.jpg"&gt;&lt;img style="float: left; margin: 0pt 10px 10px 0pt; cursor: pointer; width: 133px; height: 200px;" src="http://2.bp.blogspot.com/_u586mTATcEs/TBeBh0uh3GI/AAAAAAAABHc/vyFSGhVM0LQ/s200/IMAG0035.jpg" alt="" id="BLOGGER_PHOTO_ID_5482993489436335202" border="0" /&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Headphone end:&lt;/span&gt;  use the &lt;span style="font-weight: bold; font-style: italic;"&gt;yellow and  red&lt;/span&gt; RCA wires. Attach the colored wires to the ring and tip (the  name for the metal tabs that carry actual signal when everything is  connected, at the bottom of the jack), then attach both ground wires to  the ground tab (the tab sticking out to the  side).&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Microphone end:&lt;/span&gt; use the &lt;span style="font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;white&lt;/span&gt; &lt;/span&gt;RCA wire, attach to either the ring or tip, then ground it.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Result:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If the jacks aren't properly grounded or the RCA cable you have used uses a different pinout, you will get no sound, or mono sound, or just very low volume. If so, detach everything and start over, maybe using different color mixes.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_u586mTATcEs/TBeB9QXwtOI/AAAAAAAABHs/txEeNNGq_EQ/s1600/IMAG0037.jpg"&gt;&lt;img style="float: left; margin: 0pt 10px 10px 0pt; cursor: pointer; width: 200px; height: 133px;" src="http://3.bp.blogspot.com/_u586mTATcEs/TBeB9QXwtOI/AAAAAAAABHs/txEeNNGq_EQ/s200/IMAG0037.jpg" alt="" id="BLOGGER_PHOTO_ID_5482993960713499874" border="0" /&gt;&lt;/a&gt;Once done correctly, you will retain stereo sound for the headphones, and will be able to use an external microphone, though the internal mic is disabled when this adapter is connected and the setting in Sound Input is at "Microphone". To use the internal microphone instead, you would want to use "Line Input"... but then you probably don't need this adapter and would be better off using standard headphones.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note:&lt;/span&gt; after more research, I found out that an iPhone headset might be the easiest way to go. I however do not own an iPhone, and only found out after finishing up the adapter.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-3876662112577541684?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/3876662112577541684/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=3876662112577541684' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/3876662112577541684'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/3876662112577541684'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/06/hp-mini-netbooks-micheadphones-adapter.html' title='HP Mini netbooks mic/headphones adapter'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_u586mTATcEs/TBeBnq2UVyI/AAAAAAAABHk/ED2UezR3Zdk/s72-c/IMAG0036.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-3264741019234435786</id><published>2010-05-18T17:13:00.005-04:00</published><updated>2010-05-18T17:55:36.319-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='opensource'/><category scheme='http://www.blogger.com/atom/ns#' term='free software'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><title type='text'>If you're filing bugs: please don't be selfish!</title><content type='html'>&lt;span style="font-style: italic;"&gt;&amp;lt;rant&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you're filing bugs, I understand that you feel strongly about the issues you're seeing, and that you feel like your problem is important and deserves immediate attention. I also want "my" bugs to be dealt with as soon as possible, and as a Ubuntu contributor I also want *your* bugs to be fixed in a timely manner. However, you usually should not just add information to an existing bug because the symptoms are vaguely similar.&lt;br /&gt;&lt;br /&gt;My point is, if you're seeing that something is wrong with your hardware (because this type of issue is quite frequent with hardware-related bugs), please don't hesitate to open a new bug. Developers will often be quite pleased that you did, and will be happy to mark something as a duplicate of another bug for you. Other bug reporters will also be happier, because it allows their own, often unrelated issue to be dealt with rapidly. Your own bug will also likely be fixed earlier, since developers need to sift through less information related to a specific issue: they then need to decide whether a specific attachment or comment is relevant in far fewer cases.&lt;br /&gt;&lt;br /&gt;It just helps making the experience more enjoyable to everyone.&lt;br /&gt;&lt;br /&gt;Also, if you're suggesting in a bug report against a specific package to use another package, you're not being helpful. Sure, you help the reporter by fixing their immediate problem, but you're not helping the underlying issues being resolved. What we want is to have all projects improve and squash their bugs, which cannot be done if you, say, suggest using Wicd in a bug against NetworkManager for a broken wifi driver.&lt;br /&gt;&lt;br /&gt;I like both of these projects, I want both to succeed equally, which means that bugs need to be reported and &lt;span style="font-style: italic;"&gt;respected&lt;/span&gt; so that we can fix the issues that arise and deliver a better user experience to everyone; while allowing all projects to grow and improve. This is what suggesting that project X is a failure (that's usually not the words used, but you get the idea), and that project Y is better (because it doesn't have that specific issue), will never achieve.&lt;br /&gt;&lt;br /&gt;It all boils down to being nice to others. Nice to other bug reporters, because everyone has the same chance of getting their bugs fixed, and nice to other projects because they all get their share of bugs and success stories.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&amp;lt;/rant&amp;gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-3264741019234435786?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/3264741019234435786/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=3264741019234435786' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/3264741019234435786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/3264741019234435786'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/05/if-youre-filing-bugs-please-dont-be.html' title='If you&apos;re filing bugs: please don&apos;t be selfish!'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-4359713479884391247</id><published>2010-04-27T12:05:00.005-04:00</published><updated>2010-04-27T12:20:06.550-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='logiciel libre'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='advocacy'/><title type='text'>You're invited: Montreal Lucid Lynx release party!</title><content type='html'>The Ubuntu-Quebec team is having a party here in Montreal (and in other cities too!!!) once more, this time to celebrate the release of Lucid Lynx. This will once again be held at the Bar Le Saint-Sulpice:&lt;br /&gt;&lt;br /&gt;Bar Le Saint-Sulpice&lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;a class="http" href="http://maps.google.com/maps?f=q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;time=&amp;amp;date=&amp;amp;ttype=&amp;amp;q=1680+Rue+St-Denis,+Montr%C3%A9al,+QC,+Canada&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=40.409448,82.265625&amp;amp;ie=UTF8&amp;amp;z=16&amp;amp;iwloc=addr&amp;amp;om=1"&gt;1680,  Saint-Denis,&lt;/a&gt;&lt;br /&gt;&lt;a class="http" href="http://maps.google.com/maps?f=q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;time=&amp;amp;date=&amp;amp;ttype=&amp;amp;q=1680+Rue+St-Denis,+Montr%C3%A9al,+QC,+Canada&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=40.409448,82.265625&amp;amp;ie=UTF8&amp;amp;z=16&amp;amp;iwloc=addr&amp;amp;om=1"&gt;Montréal, Québec,&lt;/a&gt;&lt;br /&gt;&lt;a class="http" href="http://maps.google.com/maps?f=q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;time=&amp;amp;date=&amp;amp;ttype=&amp;amp;q=1680+Rue+St-Denis,+Montr%C3%A9al,+QC,+Canada&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=40.409448,82.265625&amp;amp;ie=UTF8&amp;amp;z=16&amp;amp;iwloc=addr&amp;amp;om=1"&gt;H2X3K6&lt;/a&gt;,&lt;br /&gt;514 844-9458&lt;br /&gt;&lt;br /&gt;Everyone's invited to join us there this Thursday, April 29th.&lt;br /&gt;&lt;br /&gt;Lots of people have already either RSVP'd using the wonderful &lt;a href="http://loco.ubuntu.com/events/team/101/detail/"&gt;LoCo Directory event pages&lt;/a&gt;, and many others have confirmed their presence already...&lt;br /&gt;&lt;br /&gt;There's going to be a couple of other parties going on this time in the province: another one in Montreal on May 20th, Dummondville and Quebec city on the 5th and 6th of May; if you want to know more, don't hesitate to visit our wiki page for the Lucid release parties organized by Ubuntu-Quebec: &lt;a href="https://wiki.ubuntu.com/QuebecTeam/LucidParty"&gt;https://wiki.ubuntu.com/QuebecTeam/LucidParty&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Join us and have a chance to meet other Ubuntu enthusiasts like you :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-4359713479884391247?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/4359713479884391247/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=4359713479884391247' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4359713479884391247'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4359713479884391247'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/04/youre-invited-montreal-lucid-lynx.html' title='You&apos;re invited: Montreal Lucid Lynx release party!'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-4288966752644083449</id><published>2010-04-07T17:00:00.004-04:00</published><updated>2010-04-08T08:44:00.152-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='globaljam'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>In retrospect: the good and the bad about the Global Jam event in Montreal</title><content type='html'>Well, it's better late than never. The bad is obviously how it has taken me more than a week to get to writing this blog post about how well our Global Jam event went :)&lt;br /&gt;&lt;br /&gt;Seriously though, I did notice there were slightly fewer people this time around, but this can be inputed to a number of variables, so I really have no reason to complain, we had a great time, found a great number of bugs that were reported (and/or triaged), and it's essentially a clear success. Thanks to all those who participated in making this a great event.&lt;br /&gt;&lt;br /&gt;If you want to look at the pictures for our event, you can see them &lt;a href="http://www.flickr.com/photos/45189027@N06/archives/date-posted/2010/04/07/"&gt;here&lt;/a&gt;. There was also a live video made by r2mxr, but I can't find the link to it anymore... I promise I will update about it soon.&lt;br /&gt;&lt;br /&gt;Thanks to Fabian Rodriguez and David Bensimon who joined in and helped out a lot in finding bugs, testing, reproducing, and confirming bugs.&lt;br /&gt;&lt;br /&gt;Thanks to Philippe Gauthier who did a terrific job at a number of things, including setting, at least in my eyes, the record for the quickest testing process ever. Wine with a Windows app, as well as other Linux applications installed in record time :)&lt;br /&gt;&lt;br /&gt;Obviously, thanks to the presenters for a great time: Ronan Jouchet, Michael Faille, Jeff Fortin... You did great, and I learned a lot. I'm sure a lot of others did as well.&lt;br /&gt;&lt;br /&gt;Thanks to the SUPInfo students for visiting, you boosted our numbers and gave us a new and different outlook on various issues, which was a clear benefit.&lt;br /&gt;&lt;br /&gt;Thanks to ETS, and in particular to Oleg Litvinsky for doing an awesome job at the logistics. I've never seen a room get set up so fast, I felt useless :)&lt;br /&gt;&lt;br /&gt;Finally, thanks to those who came in to join us to see presentations or help out with bugs, it was great to see you all and meet new people, or others who we discuss with on the mailing list but rarely have a chance to talk to, face-to-face.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-4288966752644083449?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/4288966752644083449/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=4288966752644083449' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4288966752644083449'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4288966752644083449'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/04/in-retrospect-good-and-bad-about-global.html' title='In retrospect: the good and the bad about the Global Jam event in Montreal'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-9021135613985560032</id><published>2010-03-22T14:46:00.008-04:00</published><updated>2010-03-23T09:20:16.910-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='planet-ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='globaljam'/><category scheme='http://www.blogger.com/atom/ns#' term='free software'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='advocacy'/><title type='text'>News about the Global Jam in Montreal</title><content type='html'>I'm amazed by the amount of interest we're gathering here in Montreal for the Global Jam and the new version Ubuntu in general. I'm very eager to put in lots of work on triaging and helping people understand how to create packages or prepare patches to packages, but I've been contacted by a few people and thought it would be good to share on the awesome presentations and presenters we'll be able to see here this weekend:&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;A presentation MythTV and video capture, by Marc-André Gingras&lt;/li&gt;&lt;li&gt;Club Capra / a robotics project that was migrated from Windows to Ubuntu, and how that was done, by Michael Faille&lt;/li&gt;&lt;li&gt;An overview of PiTiVi and video edition, by Jeff Fortin (surely along with a bug jam blitz on PiTiVi?)&lt;/li&gt;&lt;li&gt;A presentation on UbuntuStudio, JACK, and Ardour; by Ronan Jouchet&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;To get all the juicy details, check out &lt;a href="https://wiki.ubuntu.com/QuebecTeam/GlobalJam10.03"&gt;https://wiki.ubuntu.com/QuebecTeam/GlobalJam10.03&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I seriously can't wait until Friday!&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-9021135613985560032?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/9021135613985560032/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=9021135613985560032' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/9021135613985560032'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/9021135613985560032'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/03/news-about-global-jam-in-montreal.html' title='News about the Global Jam in Montreal'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-4850708308780875216</id><published>2010-03-07T18:40:00.002-05:00</published><updated>2010-03-07T19:02:34.045-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='free software'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='advocacy'/><category scheme='http://www.blogger.com/atom/ns#' term='motu'/><title type='text'>Global Jam à Montréal: on récidive!</title><content type='html'>Il me fait plaisir d'annoncer que la participation des utilisateurs Ubuntu montréalais au Ubuntu Global Jam se fera encore une fois, un peu avant la sortie officielle de Lucid Lynx (la version 10.04, présentement en développement), à l'École de Technologie Supérieure!&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;Les locaux ont été officialisés: du 26 au 28 mars, nous pourrons passer la fin de semaine dans les locaux de l'ETS, soit les salles de classe A-1300 et A-1238 (en haut des escaliers de l'entrée principale, puis à gauche). N'hésitez pas à consulter la page wiki &lt;a href="http://ur1.ca/ohmm"&gt;QuebecTeam/GlobalJam&lt;/a&gt; pour l'horaire exact ainsi que les directions pour s'y rendre!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Un gros merci à l'administration de l'ETS pour bien vouloir supporter l'événement (et donc Ubuntu!), et à Clod Patry et Oleg Litvinski pour leur aide avec les détails administratifs.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Vous êtes donc invités à participer à des efforts d'identification, de tri et de "patchage" de bogues avec nous, ainsi qu'à venir poser des questions, essayer la nouvelle version "live" ou l'installer, ou même simplement essayer Ubuntu pour une première fois sur votre ordinateur, dans un environnement convivial où vous pourrez vous sentir bien à l'aise de demander de l'aide si vous en avez besoin... Où simplement venir rencontrez d'autres utilisateurs pour discuter de tout et de rien!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Quelques présentations devraient être planifiées d'ici fin mars. Entre autres, un élève de l'ETS, Michael Faille, nous fera la présentation d'un projet robotique réalisé pas un groupe de l'ETS et roulant sur Ubuntu (depuis sa migration de Windows!). On prévoit certainement encore présenter de façon survolée l'entrée de bogues dans Launchpad, ou alors le tri de ceux-ci si vous voulez aider les développeurs.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Cette fois-ci, beaucoup d'emphase sera mise sur le travail direct en équipe sur les différents bugs qui pourront avoir été soulevés. Il reste à déterminer la formule exacte, mais le but sera de démontrer l'intérêt de notre équipe dans la qualité de la distribution :)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;D'ici là, il reste un tas de choses à planifier. Si vous voulez aider dans la réalisation de l'événement ou vous avez des idées, n'hésitez pas à en faire part sur la &lt;a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec"&gt;liste de distribution Ubuntu-QC&lt;/a&gt; ou sur notre canal sur &lt;a href="http://webchat.freenode.net/?randomnick=1&amp;amp;channels=ubuntu-qc&amp;amp;prompt=1"&gt;Freenode: #ubuntu-qc&lt;/a&gt;.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;L'&lt;a href="http://www.etsmtl.ca/"&gt;École de Technologie Supérieure (ETS)&lt;/a&gt; est située au 100 rue Notre-Dame Ouest, soit à deux minutes du métro Bonaventure, au coin Notre-Dame et Peel.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-4850708308780875216?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/4850708308780875216/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=4850708308780875216' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4850708308780875216'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/4850708308780875216'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2010/03/global-jam-montreal-on-recidive.html' title='Global Jam à Montréal: on récidive!'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-2966956998737422423</id><published>2009-10-26T23:22:00.002-04:00</published><updated>2009-10-26T23:31:09.574-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Ubuntu-QC Karmic Release Party</title><content type='html'>The Ubuntu-QC LoCo will be hosting a release party on October 31th, 2009, to celebrate the launch of the latest Ubuntu release. If you're in or near Montreal, come join us at Bar St-Sulpice, at 17pm.&lt;br /&gt;&lt;br /&gt;For more information, &lt;a href="https://wiki.ubuntu.com/QuebecTeam/KarmicParty"&gt;consult our wiki page!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;As usual, there will also be a party held at Taverne Urbaine MO, in Quebec city; you can also get more information about that party on the link above.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://wiki.ubuntu.com/QuebecTeam/KarmicParty/Invitation"&gt;Here is the official invitation text&lt;/a&gt; :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-2966956998737422423?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/2966956998737422423/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=2966956998737422423' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/2966956998737422423'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/2966956998737422423'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2009/10/ubuntu-qc-karmic-release-party.html' title='Ubuntu-QC Karmic Release Party'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-5424067280410573240</id><published>2009-10-19T15:54:00.004-04:00</published><updated>2009-10-19T15:58:19.444-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Ontario GNU Linux Fest is this weekend</title><content type='html'>Awesome! Back from vacation and started work today, and I've registered and booked everything already to go to Ontario GNU Linux Fest at the end of the week. Girlfriend will be there too. At the very least, it's going to be an interesting little trip to Toronto for the weekend.&lt;br /&gt;&lt;br /&gt;&lt;iframe src="http://www.onlinux.ca/files/OLF480x60.html" style="margin: 0pt; width: 480px; height: 60px;" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"&gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;br&amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;a href="http://www.onlinux.ca" target="olf"&amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;br&amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;img src="http://www.onlinux.ca/files/OLF480x60.jpg" alt="Ontario GNU Linux Fest 2009. Register Now!" &amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;br&amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;/a&amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;br&amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;It's obviously still not too late to register, and there will be lots of very interesting talks :)&lt;br /&gt;&lt;br /&gt;Can't wait 'til Friday...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-5424067280410573240?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/5424067280410573240/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=5424067280410573240' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/5424067280410573240'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/5424067280410573240'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2009/10/ottawa-gnu-linux-fest-is-this-weekend.html' title='Ontario GNU Linux Fest is this weekend'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-6923003938794162848</id><published>2009-10-14T20:47:00.003-04:00</published><updated>2009-10-14T21:07:15.370-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='opensource'/><category scheme='http://www.blogger.com/atom/ns#' term='free software'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Debian/Ubuntu package for emerillon</title><content type='html'>Following the (very) recent release of emerillon 0.1.0, I'm pleased to announce that emerillon has a debian package created, and now available in my PPA for Emerillon:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;a href="https://edge.launchpad.net/~mathieu-tl/+archive/emerillon"&gt;https://edge.launchpad.net/~mathieu-tl/+archive/emerillon&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;If you use Ubuntu Karmic 9.10, almost all dependencies are already available... Except libethos.&lt;br /&gt;&lt;br /&gt;For libethos, you will also need, for now, to add the PPA for audidude (Christian Hergert):&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;a href="https://edge.launchpad.net/~audidude/+archive/ppa"&gt;https://edge.launchpad.net/~audidude/+archive/ppa&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;This is until I have the time to rebuild the packages for that library and publish them to my Emerillon PPA.&lt;br /&gt;&lt;br /&gt;There's already work started to include it into Debian, but it still requires packages that aren't ready yet. Same idea for Ubuntu. One of the major blockers are libethos, but I will discuss its inclusion with the upstream maintainer (who is audidude, in any case), and hopefully get it included very soon. From then, emerillon should be fairly easy to upload to Debian.&lt;br /&gt;&lt;br /&gt;For the curious, Emerillon is a map viewer for GNOME, very nicely designed, which uses OpenStreetMap maps to allow you to search, add placemarks, etc. Think of it as a Google Maps for your computer, but fully open :)&lt;br /&gt;&lt;br /&gt;For more information about Emerillon, see the Launchpad project page: &lt;a href="https://edge.launchpad.net/emerillon"&gt;https://edge.launchpad.net/emerillon&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Happy mapping!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-6923003938794162848?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/6923003938794162848/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=6923003938794162848' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/6923003938794162848'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/6923003938794162848'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2009/10/debianubuntu-package-for-emerillon.html' title='Debian/Ubuntu package for emerillon'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-5505862253109149754</id><published>2009-10-06T15:48:00.005-04:00</published><updated>2009-10-06T16:01:36.083-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Pictures from the Global Jam in Montreal</title><content type='html'>Well, it's obviously never too late to report back on the fun we've had this weekend with the Global Jam. There was a constant attendance of a good number of people throughout the weekend, which I am particularily happy about. Lots of interest in the development and contribution aspects, as well as a couple of others who were curious about Ubuntu and wanted to know more. Overall, a great success!&lt;br /&gt;&lt;br /&gt;We've touched a great number of subjects, including the obvious bug reporting and triaging, as well as the French translations for a number of utilities and some fixes for bugs that were discovered during the Jam.&lt;br /&gt;&lt;br /&gt;Thanks to the École de Technologie Supérieure for hosting us in great and really well equipped rooms. Thanks to LANETS for providing us with a really kick-ass wired network rig, and thanks to Guillaume Grasset and Clod Patry for helping out with the administrative portion of getting the rooms :)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_u586mTATcEs/Ssug842tLfI/AAAAAAAABCk/jiWKR6Jov1g/s1600-h/IMAG0016.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://2.bp.blogspot.com/_u586mTATcEs/Ssug842tLfI/AAAAAAAABCk/jiWKR6Jov1g/s200/IMAG0016.jpg" alt="" id="BLOGGER_PHOTO_ID_5389578346993364466" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_u586mTATcEs/Ssug8lr8NiI/AAAAAAAABCc/B6MWOEqmlEA/s1600-h/IMAG0015.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://4.bp.blogspot.com/_u586mTATcEs/Ssug8lr8NiI/AAAAAAAABCc/B6MWOEqmlEA/s200/IMAG0015.jpg" alt="" id="BLOGGER_PHOTO_ID_5389578341847938594" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_u586mTATcEs/Ssug8BR7XqI/AAAAAAAABCU/pp2zwpMRWJ8/s1600-h/IMAG0014.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://1.bp.blogspot.com/_u586mTATcEs/Ssug8BR7XqI/AAAAAAAABCU/pp2zwpMRWJ8/s200/IMAG0014.jpg" alt="" id="BLOGGER_PHOTO_ID_5389578332075155106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_u586mTATcEs/Ssug7mu3LPI/AAAAAAAABCM/OTOWrdCVvvg/s1600-h/IMAG0013.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://3.bp.blogspot.com/_u586mTATcEs/Ssug7mu3LPI/AAAAAAAABCM/OTOWrdCVvvg/s200/IMAG0013.jpg" alt="" id="BLOGGER_PHOTO_ID_5389578324948757746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_u586mTATcEs/Ssug7UbTK1I/AAAAAAAABCE/p4P_BCiOmrc/s1600-h/IMAG0012.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://2.bp.blogspot.com/_u586mTATcEs/Ssug7UbTK1I/AAAAAAAABCE/p4P_BCiOmrc/s200/IMAG0012.jpg" alt="" id="BLOGGER_PHOTO_ID_5389578320034868050" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_u586mTATcEs/SsugN0RGGRI/AAAAAAAABB0/b2543o4k-gM/s1600-h/IMAG0010.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://3.bp.blogspot.com/_u586mTATcEs/SsugN0RGGRI/AAAAAAAABB0/b2543o4k-gM/s200/IMAG0010.jpg" alt="" id="BLOGGER_PHOTO_ID_5389577538308020498" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_u586mTATcEs/SsugNpPeo0I/AAAAAAAABBs/mDY_--Xsuig/s1600-h/IMAG0009.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://2.bp.blogspot.com/_u586mTATcEs/SsugNpPeo0I/AAAAAAAABBs/mDY_--Xsuig/s200/IMAG0009.jpg" alt="" id="BLOGGER_PHOTO_ID_5389577535348450114" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_u586mTATcEs/SsugNCCvSKI/AAAAAAAABBk/dv_keQRlAUU/s1600-h/IMAG0008.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://1.bp.blogspot.com/_u586mTATcEs/SsugNCCvSKI/AAAAAAAABBk/dv_keQRlAUU/s200/IMAG0008.jpg" alt="" id="BLOGGER_PHOTO_ID_5389577524826032290" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_u586mTATcEs/SsugM38wvfI/AAAAAAAABBc/688DsDzTw8Q/s1600-h/IMAG0007.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 134px;" src="http://1.bp.blogspot.com/_u586mTATcEs/SsugM38wvfI/AAAAAAAABBc/688DsDzTw8Q/s200/IMAG0007.jpg" alt="" id="BLOGGER_PHOTO_ID_5389577522116607474" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_u586mTATcEs/SsugObw-OoI/AAAAAAAABB8/wE3K72zKCr0/s1600-h/IMAG0011.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 134px; height: 200px;" src="http://1.bp.blogspot.com/_u586mTATcEs/SsugObw-OoI/AAAAAAAABB8/wE3K72zKCr0/s200/IMAG0011.jpg" alt="" id="BLOGGER_PHOTO_ID_5389577548910705282" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-5505862253109149754?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/5505862253109149754/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=5505862253109149754' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/5505862253109149754'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/5505862253109149754'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2009/10/pictures-from-global-jam-in-montreal.html' title='Pictures from the Global Jam in Montreal'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_u586mTATcEs/Ssug842tLfI/AAAAAAAABCk/jiWKR6Jov1g/s72-c/IMAG0016.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1400765799263079238.post-9003830652704510747</id><published>2009-09-30T17:25:00.005-04:00</published><updated>2009-09-30T17:52:35.528-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='community'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu-qc'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Ubuntu Global Jam in Montreal, this weekend</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://wiki.ubuntu.com/QuebecTeam/GlobalJam2009?action=AttachFile&amp;amp;do=get&amp;amp;target=banner_fr.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 195px; height: 500px;" src="https://wiki.ubuntu.com/QuebecTeam/GlobalJam2009?action=AttachFile&amp;amp;do=get&amp;amp;target=banner_fr.png" alt="" border="0" /&gt;&lt;/a&gt;There's really only a couple of hours left until our Global Jam event in Montreal kicks off: a truly awesome setup, that can be run thanks to the amazing help of komputes and the rooms gratiously granted to us by the ETS (École de Technologie Supérieure), GULL-ETS, and Clod Patry. Thanks all.&lt;br /&gt;&lt;br /&gt;So this is my official invitation: are you an Ubuntu enthusiast in the region of Montreal? Are you interested in helping out fixing bugs, getting to know more about your favorite OS or even just getting to know what all this fuss with "Linux" and "Ubuntu" is about?&lt;br /&gt;&lt;br /&gt;Then come join us at ÉTS, for this three-day event: we've got all kinds of really cool stuff planned, as well as interesting presentations on packaging, bug triage, Asterisk, to only name a few. I'll be presenting on a couple of subjects myself, such as sysadmin tools and helping out with coding.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here's the deal:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;p class="line862"&gt;École de technologie supérieure (&lt;a class="http" href="http://www.etsmtl.ca/"&gt;http://www.etsmtl.ca/&lt;/a&gt;)&lt;br /&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;October 2 (16h to 23h), and 3-4 (12h to 18h),&lt;br /&gt;&lt;/li&gt;&lt;li&gt;1100 rue Notre-Dame Ouest &lt;span class="anchor" id="line-58"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Salles/Rooms A-1300 et A-1238 &lt;/li&gt;&lt;li&gt;More information at https://wiki.ubuntu.com/QuebecTeam/GlobalJam2009&lt;/li&gt;&lt;/ul&gt;Everyone is welcome!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1400765799263079238-9003830652704510747?l=blog.cyphermox.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.cyphermox.net/feeds/9003830652704510747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1400765799263079238&amp;postID=9003830652704510747' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/9003830652704510747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1400765799263079238/posts/default/9003830652704510747'/><link rel='alternate' type='text/html' href='http://blog.cyphermox.net/2009/09/ubuntu-global-jam-in-montreal-this.html' title='Ubuntu Global Jam in Montreal, this weekend'/><author><name>cyphermox</name><uri>http://www.blogger.com/profile/10138570513134453565</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-gDEZH5Re6fs/TZO1GyFqSCI/AAAAAAAABOg/PUvniy4sNaw/s220/clean_face_192.png'/></author><thr:total>0</thr:total></entry></feed>
