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

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Hanno's blog (Entries tagged as gentoo)</title>
    <link>https://blog.hboeck.de/</link>
    <description></description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.5.0 - http://www.s9y.org/</generator>
    <pubDate>Sat, 09 Sep 2017 15:18:18 GMT</pubDate>

    <image>
    <url>https://blog.hboeck.de/templates/hanno/img/s9y_banner_small.png</url>
    <title>RSS: Hanno's blog - </title>
    <link>https://blog.hboeck.de/</link>
    <width>100</width>
    <height>21</height>
</image>

<item>
    <title>Safer use of C code - running Gentoo with Address Sanitizer</title>
    <link>https://blog.hboeck.de/archives/879-Safer-use-of-C-code-running-Gentoo-with-Address-Sanitizer.html</link>
            <category>Code</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
            <category>Security</category>
    
    <comments>https://blog.hboeck.de/archives/879-Safer-use-of-C-code-running-Gentoo-with-Address-Sanitizer.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=879</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=879</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;i&gt;&lt;b&gt;Update:&lt;/b&gt; When I wrote this blog post it was an open question for me whether using Address Sanitizer in production is a good idea. A recent &lt;a href=&quot;http://www.openwall.com/lists/oss-security/2016/02/17/9&quot;&gt;analysis posted on the oss-security mailing list&lt;/a&gt; explains in detail why using Asan in its current form is almost certainly not a good idea.  Having any suid binary built with Asan enables a local root exploit - and there are various other issues. Therefore using Gentoo with Address Sanitizer is only recommended for developing and debugging purposes.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;!-- s9ymdb:443 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;146&quot; height=&quot;149&quot;  src=&quot;https://blog.hboeck.de/uploads/gentoo.serendipityThumb.png&quot;  alt=&quot;Gentoo&quot; /&gt;&lt;a href=&quot;https://github.com/google/sanitizers&quot;&gt;Address Sanitizer&lt;/a&gt; is a remarkable feature that is part of the gcc and clang compilers. It can be used to find many typical C bugs - invalid memory reads and writes, use after free errors etc. - while running applications. It has found countless bugs in many software packages. I&#039;m often surprised that many people in the free software community seem to be unaware of this powerful tool.&lt;br /&gt;
&lt;br /&gt;
Address Sanitizer is mainly intended to be a debugging tool. It is usually used to test single applications, often in combination with fuzzing. But as Address Sanitizer can prevent many typical C security bugs - why not &lt;a href=&quot;https://scarybeastsecurity.blogspot.com/2014/09/using-asan-as-protection.html&quot;&gt;use it in production&lt;/a&gt;? It doesn&#039;t come for free. Address Sanitizer takes significantly more memory and slows down applications by 50 - 100 %. But for some security sensitive applications this may be a reasonable trade-off. The Tor project is already experimenting with this with its &lt;a href=&quot;https://blog.torproject.org/blog/tor-browser-55a4-hardened-released&quot;&gt;Hardened Tor Browser&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
One project I&#039;ve been working on in the past months is to allow a Gentoo system to be compiled with Address Sanitizer. Today I&#039;m publishing this and want to allow others to test it. I have created &lt;a href=&quot;https://wiki.gentoo.org/wiki/AddressSanitizer&quot;&gt;a page in the Gentoo Wiki&lt;/a&gt; that should become the central documentation hub for this project. I published an &lt;a href=&quot;https://github.com/hannob/asantoo&quot;&gt;overlay with several fixes and quirks on Github&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I see this work as part of my &lt;a href=&quot;https://fuzzing-project.org/&quot;&gt;Fuzzing Project&lt;/a&gt;. (I&#039;m posting it here because the Gentoo category of my personal blog gets indexed by Planet Gentoo.)&lt;br /&gt;
&lt;br /&gt;
I am not sure if using Gentoo with Address Sanitizer is reasonable for a production system. One thing that makes me uneasy in suggesting this for high security requirements is that it&#039;s currently incompatible with Grsecurity. But just creating this project already caused me to find a whole number of bugs in several applications. Some notable examples include &lt;a href=&quot;https://debbugs.gnu.org/cgi/bugreport.cgi?bug=20998&quot;&gt;Coreutils/shred&lt;/a&gt;, &lt;a href=&quot;https://lists.gnu.org/archive/html/bug-bash/2015-06/msg00089.html&quot;&gt;Bash&lt;/a&gt; (&lt;a href=&quot;https://lists.gnu.org/archive/html/bug-bash/2015-07/msg00018.html&quot;&gt;[2]&lt;/a&gt;, &lt;a href=&quot;https://lists.gnu.org/archive/html/bug-bash/2015-11/msg00040.html&quot;&gt;[3]&lt;/a&gt;), &lt;a href=&quot;https://savannah.nongnu.org/bugs/index.php?45854&quot;&gt;man-db&lt;/a&gt;, &lt;a href=&quot;https://bugs.otr.im/issues/128&quot;&gt;Pidgin-OTR&lt;/a&gt;, &lt;a href=&quot;https://www.mail-archive.com/courier-users@lists.sourceforge.net/msg38073.html&quot;&gt;Courier&lt;/a&gt;, &lt;a href=&quot;https://github.com/balabit/syslog-ng/issues/780&quot;&gt;Syslog-NG&lt;/a&gt;, &lt;a href=&quot;https://savannah.gnu.org/bugs/index.php?46401&quot;&gt;Screen&lt;/a&gt;, &lt;a href=&quot;http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3559&quot;&gt;Claws-Mail&lt;/a&gt; (&lt;a href=&quot;http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3563&quot;&gt;[2]&lt;/a&gt;, &lt;a href=&quot;http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3573&quot;&gt;[3]&lt;/a&gt;), &lt;a href=&quot;http://bugs.proftpd.org/show_bug.cgi?id=4193&quot;&gt;ProFTPD&lt;/a&gt; (&lt;a href=&quot;http://bugs.proftpd.org/show_bug.cgi?id=4194&quot;&gt;[2]&lt;/a&gt;, &lt;a href=&quot;http://bugs.proftpd.org/show_bug.cgi?id=4195&quot;&gt;[3]&lt;/a&gt;) &lt;a href=&quot;https://ssl.icu-project.org/trac/ticket/11765&quot;&gt;ICU&lt;/a&gt;, &lt;a href=&quot;https://core.tcl.tk/tk/tktview/b1534b438bc711e848ad7ade3642ce0a6323fe8e&quot;&gt;TCL&lt;/a&gt; (&lt;a href=&quot;https://core.tcl.tk/tk/tktview/9bad630c3163b4b2ef8781089ae27058c957a428&quot;&gt;[2]&lt;/a&gt;), &lt;a href=&quot;https://dovecot.org/list/dovecot-cvs/2015-June/026173.html&quot;&gt;Dovecot&lt;/a&gt;. I think it was worth the effort.&lt;br /&gt;
&lt;br /&gt;
I will present this work in &lt;a href=&quot;https://fosdem.org/2016/schedule/event/csafecode/&quot;&gt;a talk at FOSDEM in Brussels this Saturday, 14:00, in the Security Devroom&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Tue, 26 Jan 2016 01:40:00 +0100</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/879-guid.html</guid>
    <category>addresssanitizer</category>
<category>asan</category>
<category>bufferoverflow</category>
<category>c</category>
<category>clang</category>
<category>gcc</category>
<category>gentoo</category>
<category>linux</category>
<category>memorysafety</category>
<category>security</category>
<category>useafterfree</category>

</item>
<item>
    <title>New laptop Lenovo Thinkpad X1 Carbon 20A7</title>
    <link>https://blog.hboeck.de/archives/856-New-laptop-Lenovo-Thinkpad-X1-Carbon-20A7.html</link>
            <category>Computer culture</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Life</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/856-New-laptop-Lenovo-Thinkpad-X1-Carbon-20A7.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=856</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=856</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;a class=&quot;serendipity_image_link&quot;  href=&#039;https://blog.hboeck.de/uploads/x1carbon.jpg&#039;&gt;&lt;!-- s9ymdb:414 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;300&quot; height=&quot;225&quot;  src=&quot;https://blog.hboeck.de/uploads/x1carbon.serendipityThumb.jpg&quot;  alt=&quot;Thinkpad X1 Carbon&quot; /&gt;&lt;/a&gt;While I got along well with my &lt;a href=&quot;https://blog.hboeck.de/archives/653-New-T61-Laptop-8895WFJ.html&quot;&gt;Thinkpad T61&lt;/a&gt; laptop, for quite some time I had the plan to get a new one soon. It wasn&#039;t an easy decision and I looked in detail at the models available in recent months. I finally decided to buy one of Lenovo&#039;s Thinkpad X1 Carbon laptops in its 2014 edition. The X1 Carbon was introduced in 2012, however a completely new variant which is very different from the first one was released early 2014. To distinguish it from other models it is the 20A7 model.&lt;br /&gt;
&lt;br /&gt;
Judging from the first days of use I think I made the right decision. I hadn&#039;t seen the device before I bought it because it seems rarely shops keep this device in stock. I assume this is due to the relatively high price.&lt;br /&gt;
&lt;br /&gt;
I was a bit worried because Lenovo made some unusual decisions for the keyboard, however having used it for a few days I don&#039;t feel that it has any severe downsides. The most unusual thing about it is that it doesn&#039;t have normal F1-F12 keys, instead it has what Lenovo calls an adaptive keyboard: A touch sensitive line which can display different kinds of keys. The idea is that different applications can have their own set of special keys there. However, just letting them display the normal F-keys works well and not having &quot;real&quot; keys there doesn&#039;t feel like a big disadvantage. Beside that Lenovo removed the Caps lock and placed Pos1/End there, which is a bit unusual but also nothing I worried about. I also hadn&#039;t seen any pictures of the German keyboard before I bought the device. The ^/°-key is not where it&#039;s used to be (small downside), but the &amp;lt;/&amp;gt;/| key is where it belongs(big plus, many laptop vendors get that wrong).&lt;br /&gt;
&lt;br /&gt;
Good things:&lt;br /&gt;
* Lightweight, Ultrabook, no unnecessary stuff like CD/DVD drive&lt;br /&gt;
* High resolution (2560x1440)&lt;br /&gt;
* Hardware is up-to-date (Haswell chipset)&lt;br /&gt;
&lt;br /&gt;
Downsides:&lt;br /&gt;
* Due to ultrabook / integrated design easy changing battery, ram or HD&lt;br /&gt;
* No SD card reader&lt;br /&gt;
* Have some trouble getting used to the touchpad (however there are lots of possibilities to configure it, I assume by playing with it that&#039;ll get better)&lt;br /&gt;
&lt;br /&gt;
It used to be the case that people wrote docs how to get all the hardware in a laptop running on Linux which I did &lt;a href=&quot;http://int21.de/sony/&quot;&gt;my&lt;/a&gt; &lt;a href=&quot;http://int21.de/samsung/&quot;&gt;previous&lt;/a&gt; &lt;a href=&quot;http://int21.de/t61/&quot;&gt;laptops&lt;/a&gt;. These days this usually boils down to &quot;run a recent Linux distribution with the latest kernels and xorg packages and most things will be fine&quot;. However I thought having a central place where I collect relevant information would be nice so I &lt;a href=&quot;http://int21.de/x1carbon&quot;&gt;created one again&lt;/a&gt;. As usual I&#039;m running Gentoo Linux.&lt;br /&gt;
&lt;br /&gt;
For people who plan to run Linux without a dual boot it may be worth mentioning that there seem to be troublesome errors in earlier versions of the BIOS and the SSD firmware. You may want to update them before removing Windows. On my device they were already up-to-date. 
    </content:encoded>

    <pubDate>Fri, 03 Oct 2014 23:05:00 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/856-guid.html</guid>
    <category>gentoo</category>
<category>laptop</category>
<category>lenovo</category>
<category>linux</category>
<category>notebook</category>
<category>thinkpad</category>
<category>x1carbon</category>

</item>
<item>
    <title>LibreSSL on Gentoo</title>
    <link>https://blog.hboeck.de/archives/851-LibreSSL-on-Gentoo.html</link>
            <category>Code</category>
            <category>Cryptography</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
            <category>Security</category>
    
    <comments>https://blog.hboeck.de/archives/851-LibreSSL-on-Gentoo.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=851</wfw:comment>

    <slash:comments>8</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=851</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!-- s9ymdb:410 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;192&quot; height=&quot;192&quot;  src=&quot;https://blog.hboeck.de/uploads/libressl-logo.jpg&quot;  alt=&quot;LibreSSL Puffy&quot; /&gt;Yesterday the &lt;a href=&quot;http://marc.info/?l=openbsd-announce&amp;amp;m=140510513704996&amp;amp;w=2&quot;&gt;LibreSSL project released the first portable version that works on Linux&lt;/a&gt;. &lt;a href=&quot;http://www.libressl.org/&quot;&gt;LibreSSL&lt;/a&gt; is a fork of OpenSSL and was created by the OpenBSD team in the aftermath of the Heartbleed bug.&lt;img src=&quot;https://ssl-vg03.met.vgwort.de/na/4f1f65b6b6e4419c97ea81e7d27cc0a0&quot; width=&quot;1&quot; height=&quot;1&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Yesterday and today I played around with it on Gentoo Linux. I was able to replace my system&#039;s OpenSSL completely with LibreSSL and with few exceptions was able to successfully rebuild all packages using OpenSSL.&lt;br /&gt;
&lt;br /&gt;
After getting this running on my own system I installed it on a test server. The Webpage &lt;a href=&quot;https://tlsfun.de/&quot;&gt;tlsfun.de&lt;/a&gt; runs on that server. The functionality changes are limited, the only thing &lt;a href=&quot;https://www.ssllabs.com/ssltest/analyze.html?d=tlsfun.de&quot;&gt;visible from the outside&lt;/a&gt; is the support for the experimental, not yet standardized ChaCha20-Poly1305 cipher suites, which is a nice thing.&lt;br /&gt;
&lt;br /&gt;
A warning ahead: This is experimental, in no way stable or supported and if you try any of this you do it at your own risk. Please report any bugs you have with my overlay to me or leave a comment and don&#039;t disturb anyone else (from Gentoo or LibreSSL) with it. If you want to try it, you can get a portage overlay in &lt;a href=&quot;https://svn.hboeck.de/libressl-overlay/&quot;&gt;a subversion repository&lt;/a&gt;. You can check it out with this command:&lt;br /&gt;
&lt;i style=&quot;text-decoration:line-through;&quot;&gt;svn co https://svn.hboeck.de/libressl-overlay/&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;git clone https://github.com/gentoo/libressl.git&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
This is what I had to do to get things running:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;LibreSSL itself&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
First of all the Gentoo tree contains a lot of packages that directly depend on openssl, so I couldn&#039;t just replace that. The correct solution to handle such issues would be to create a virtual package and change all packages depending directly on openssl to depend on the virtual. This is already discussed in the &lt;a href=&quot;https://bugs.gentoo.org/show_bug.cgi?id=508750&quot;&gt;appropriate Gentoo bug&lt;/a&gt;, but this would mean patching hundreds of packages so I skipped it and worked around it by leaving a fake openssl package in place that itself depends on libressl.&lt;br /&gt;
&lt;br /&gt;
LibreSSL deprecates some APIs from OpenSSL. The first thing that stopped me was that various programs use the functions RAND_egd() and RAND_egd_bytes(). I didn&#039;t know until yesterday what egd is. It stands for &lt;a href=&quot;http://egd.sourceforge.net/&quot;&gt;Entropy Gathering Daemon&lt;/a&gt; and is a tool written in perl meant to replace the functionality of /dev/(u)random on non-Linux-systems. The LibreSSL-developers consider it insecure and after having read what it is I have to agree. However, the removal of those functions causes many packages not to build, upon them wget, python and ruby. My workaround was to add two dummy functions that just return -1, which is the error code if the Entropy Gathering Daemon is not available. So the API still behaves like expected. I also &lt;a href=&quot;http://marc.info/?l=openbsd-tech&amp;amp;m=140512043210089&amp;amp;w=2&quot;&gt;posted the patch upstream&lt;/a&gt;, but the LibreSSL devs don&#039;t like it. So on the long term it&#039;s probably better to fix applications to stop trying to use egd, but for now these dummy functions make it easier for me to build my system.&lt;br /&gt;
&lt;br /&gt;
The second issue popping up was that the libcrypto.so from libressl contains an undefined  main() function symbol which causes linking problems with a couple of applications (subversion, xorg-server, hexchat). According to upstream this undefined symbol is intended and most likely these are bugs in the applications having linking problems. However, for now it was easier for me to patch the symbol out instead of fixing all the apps. Like the egd issue on the long term fixing the applications is better.&lt;br /&gt;
&lt;br /&gt;
The third issue was that LibreSSL doesn&#039;t ship pkg-config (.pc) files, some apps use them to get the correct compilation flags. I grabbed the ones from openssl and adjusted them accordingly.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;OpenSSH&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
This was the most interesting issue from all of them.&lt;br /&gt;
&lt;br /&gt;
To understand this you have to understand how both LibreSSL and OpenSSH are developed. They are both from OpenBSD and they use some functions that are only available there. To allow them to be built on other systems they release portable versions which ship the missing OpenBSD-only-functions. One of them is arc4random().&lt;br /&gt;
&lt;br /&gt;
Both LibreSSL and OpenSSH ship their compatibility version of arc4random(). The one from OpenSSH calls RAND_bytes(), which is a function from OpenSSL. The RAND_bytes() function from LibreSSL however calls arc4random(). Due to the linking order OpenSSH uses its own arc4random(). So what we have here is a nice recursion. arc4random() and RAND_bytes() try to call each other. The result is a segfault.&lt;br /&gt;
&lt;br /&gt;
I fixed it by using the LibreSSL arc4random.c file for OpenSSH. I had to copy another function called arc4random_stir() from OpenSSH&#039;s arc4random.c and the header file thread_private.h. Surprisingly, this seems to work flawlessly.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Net-SSLeay&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
This package contains the perl bindings for openssl. The problem is a check for the openssl version string that expected the name OpenSSL and a version number with three numbers and a letter (like 1.0.1h). LibreSSL prints the version 2.0. I just hardcoded the OpenSSL version numer, which is not a real fix, but it works for now.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;SpamAssassin&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
SpamAssassin&#039;s code for spamc requires SSLv2 functions to be available. SSLv2 is heavily insecure and should not be used at all and therefore the LibreSSL devs have removed all SSLv2 function calls. Luckily, Debian had a patch to remove SSLv2 that I could use.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;libesmtp / gwenhywfar&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Some DES-related functions (DES is the old Data Encryption Standard) in OpenSSL are available in two forms: With uppercase DES_ and with lowercase des_. I can only guess that the des_ variants are for backwards compatibliity with some very old versions of OpenSSL. According to the docs the DES_ variants should be used. LibreSSL has removed the des_ variants.&lt;br /&gt;
&lt;br /&gt;
For gwenhywfar I wrote a small patch and sent it upstream. For libesmtp all the code was in ntlm. After reading that ntlm is an ancient, proprietary Microsoft authentication protocol I decided that I don&#039;t need that anyway so I just added --disable-ntlm to the ebuild.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Dovecot&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
In Dovecot two issues popped up. LibreSSL removed the SSL Compression functionality (which is good, because since the CRIME attack we know it&#039;s not secure). Dovecot&#039;s configure script checks for it, but the check doesn&#039;t work. It checks for a function that LibreSSL keeps as a stub. For now I just disabled the check in the configure script. The solution is probably to remove all remaining stub functions. The configure script could probably also be changed to work in any case.&lt;br /&gt;
&lt;br /&gt;
The second issue was that the Dovecot code has some #ifdef clauses that check the openssl version number for the ECDH auto functionality that has been added in OpenSSL 1.0.2 beta versions. As the LibreSSL version number 2.0 is higher than 1.0.2 it thinks it is newer and tries to enable it, but the code is not present in LibreSSL. I changed the #ifdefs to check for the actual functionality by checking a constant defined by the ECDH auto code.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Apache httpd&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
The Apache http compilation complained about a missing ENGINE_CTRL_CHIL_SET_FORKCHECK. I have no idea what it does, but I found &lt;a href=&quot;https://mail-archives.apache.org/mod_mbox/subversion-commits/201404.mbox/%3C20140427182653.375C423888D7@eris.apache.org%3E&quot;&gt;a patch to fix the issue&lt;/a&gt;, so I didn&#039;t investigate it further.&lt;br /&gt;
&lt;br /&gt;
Further reading:&lt;br /&gt;
Someone else tried &lt;a href=&quot;http://devsonacid.wordpress.com/2014/07/12/how-compatible-is-libressl/&quot;&gt;to get things running on Sabotage Linux&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update:&lt;/b&gt; I&#039;ve abandoned my own libressl overlay, a &lt;a href=&quot;https://github.com/gentoo/libressl/&quot;&gt;LibreSSL overlay by various Gentoo developers is now maintained at GitHub&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Sat, 12 Jul 2014 20:31:00 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/851-guid.html</guid>
    <category>cryptography</category>
<category>gentoo</category>
<category>libressl</category>
<category>linux</category>
<category>openbsd</category>
<category>openssl</category>
<category>ssl</category>
<category>tls</category>

</item>
<item>
    <title>My AC100 travel laptop</title>
    <link>https://blog.hboeck.de/archives/820-My-AC100-travel-laptop.html</link>
            <category>Computer culture</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/820-My-AC100-travel-laptop.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=820</wfw:comment>

    <slash:comments>9</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=820</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!-- s9ymdb:369 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;300&quot; height=&quot;225&quot;  src=&quot;https://blog.hboeck.de/uploads/ac100.jpg&quot;  alt=&quot;Toshiba AC100&quot; /&gt;I recently noted that I have never blogged about this nice little device I now own for a couple of years. I originally bought the Toshiba AC100 before a two-month-long trip through Russia and China.&lt;br /&gt;
&lt;br /&gt;
I was looking for a possibility to have a basic laptop, but without much weight. The AC100 is an ARM-based laptop which originally ships with the Android operating system. It weights less than 800 gramms and thus is lighter than the usual subnotebooks. According to my knowledge, it&#039;s not produced any more, but it can still be bought on ebay.&lt;br /&gt;
&lt;br /&gt;
The nice thing is: You can &lt;a href=&quot;http://ac100.grandou.net/&quot;&gt;install Linux&lt;/a&gt; on it and thus it will give you the possibility to run an almost full desktop-system. Though a warning ahead: While basic things work, it is quite a hacky business and you should expect to see problems. If you aren&#039;t prepared to solve them, this is probably not the solution for you.&lt;br /&gt;
&lt;br /&gt;
Originally I was running Gentoo Linux on it (and it did well on my two-month trip), but now I&#039;m running Ubuntu. The reason is that it was just too hard to get anything fixed if it didn&#039;t work. I rarely could find help anywhere, I assume there are only a handful of people that ever tried installing Gentoo on this Device. &lt;a href=&quot;https://wiki.ubuntu.com/ARM/TEGRA/AC100&quot;&gt;Ubuntu up until version 12.10&lt;/a&gt; has reasonable support.&lt;br /&gt;
&lt;br /&gt;
The great thing is: This is probably one of the lightest solutions to have a desktop/laptop-like machine with a real keyboard. Perfect for travelling. As it&#039;s running Linux, you can have access to a large number of standard applications. With lightweight apps like Abiword or Claws-Mail you can use basic applications.&lt;br /&gt;
&lt;br /&gt;
The limitations are the Browser and Video. You can run Chromium or Firefox, but the device clearly shows its limits. Expect to wait longer sometimes, don&#039;t open too many tabs - and I always have to remember to never try to open Chromium and Firefox at the same time, as this makes the system mostly unusable. Obviously there&#039;s no Flash and nothing else that&#039;s only available in binary form, because ARM Linux is such a niche OS that nobody will provide binary apps for it.&lt;br /&gt;
&lt;br /&gt;
Videos work, but limited. There&#039;s no xv support in the free driver. That means if you want to upscale a video to fullscreen, this has to be done in software and that usually means you cannot play videos fast enough. There&#039;s a binary graphics driver by Nvidia (the internals of the device are based on the Nvidia Tegra chipset), but I haven&#039;t had much success with it.&lt;img src=&quot;http://vg07.met.vgwort.de/na/00d4690130bf4b8b878bacaec50ee147&quot; width=&quot;1&quot; height=&quot;1&quot; alt=&quot;&quot; /&gt; 
    </content:encoded>

    <pubDate>Wed, 04 Sep 2013 17:23:20 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/820-guid.html</guid>
    <category>ac100</category>
<category>android</category>
<category>gentoo</category>
<category>laptop</category>
<category>linux</category>
<category>notebook</category>
<category>smartbook</category>
<category>subnotebook</category>
<category>toshiba</category>
<category>ubuntu</category>

</item>
<item>
    <title>Gentoo is dangerous for children</title>
    <link>https://blog.hboeck.de/archives/705-Gentoo-is-dangerous-for-children.html</link>
            <category>Computer culture</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Politics</category>
    
    <comments>https://blog.hboeck.de/archives/705-Gentoo-is-dangerous-for-children.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=705</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=705</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;a href=&quot;http://blog.scherbaum.info/2009/05/22/achtung-gentoo-ist-jugendgefahrdend-frei-ab-14/&quot;&gt;Tobias Scherbaum already blogged this&lt;/a&gt;, but only in german, so I&#039;m writing this again for the Planet Gentoo readers.&lt;br /&gt;
&lt;br /&gt;
A german webpage called jugendschutzprogramm.de provides filters for webpages potentially dangerous for children. Now some people noticed that this page considers quite a lot dangerous.&lt;br /&gt;
&lt;br /&gt;
Both gentoo.de and gentoo.org are considered only suitable for people over 14. So if you ever thought about installing Gentoo on the PC of a kid, think again what you might do to that kid.&lt;br /&gt;
&lt;br /&gt;
Beside, my blog is even more dangerous: It&#039;s blocked by default.&lt;br /&gt;
&lt;br /&gt;
The page is supported by a couple of companies providing pornographic content. Interesting enough, it&#039;s also supported by a big german Newspaper (BILD) that regularly has pornographic images on their frontpage. However, their page is considered harmless.&lt;br /&gt;
&lt;br /&gt;
But what&#039;s really frightening is that jugendschutzprogramm.de is part of &lt;a href=&quot;http://en.wikipedia.org/wiki/Internet_Content_Rating_Association&quot;&gt;ICRA&lt;/a&gt;, an international system by big content and internet providers. It&#039;s even supported by the european union.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update:&lt;/b&gt; Page has XSS, maybe someone wants to play with it?&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;lt;form action=&quot;http://jugendschutzprogramm.de/webmaster/label-generator.php&quot; method=&quot;post&quot;&amp;gt;&lt;br /&gt;
&amp;lt;input name=&quot;URL&quot; value=&#039;&quot;&amp;gt;&amp;lt;script&amp;gt;alert(1)&amp;lt;/script&amp;gt;&#039; type=&quot;text&quot;&amp;gt;&lt;br /&gt;
&amp;lt;input name=&quot;submit&quot; type=&quot;submit&quot;&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;/i&gt; 
    </content:encoded>

    <pubDate>Sat, 23 May 2009 12:46:05 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/705-guid.html</guid>
    <category>censorship</category>
<category>freedomofspeech</category>
<category>gentoo</category>
<category>politics</category>
<category>zensur</category>

</item>
<item>
    <title>ping with IDN</title>
    <link>https://blog.hboeck.de/archives/614-ping-with-IDN.html</link>
            <category>Computer culture</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/614-ping-with-IDN.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=614</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=614</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!-- s9ymdb:189 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;445&quot; height=&quot;57&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;https://blog.hboeck.de/uploads/ping-idn.png&quot; alt=&quot;ping on hböck.de&quot; /&gt;Today I asked myself if I can ping an IDN host.&lt;br /&gt;
&lt;br /&gt;
My default ping (iputils on linux) couldn&#039;t do it, but I found some patches out there, e.g. from Fedora. Thanks to SpanKY, we now also have &lt;a href=&quot;http://packages.gentoo.org/package/net-misc/iputils&quot;&gt;IDN-enabled ping&lt;/a&gt; in Gentoo (&lt;a href=&quot;https://bugs.gentoo.org/show_bug.cgi?id=218638&quot;&gt;he used a modified patch&lt;/a&gt;). 
    </content:encoded>

    <pubDate>Mon, 21 Apr 2008 01:26:15 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/614-guid.html</guid>
    <category>gentoo</category>
<category>idn</category>
<category>iputils</category>
<category>ping</category>

</item>
<item>
    <title>merkaartor, another editor for OpenStreetMap</title>
    <link>https://blog.hboeck.de/archives/594-merkaartor,-another-editor-for-OpenStreetMap.html</link>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/594-merkaartor,-another-editor-for-OpenStreetMap.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=594</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=594</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!-- s9ymdb:180 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;300&quot; height=&quot;187&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;https://blog.hboeck.de/uploads/merkaartor.serendipityThumb.png&quot; alt=&quot;merkaartor&quot; /&gt;After some more »out of memory«-messages by josm, I thought it&#039;s time to look out for alternatives.&lt;br /&gt;
&lt;br /&gt;
For the openstreetmap-project, the two main editors are josm (java) and potlach (flash). I think using java probably wasn&#039;t a very wise decision (I still wonder how an app can get »out of memory« after loading about 5 MB of images, do they create a pixel class and store every pixel in an object?) and I don&#039;t like flash either.&lt;br /&gt;
&lt;br /&gt;
There&#039;s another project called &lt;a href=&quot;http://www.irule.be/bvh/c++/merkaartor/&quot;&gt;merkaartor&lt;/a&gt; and today I had a look. My first feeling is that it&#039;s promising. It has good performance, it does nice live-rendering and it supports the basic features (adding nodes and ways, up/downloading stuff to the osm-system).&lt;br /&gt;
&lt;br /&gt;
Sure, comparing to the large list of plugin features josm has, it&#039;s limited. Maybe I&#039;ll try to hack in some bits I&#039;m missing at the moment.&lt;br /&gt;
&lt;br /&gt;
In my continuing effort to improve gentoo for geo-related stuff, I&#039;ve just added a merkaartor package to portage. 
    </content:encoded>

    <pubDate>Fri, 29 Feb 2008 12:42:35 +0100</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/594-guid.html</guid>
    <category>english</category>
<category>gentoo</category>
<category>josm</category>
<category>merkaartor</category>
<category>openstreetmap</category>

</item>
<item>
    <title>Compiz Fusion hits Gentoo</title>
    <link>https://blog.hboeck.de/archives/555-Compiz-Fusion-hits-Gentoo.html</link>
            <category>Computer culture</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/555-Compiz-Fusion-hits-Gentoo.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=555</wfw:comment>

    <slash:comments>8</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=555</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    I know you&#039;ve been waiting far too long for that. Now that Compiz and Compiz Fusion 0.6 are out, I&#039;ve added them to portage.&lt;br /&gt;
&lt;br /&gt;
The background: Compiz and Beryl, the two famous 3D-composite/windowmanagers for Linux, have merged forces. Main Compiz still resides in the package x11-wm/compiz, many additional plugins and tools are fetched in by the x11-wm/compiz-fusion metapackage.&lt;br /&gt;
&lt;br /&gt;
The ebuilds are all based on the &lt;a href=&quot;http://wiki.gentoo-xeffects.org/Main_Page&quot;&gt;xeffects overlay&lt;/a&gt;, with some cleanup by me.&lt;br /&gt;
&lt;br /&gt;
Happy window-wobbling! 
    </content:encoded>

    <pubDate>Wed, 24 Oct 2007 01:54:14 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/555-guid.html</guid>
    <category>beryl</category>
<category>compiz</category>
<category>compizfusion</category>
<category>composite</category>
<category>freesoftware</category>
<category>gentoo</category>
<category>linux</category>

</item>
<item>
    <title>Make Gentoo OSM-ready</title>
    <link>https://blog.hboeck.de/archives/532-Make-Gentoo-OSM-ready.html</link>
            <category>Code</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/532-Make-Gentoo-OSM-ready.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=532</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=532</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    I recently added some stuff to gentoo for openstreetmap and gps-related work.&lt;br /&gt;
&lt;br /&gt;
For one, the java openstreetmap editor &lt;a href=&quot;http://josm.eigenheimstrasse.de/&quot;&gt;josm&lt;/a&gt; now has ebuilds. josm and josm-plugins, the first only installs the program itself plus language packs, the second installs most of the josm-plugins available. They can be enabled within the configuration.&lt;br /&gt;
I was a bit unsure how to handle it, as I first thought about adding some basic plugins to the josm-package itself. But as the opinions on what »basic« plugins are seem to differ a lot, I decided to do it this way.&lt;br /&gt;
Another new package is &lt;a href=&quot;http://gebabbel.sourceforge.net/&quot;&gt;gebabbel&lt;/a&gt;, a gui-frontend for gpsbabel. gpsbabel is a commandline-tool that implements various proprietary gps coordinate formats and allows access to many gps-devices (e. g. garmin). Beside it can be used to filter and convert gps-tracks.&lt;br /&gt;
&lt;br /&gt;
More to come. Probably also interesting stuff in portage is gpsdrive (which has some osm-stuff in svn, but not yet in a release), marble (world-view-tool for kde, osm-support is planned within the next months). Other stuff not yet in portage, I plan to make packages in the future: tiles@home, qlandkarte, mapnik and probably everything it takes to run an osm-server.&lt;br /&gt;
&lt;br /&gt;
A bit offtopic, as gentoo doesn&#039;t run on mobiles (yet): &lt;a href=&quot;http://www.substanceofcode.com/software/mobile-trail-explorer/&quot;&gt;Mobile Trail Explorer&lt;/a&gt; is the only free (as in freedom) software I found for J2ME-mobiles to create gps-tracks. It&#039;s a bit alpha, lacking some features and unstable, but it&#039;s free, so I hope it&#039;ll become better soon. It&#039;s a cheap way to get gps-tracks, assuming that you already have a java/bluetooth-mobile and you can get a gps-mouse starting at about 50 €.&lt;br /&gt;
&lt;br /&gt;
If you have more suggestions for gps/osm-related stuff, feel free to open requests on the gentoo bugzilla and add me to the cc. 
    </content:encoded>

    <pubDate>Sat, 08 Sep 2007 15:51:21 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/532-guid.html</guid>
    <category>gebabbel</category>
<category>gentoo</category>
<category>gps</category>
<category>gpsbabel</category>
<category>josm</category>
<category>mobiletrailexplorer</category>
<category>openstreetmap</category>

</item>
<item>
    <title>Welcome a new Gentoo Dev: Christian Hoffmann</title>
    <link>https://blog.hboeck.de/archives/525-Welcome-a-new-Gentoo-Dev-Christian-Hoffmann.html</link>
            <category>Code</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/525-Welcome-a-new-Gentoo-Dev-Christian-Hoffmann.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=525</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=525</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    I&#039;m happy to announce that I mentored &lt;a href=&quot;http://hoffie.info/&quot;&gt;Christian Hoffmann&lt;/a&gt; to become a new Gentoo Developer.&lt;br /&gt;
&lt;br /&gt;
Christian did some PHP-security work for Gentoo recently, which is very important due to the high amount of security issues php had recently. Welcome on board and continue your good work. 
    </content:encoded>

    <pubDate>Sun, 19 Aug 2007 21:48:53 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/525-guid.html</guid>
    <category>developer</category>
<category>gentoo</category>
<category>php</category>

</item>
<item>
    <title>Updates on compiz in Gentoo (now with kde-decorator)</title>
    <link>https://blog.hboeck.de/archives/424-Updates-on-compiz-in-Gentoo-now-with-kde-decorator.html</link>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/424-Updates-on-compiz-in-Gentoo-now-with-kde-decorator.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=424</wfw:comment>

    <slash:comments>9</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=424</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!-- s9ymdb:113 --&gt;&lt;img width=&#039;300&#039; height=&#039;178&#039; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;https://blog.hboeck.de/uploads/compiz-kde.png&quot; alt=&quot;&quot; /&gt;I&#039;ve just committed some compiz-related updates to Gentoo. First we now have version 0.3.6, the most interesting news is probably that it now has a working kde-window-decorator. gnome/kde-stuff is now only enabled on use-flags, so if you wanna continue to use gconf, you&#039;ll have to build compiz with the gnome-flag.&lt;br /&gt;
compiz-start tries to autodetect a running kde and then run the kde-window-decorator. If compiz-start fails for you, please report it, because I plan to deprecate all the compiz-aiglx/xgl/nvidia-scripts.&lt;br /&gt;
&lt;br /&gt;
Beside that we now have compiz-settings in the tree, which is a simple configuration-tool for compiz and saves you from using gconf manually. 
    </content:encoded>

    <pubDate>Sat, 06 Jan 2007 23:04:03 +0100</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/424-guid.html</guid>
    <category>compiz</category>
<category>gentoo</category>
<category>kde</category>

</item>
<item>
    <title>Updates on xgl/aiglx/compiz overlay</title>
    <link>https://blog.hboeck.de/archives/384-Updates-on-xglaiglxcompiz-overlay.html</link>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/384-Updates-on-xglaiglxcompiz-overlay.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=384</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=384</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    I just did some large updates to my »fun with x«-overlay after some experiences from the weekend where I installed it on various other people&#039;s machines, so I thought it&#039;s time to post some up-to-date information.&lt;br /&gt;
A few days ago I got a bunch of new patches from Kristian Høgsberg that should be much less hacky than the previous ones. You need to re-compile xorg-server and compiz together to use aiglx with compiz.&lt;br /&gt;
The compiz-ebuild has no longer a gnome and kde useflag, because the kde-window-decorator is not working at the moment and it doesn&#039;t make much sense to build compiz without any window decorations. Also, compiz now comes with two startscripts (compiz-aiglx and compiz-xgl) that basically just run the decorator and compiz with all default plugins. I noticed that the autodetection hack (whether it&#039;s running xgl or aiglx) doesn&#039;t really work, so the script also has all neccessary parameters. The patch is still in, but I&#039;d like to have some better solution for that in the future.&lt;br /&gt;
In the main dir, I placed a sample package.keywords for people using the stable (no ~arch) tree of gentoo.&lt;br /&gt;
&lt;br /&gt;
I&#039;ve -*-keyworded the metacity-ebuild (because upstream isn&#039;t working at the moment on the libcm/metacity-stuff and compared to compiz it&#039;s boring anyway) and the compiz-quinnstorm-ebuild (because I don&#039;t work on it currently). You can still use them though if you add them to your package.keywords.&lt;br /&gt;
&lt;br /&gt;
Probably one of the more interesting news: I have now commit-access to &lt;a href=&quot;http://www.xgl-coffee.org/&quot;&gt;coffee&#039;s overlay&lt;/a&gt;, which means we work together to merge improvements forth and back. For the common question which overlay to take, I could say that mine is more polished, just contains the basic things to run xgl/aiglx and compiz and nothing more and is probably more stable, while coffee&#039;s contains more stuff (e. g. the now split up quinnstorm stuff).&lt;br /&gt;
&lt;br /&gt;
Beside that, mesa is going to have a new release within days, which will make things much easier (and probably let us merge some stuff into main portage soon).&lt;br /&gt;
&lt;br /&gt;
To get the fun, just&lt;br /&gt;
&lt;b&gt;svn co https://svn.hboeck.de/xgl-overlay/&lt;/b&gt; 
    </content:encoded>

    <pubDate>Mon, 04 Sep 2006 14:26:00 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/384-guid.html</guid>
    <category>aiglx</category>
<category>compiz</category>
<category>gentoo</category>
<category>xgl</category>

</item>
<item>
    <title>Updates to AIGLX-ebuilds</title>
    <link>https://blog.hboeck.de/archives/351-Updates-to-AIGLX-ebuilds.html</link>
            <category>Code</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/351-Updates-to-AIGLX-ebuilds.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=351</wfw:comment>

    <slash:comments>20</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=351</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!--s9ymdb:91--&gt;&lt;img width=&#039;300&#039; height=&#039;137&#039; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;https://blog.hboeck.de/uploads/aiglx.png&quot; alt=&quot;Wobbly windows&quot; /&gt;I&#039;ve committed some updates to my xgl/aiglx-overlay. First of all, it now uses a git-ebuild for the xserver, because there have been some improvements (implementation of GLX_MESA_copy_sub_buffer) I wasn&#039;t able to backport easily. Then I&#039;ve added an experimental patch to compiz autodetecting AIGLX, which removes the need for indirect and strict-binding parameters. Some other no longer needed patches removed. Get it with:&lt;br /&gt;
&lt;i&gt;svn co http://svn.hboeck.de/xgl-overlay&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
Or, if you already have it, cd to it and&lt;br /&gt;
&lt;i&gt;svn update&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;text-decoration:line-through;&quot;&gt;To use it properly, you&#039;ll need some entries in your &lt;i&gt;/etc/portage/package.unmask&lt;/i&gt; (I&#039;ve put a package.unmask.sample in the overlay root dir) for proper operation of the overlay:&lt;br /&gt;
&lt;i&gt;x11-base/xorg-server&lt;br /&gt;
media-libs/glitz&lt;br /&gt;
x11-libs/cairo&lt;br /&gt;
dev-python/pycairo&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
(no longer needed)&lt;br /&gt;
&lt;br /&gt;
Enjoy! 
    </content:encoded>

    <pubDate>Mon, 10 Jul 2006 00:50:28 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/351-guid.html</guid>
    <category>aiglx</category>
<category>compiz</category>
<category>gentoo</category>

</item>
<item>
    <title>Trip to nancy, rmll</title>
    <link>https://blog.hboeck.de/archives/348-Trip-to-nancy,-rmll.html</link>
            <category>Computer culture</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Life</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/348-Trip-to-nancy,-rmll.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=348</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=348</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!--s9ymdb:90--&gt;&lt;img width=&#039;130&#039; height=&#039;130&#039; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;https://blog.hboeck.de/uploads/rmll.jpg&quot; alt=&quot;RMLL&quot; /&gt;Short note for my english visitors (and planet gentoo readers), I&#039;m here at the &lt;a href=&quot;http://www.rmll.info/&quot;&gt;Libre Software Meeting&lt;/a&gt; (Rencontres Mondiales du Logiciel Libre, RMLL) in Nancy, a french free software event.&lt;br /&gt;
There&#039;s a gentoo booth with kernelsense and dams.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://pictures.hboeck.de/rmll06/&quot;&gt;First set of rmll-pictures&lt;/a&gt; 
    </content:encoded>

    <pubDate>Fri, 07 Jul 2006 15:00:54 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/348-guid.html</guid>
    <category>france</category>
<category>gentoo</category>
<category>linux</category>
<category>nancy</category>
<category>rmll</category>

</item>
<item>
    <title>Compiz on AIGLX</title>
    <link>https://blog.hboeck.de/archives/338-Compiz-on-AIGLX.html</link>
            <category>Computer culture</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
    
    <comments>https://blog.hboeck.de/archives/338-Compiz-on-AIGLX.html#comments</comments>
    <wfw:comment>https://blog.hboeck.de/wfwcomment.php?cid=338</wfw:comment>

    <slash:comments>48</slash:comments>
    <wfw:commentRss>https://blog.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=338</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;a class=&#039;serendipity_image_link&#039; href=&#039;https://blog.hboeck.de/uploads/compiz-aiglx.jpg&#039;&gt;&lt;!--s9ymdb:80--&gt;&lt;img width=&#039;300&#039; height=&#039;225&#039; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;https://blog.hboeck.de/uploads/compiz-aiglx.serendipityThumb.jpg&quot; alt=&quot;Compiz&quot; /&gt;&lt;/a&gt;Another update from the X-funky-and-cool-front: With some Patches from Kristian Høgsberg, I got compiz running with aiglx.&lt;br /&gt;
&lt;br /&gt;
For those who don&#039;t know: Compiz is a combined window/composite manager that was released together with xgl earlier this year. aiglx is another approach to get 3D-accelerated Desktops on Linux/Xorg.&lt;br /&gt;
&lt;br /&gt;
I&#039;ve merged the appropriate (very experimental stuff, big fat warning!) gentoo packages into my overlay. For all non-gentooers: You are on your own, but you can grab &lt;a href=&quot;http://people.freedesktop.org/~krh/compiz-on-aiglx/&quot;&gt;Kristian&#039;s patches here&lt;/a&gt;. &lt;b&gt;Update:&lt;/b&gt; Kristian told me that &lt;a href=&quot;http://people.redhat.com/krh/&quot;&gt;Fedora Rawhide users are also lucky&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
You can get it with&lt;br /&gt;
&lt;i&gt;svn co http://svn.hboeck.de/xgl-overlay&lt;/i&gt;&lt;br /&gt;
(It&#039;s still called xgl-overlay, although it should probably be named »various-funky-x-stuff« or so, but I was too lazy to rename it)&lt;br /&gt;
&lt;br /&gt;
To install it, check it out like above, put the path into your PORTDIR_OVERLAY-var in make.conf. Then re-merge libdrm, mesa, xorg-server and compiz (all ~x86). You can also merge experimental libcm/metacity-packages (metacity with 3d-effects), therefore add xcomposite to your USE-flags and merge metacity-2.15.5.&lt;br /&gt;
&lt;br /&gt;
To start compiz on aiglx (that means »normal« X):&lt;br /&gt;
&lt;i&gt;LIBGL_ALWAYS_INDIRECT=1 compiz --replace --strict-binding move resize minimize place decoration wobbly cube rotate scale switcher zoom &amp;amp;&lt;br /&gt;
gnome-window-decorator&lt;/i&gt;&lt;br /&gt;
(replace plugins with anything you want, the LIBGL-var and strict-binding are required for running in aiglx, this should be automatically detected soon)&lt;br /&gt;
&lt;br /&gt;
For metacity use:&lt;br /&gt;
&lt;i&gt;USE_WOBBLY=1 metacity --replace&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
As before, there is still a package for xgl, so you now can try both. 
    </content:encoded>

    <pubDate>Wed, 21 Jun 2006 01:27:07 +0200</pubDate>
    <guid isPermaLink="false">https://blog.hboeck.de/archives/338-guid.html</guid>
    <category>3d</category>
<category>aiglx</category>
<category>compiz</category>
<category>gentoo</category>
<category>metacity</category>
<category>xgl</category>
<category>xorg</category>

</item>

</channel>
</rss>
