<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DailyStuff &#187; Solaris</title>
	<atom:link href="http://blog.dailystuff.nl/tag/solaris/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dailystuff.nl</link>
	<description>toen Internet stil stond en weer doorging</description>
	<lastBuildDate>Sat, 04 Feb 2012 07:46:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="search"
           href="http://blog.dailystuff.nl/opensearch"
           type="application/opensearchdescription+xml"
           title="Content Search" /><atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>BtrFS and readonly snapshots</title>
		<link>http://blog.dailystuff.nl/2012/01/btrfs-and-readonly-snapshots/</link>
		<comments>http://blog.dailystuff.nl/2012/01/btrfs-and-readonly-snapshots/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 07:20:55 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[BtrFS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[snapshot]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[ZFS]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=1130</guid>
		<description><![CDATA[In a previous posting I started with BtrFS and as mentioned BtrFS supports snapshotting. With this you can create a point in time copy of a subvolume and even create a clone that can be used as a new working subvolume. To start we first need the BtrFS volume which can and must always be [...]]]></description>
			<content:encoded><![CDATA[<p>In a <a href="http://blog.dailystuff.nl/2012/01/first-steps-with-btrfs/" title="First steps with BtrFS">previous posting</a> I started with BtrFS and as mentioned BtrFS supports snapshotting. With this you can create a point in time copy of a subvolume and even create a clone that can be used as a new working subvolume. To start we first need the BtrFS volume which can and must always be identified as subvolid 0. This as the default volume to be mounted can be altered to a subvolume instead of the real root of a BtrFS volume. We start with updating /etc/fstab so we can mount the BtrFS volume.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">LABEL=datavol	/home	btrfs	defaults,subvol=home	0	0
LABEL=datavol	/media/btrfs-datavol	btrfs	defaults,noauto,subvolid=0	0	0</pre></div></div>

<p>As /media is a temporary file system, meaning it is being recreated with every reboot, we need to create a mountpoint for the BtrFS volume before mounting. After that we create two read-only snapshots with a small delay in between. As there is currently no naming guide for how to call snapshots, I adopted the ZFS naming schema with the @-sign as separator between the subvolume name and timestamp.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">$ sudo mkdir -m 0755 /media/btrfs-datavol
$ sudo mount /media/btrfs-datavol
$ cd /media/btrfs-datavol
$ sudo btrfs subvolume snapshot -r home home\@`date &quot;+%Y%M%d-%H%m%S-%Z&quot;`
Create a readonly snapshot of 'home' in './home@20124721-080109-CET
...
$ sudo btrfs subvolume snapshot -r home home\@`date &quot;+%Y%M%d-%H%m%S-%Z&quot;`
Create a readonly snapshot of 'home' in './home@20124721-080131-CET'
$ ls -l
totaal 0
drwxr-xr-x 1 root root 52 nov 21  2010 home
drwxr-xr-x 1 root root 52 nov 21  2010 home@20124721-080109-CET
drwxr-xr-x 1 root root 52 nov 21  2010 home@20124721-080131-CET</pre></div></div>

<p>We now have two read-only snapshots and lets test to see if they are real read-only subvolumes. The creation a new file shouldn&#8217;t be possible.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">$sudo touch home@20124721-080109-CET/test.txt
touch: cannot touch `home@20124721-080109-CET/test.txt': Read-only file system</pre></div></div>

<p>Creating snapshots is fun and handy for migrations or as on disk backup solution, but they do consume space as the delta&#8217;s between snapshots is being kept on disk. Meaning that changes between the snapshots are being keept on disk even when you remove them. Freeing diskspace will not only be removing them from the current snapshot, but also removing previous snapshots that include the removed data.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">$ sudo btrfs subvolume delete home@20124721-080109-CET
Delete subvolume '/media/btrfs-datavol/home@20124721-080109-CET'
$ ls -l 
totaal 0
drwxr-xr-x 1 root root 52 nov 21  2010 home
drwxr-xr-x 1 root root 52 nov 21  2010 home@20124721-080131-CET</pre></div></div>

<p>As last step we unmount the BtrFS volume again. This is where ZFS and BtrFS differ too much for my taste. To create and access snapshots on ZFS the zpool doesn&#8217;t needs to be mounted, but then again with the first few release of ZFS the zpool needed to mounted as well. So there is still hope as BtrFS is still under development.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">$ sudo umount /media/btrfs-datavol</pre></div></div>

<p>Seeing what is possible with BtrFS, Sun&#8217;s TimeSlider becomes an option. Also the option of Live Upgrades with rollbacks as is possible with Solaris 11, but for that BtrFS with read-write snapshots needs to be tested in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2012/01/btrfs-and-readonly-snapshots/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>First steps with BtrFS</title>
		<link>http://blog.dailystuff.nl/2012/01/first-steps-with-btrfs/</link>
		<comments>http://blog.dailystuff.nl/2012/01/first-steps-with-btrfs/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 07:47:05 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[BtrFS]]></category>
		<category><![CDATA[EncFS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[LUKS]]></category>
		<category><![CDATA[LVM]]></category>
		<category><![CDATA[MD]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[ZFS]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=1128</guid>
		<description><![CDATA[After using ZFS on Solaris, I missed the ZFS features on Linux and with no chance of ZFS coming to Linux I had to do with MD and LVM. Or at least until BtrFS became mature enough and since the Linux 3.0 that time slowly has come. With Linux 3.0 BtrFS supports autodefragmentation and scrubbing [...]]]></description>
			<content:encoded><![CDATA[<p>After using ZFS on Solaris, I missed the ZFS features on Linux and with no chance of ZFS coming to Linux I had to do with MD and LVM. Or at least until BtrFS became mature enough and since the Linux 3.0 that time slowly has come. With Linux 3.0 BtrFS supports autodefragmentation and scrubbing of volumes. The second is maybe the most important feature of both ZFS and BtrFS as it can be used to actively scan data on disk for errors.</p>
<p>The first tests with BtrFS where in a virtual machine already a longtime ago, but the userland tools where still in development. Now the command btrfs follows the path set by Sun Microsystems and basically combines the commands zfs and zpool for ZFS. But nothing compares to a test in the real world and so I broke a mirror and created a BtrFS volume with the name datavol:</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">$ sudo mkfs.btrfs -L 'datavol' /dev/sdb2</pre></div></div>

<p>Now we can mount the volume and create a subvolume on it which we are going to be using as our new home volume for users homedirectories.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">$ sudo mount /dev/sdb2 /mnt
$ sudo btrfs subvolume create /mnt/home
$ sudo umount /dev/sdb2</pre></div></div>

<p>When updating /etc/fstab we can tell mount to use the volumename instead of a physical path to a device or some obscure UUID number. Also you can tell which subvolume you want to mount.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">LABEL=datavol	/home	btrfs	defaults,subvol=home	0	0</pre></div></div>

<p>After unmounting and disabling the original volume for /home we can mount everything and copy all the data with rsync for example to see how BtrFS is working in the real world.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">$ sudo mount -a</pre></div></div>

<p>As hinted before scrubbing is important as you can verify that all your data and metadata on disk is still correct. You can do a read-write test by default or only read test to see if all data can be accessed. There is even an option to read parts of the volume that are still unused. In the example below the subvolume for /home is being scrubbed and with success.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">$ sudo btrfs scrub status /home
scrub status for afed6685-315d-4c4d-bac2-865388b28fd2
	scrub started at Sat Jan 17 15:11:58 2012, running for 106 seconds
	total bytes scrubbed: 5.77GB with 0 errors
...
$ sudo btrfs scrub status /mnt
scrub status for afed6685-315d-4c4d-bac2-865388b28fd2
	scrub started at Sat Jan 17 15:11:58 2012 and finished after 11125 seconds
	total bytes scrubbed: 792.82GB with 0 errors</pre></div></div>

<p>The first glances of BtrFS in the real world are a lot better with kernel 3.1 then somewhere with kernel 2.6.30 and I&#8217;m slowly starting to say it becomes ready to be included in RHEL 7 of Debian 8 for example as default storage solution. The same as ZFS became in Solaris 11. But it is not all glory as still a lot of work needs to be done.</p>
<p>The first is encryption as the LUKS era ends with BtrFS as it is not smart to put it between your disks and BtrFS. You lose the advantage of balancing data between disks when you do mirroring for example. But then again LVM has the same issue where you then also first need to setup software raid with MD with LUKS on top of it and LVM on top of that. For home directories EncFS maybe an option, but it still leaves a lot of area&#8217;s uncovered that would be covered by LUKS out of the box.</p>
<p>The second issue is the integration of BtrFS in distributions and the handling of snapshots. As for now you first need to mount the volume before you can make a snapshot of a subvolume. The same for access a snapshot and for that I think ZFS still has an advantage with the .zfs directory accessible for everyone who has access to the filesystem. But time will tell and for now the first tests look great.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2012/01/first-steps-with-btrfs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Internet Packet Filter gone wild</title>
		<link>http://blog.dailystuff.nl/2010/01/internet-packet-filter-gone-wild/</link>
		<comments>http://blog.dailystuff.nl/2010/01/internet-packet-filter-gone-wild/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 20:32:45 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[IPF]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[usenet]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=938</guid>
		<description><![CDATA[Was er recent nog een discussie op usenet in n.c.o.l.n waarbij iemand aangaf dat statefull filtering misschien niet heel verstandig kan zijn. Vandaag kwam er een grappige Sun Alert mijn mailbox binnen. Sun Alert ID: 274710 Title: Solaris 10 IP Filter (ipfilter(5)) Patches (WITHDRAWN) May Cause a Memory Leak for Systems With IPF&#8217;s Stateful Filtering [...]]]></description>
			<content:encoded><![CDATA[<p>Was er recent nog een discussie op usenet in n.c.o.l.n waarbij iemand aangaf dat statefull filtering misschien niet heel verstandig kan zijn. Vandaag kwam er een grappige Sun Alert mijn mailbox binnen.</p>
<blockquote><p>
Sun Alert ID:  274710<br />
Title:  Solaris 10 IP Filter (ipfilter(5)) Patches (WITHDRAWN) May Cause a Memory Leak for Systems<br />
         With IPF&#8217;s Stateful Filtering Configured<br />
Product:        Solaris 10 Operating System<br />
Category:             Availability<br />
Release Phase:        Workaround<br />
Workaround Date:      22-Dec-2009</p>
<p>To view this Sun Alert document please go to the following URL:<br />
<a href="http://sunsolve.sun.com/search/document.do?assetkey=1-66-274710-1">http://sunsolve.sun.com/search/document.do?assetkey=1-66-274710-1</a>
</p></blockquote>
<p><em>Voordat mensen FUD gaan posten, Sun heeft voor oa Solaris een redelijk strikte gate om code te laten opnemen in Solaris en een onderdeel hiervan is peer-review van de code om problemen te voorkomen.</em> Maar blijkbaar slippen er toch soms dingen doorheen zoals bij de 10Gbit/s driver in Solaris wat eigenlijk niet opviel totdat er echt belasting op de driver kwam en de machine bijna door zijn geheugen heen was. Wat dit misschien aangeeft waarom sommige sysadmins wat terughoudender zijn met patches en updates, maar ook met het opzetten van infra niet alleen techniek vereist, maar ook logisch inzicht wat mogelijk is.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2010/01/internet-packet-filter-gone-wild/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diskinformatie in Linux</title>
		<link>http://blog.dailystuff.nl/2009/12/diskinformatie-in-linux/</link>
		<comments>http://blog.dailystuff.nl/2009/12/diskinformatie-in-linux/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 07:46:09 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=916</guid>
		<description><![CDATA[Binnen Solaris kan je met behulp van het commando iostat -En opvragen wat oa het serienummer van een harddisk is, maar ook welk versie van de firmware actief is. Maar hoe zie je dit binnen Linux en het was jarenlang de vraag welke file in het /proc-filesysteem je moest hebben. Nu met het commando lshw [...]]]></description>
			<content:encoded><![CDATA[<p>Binnen <a href="http://www.sun.com/solaris/">Solaris</a> kan je met behulp van het commando <em>iostat -En</em> opvragen wat oa het serienummer van een harddisk is, maar ook welk versie van de firmware actief is. Maar hoe zie je dit binnen <a href="http://www.linux.org/">Linux</a> en het was jarenlang de vraag welke file in het /proc-filesysteem je moest hebben. Nu met het commando <a href="http://manpages.debian.net/cgi-bin/man.cgi?query=lshw&#038;apropos=0&#038;sektion=0&#038;manpath=Debian+Sid&#038;format=html&#038;locale=en"><em>lshw</em></a> kan deze informatie opvragen.<br />
<code><br />
$ sudo lshw -C disk<br />
  *-disk:0<br />
       description: ATA Disk<br />
       product: ST31000340AS<br />
       vendor: Seagate<br />
       physical id: 0<br />
       bus info: scsi@0:0.0.0<br />
       logical name: /dev/sda<br />
       version: SD1A<br />
       serial: 9QJ0K3J6<br />
       size: 931GiB (1TB)<br />
       capabilities: partitioned partitioned:dos<br />
       configuration: ansiversion=5 signature=4b1bb901<br />
  *-disk:1<br />
       description: ATA Disk<br />
       product: ST31000340AS<br />
       vendor: Seagate<br />
       physical id: 1<br />
       bus info: scsi@2:0.0.0<br />
       logical name: /dev/sdb<br />
       version: SD1A<br />
       serial: 9QJ0VXJF<br />
       size: 931GiB (1TB)<br />
       capabilities: partitioned partitioned:dos<br />
       configuration: ansiversion=5 signature=e605e605<br />
  *-cdrom<br />
       description: DVD-RAM writer<br />
       product: CDDVDW SH-S223F<br />
       vendor: TSSTcorp<br />
       physical id: 0.0.0<br />
       bus info: scsi@3:0.0.0<br />
       logical name: /dev/cdrom<br />
       logical name: /dev/cdrw<br />
       logical name: /dev/dvd<br />
       logical name: /dev/dvdrw<br />
       logical name: /dev/scd0<br />
       logical name: /dev/sr0<br />
       version: SB01<br />
       capabilities: removable audio cd-r cd-rw dvd dvd-r dvd-ram<br />
       configuration: ansiversion=5 status=nodisc<br />
</code><br />
Het is belangrijk om te beseffen dat oa ook USB-storage zichtbaar wordt bij dit commando.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2009/12/diskinformatie-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZFS vs Btrfs</title>
		<link>http://blog.dailystuff.nl/2009/10/zfs-vs-btrfs/</link>
		<comments>http://blog.dailystuff.nl/2009/10/zfs-vs-btrfs/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 21:05:21 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[BtrFS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[ZFS]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=886</guid>
		<description><![CDATA[In 2006 integreerde Sun Microsystems een nieuw filesystem onder de naam ZFS in Solaris 10 en vele waren skeptisch. Ook was er voldoende commentaar vanwege de gekozen licentie en het commentaar is er nog steeds nu ZFS ook ontbreekt in Snow Leopard van Apple. Met de overname door Oracle wordt het er mogelijk niet beter [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/Solaris-ZFS-Essentials-Scott-Watanabe/dp/0137000103/"><img class="alignright size-thumbnail wp-image-887" title="Solaris 10 ZFS Essentials" src="/wp-content/uploads//2009/10/solaris10-zfs-essentials-150x150.jpg" alt="Solaris 10 ZFS Essentials" width="150" height="150" /></a>In 2006 integreerde Sun Microsystems een nieuw filesystem onder de naam ZFS in Solaris 10 en vele waren skeptisch. Ook was er voldoende commentaar vanwege de gekozen licentie en het commentaar is er nog steeds nu ZFS ook ontbreekt in Snow Leopard van Apple. Met de overname door Oracle wordt het er mogelijk niet beter op, maar toch staat er een boek voor ZFS op de roadmap.</p>
<p>In dezelfde periode is Oracle begonnen aan <a href="https://btrfs.wiki.kernel.org/">Btrfs</a> voor Linux welke in de kernel is op genomen sinds Linux 2.6.29. Nu begint ZFS redelijk volwassen te worden en het heeft wat jaren geduurt, maar hoe staat Btrfs ervoor. Een virtuele testmachine met een paar lege disken en de laatste versie van Debian Testing zou dus voldoende moeten zijn. Helaas is dit nog geen <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=542819">succesvolle combinatie</a> en geeft aan dat Btrfs misschien nog niet helemaal volwassen is.</p>
<p>Als we naar de techniek en implementatie kijken dan zijn er nog meer verschillen tussen ZFS en Btrfs. Waar ZFS beschikt over RAID 0, 1, 10 maar ook over verschillende RAIDZ generaties en combinaties hiervan waarmee RAID 5 en 6 worden geimplementeerd. Dit terwijl Btrfs voorlopig alleen beschikt over RAID0, RAID1 en RAID10 zonder enige uitbreidingen hierop. Ook blijft Btrfs vertrouwen op bv andere RAID- en LVM-oplossingen, maar ook op de hardware die altijd correct is. Een mooi punt van oa ZFS is dat het de hardware meeneemt in de beslissingen waar het snelst te lezen is bv.</p>
<p>Op bijna alle punten lijkt ZFS volwassen te zijn en behoeft Btrfs nog vele jaren ontwikkeling terwijl ZFS al in 2006 productierijp was. En hoewel ZFS strict in Solaris verweven is en een niet GPL-licentie heeft is het zeer zeker de moeite waard om te gebruiken. Het is misschien ook de vraag of met de komt van Solaris 11 en de uitkomst van de Sun-Oracle merger het nog wel interessant is naar Btrfs te kijken. Zeker als je kijkt naar hoe volwassen OpenSolaris nu is tov wat Linux niet biedt. Alleen een licentie is vaak niet voldoende of het moet de moeite waard zijn om te wachten, maar live upgrade met ZFS is tegenwoordig echt de moeite waard en een verademing.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2009/10/zfs-vs-btrfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verschil in modinfo</title>
		<link>http://blog.dailystuff.nl/2009/10/verschil-in-modinfo/</link>
		<comments>http://blog.dailystuff.nl/2009/10/verschil-in-modinfo/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 06:26:15 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[modinfo]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=885</guid>
		<description><![CDATA[Solaris admins kennen modinfo al om informatie geven over geladen modules in de kernel. Op Linux heeft modinfo een iets andere uitwerking en geeft je voornamelijk een beschrijving wat een module doet, afhankelijkheden van andere modules en licentie. $ sudo modinfo dm_crypt filename: /lib/modules/2.6.30-2-amd64/kernel/drivers/md/dm-crypt.ko license: GPL description: device-mapper target for transparent encryption / decryption author: [...]]]></description>
			<content:encoded><![CDATA[<p>Solaris admins kennen <a href="http://docs.sun.com/app/docs/doc/816-5166/modinfo-1m">modinfo</a> al om informatie geven over geladen modules in de kernel. Op Linux heeft <a href="http://manpages.debian.net/cgi-bin/man.cgi?query=modinfo&#038;apropos=0&#038;sektion=0&#038;manpath=Debian+Sid&#038;format=html&#038;locale=en">modinfo</a> een iets andere uitwerking en geeft je voornamelijk een beschrijving wat een module doet, afhankelijkheden van andere modules en licentie.<br />
<code><br />
$ sudo modinfo dm_crypt<br />
filename:       /lib/modules/2.6.30-2-amd64/kernel/drivers/md/dm-crypt.ko<br />
license:        GPL<br />
description:    device-mapper target for transparent encryption / decryption<br />
author:         Christophe Saout &lt;christophe@saout.de&gt;<br />
depends:        dm-mod<br />
vermagic:       2.6.30-2-amd64 SMP mod_unload modversions<br />
$<br />
</code><br />
Dit commando kan handig zijn als er problemen zijn met modules en je wilt weten of <a href="http://manpages.debian.net/cgi-bin/man.cgi?query=modprobe&#038;sektion=8&#038;apropos=0&#038;manpath=Debian+Sid&#038;locale=">modprobe</a> en <a href="http://manpages.debian.net/cgi-bin/man.cgi?query=depmod&#038;apropos=0&#038;sektion=8&#038;manpath=Debian+Sid&#038;format=html&#038;locale=en">depmod</a> hun werk goed doen.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2009/10/verschil-in-modinfo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris 10 update 8</title>
		<link>http://blog.dailystuff.nl/2009/10/solaris-10-update-8/</link>
		<comments>http://blog.dailystuff.nl/2009/10/solaris-10-update-8/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 21:56:10 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=880</guid>
		<description><![CDATA[Sun Microsystems heeft Sun Solaris 10 10/09 deze maand gereleased en hiermee zijn ze bij update 8 aangekomen van Solaris 10. De download loopt op dit moment, maar aan de changelog te zien zijn er verschillende onderdelen van OpenSolaris gebackport naar Solaris 10. De lijst is lang. De vraag is wat overblijft voor Solaris Next [...]]]></description>
			<content:encoded><![CDATA[<p>Sun Microsystems heeft Sun Solaris 10 10/09 deze maand gereleased en hiermee zijn ze bij update 8 aangekomen van Solaris 10. De download loopt op dit moment, maar aan de changelog te zien zijn er verschillende onderdelen van OpenSolaris gebackport naar Solaris 10. De <a href="http://docs.sun.com/app/docs/doc/821-0382/gijtg?l=en&#038;a=view">lijst</a> is lang. De vraag is wat overblijft voor Solaris Next zoals het nu nog heet, maar binnenkort toch een testinstallatie doen om te kijken hoe Solaris 10 er nu voorstaat.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2009/10/solaris-10-update-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100% Solaris, 0% Linux</title>
		<link>http://blog.dailystuff.nl/2009/09/100-solaris-0-linux/</link>
		<comments>http://blog.dailystuff.nl/2009/09/100-solaris-0-linux/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 21:14:06 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=854</guid>
		<description><![CDATA[Bij het wegwerken van berichten in mijn RSS-reader kwam ik een leuke posting tegen van Joerg Moellenkamp. Ben je een koele pinguin of een Sun-aanbidder en de uitkomst was een verrassing. Ik moet duidelijk nog werken aan mijn koele pinguin skills, want Solaris heeft iets te veel de overhand. Hopelijk gaat de LPI-certificering daar iets [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_855" class="wp-caption alignright" style="width: 210px"><img class="size-full wp-image-855" title="solaris-vs-linux" src="/wp-content/uploads//2009/08/solaris-vs-linux.jpg" alt="100% Solaris, 0% Linux" width="200" height="200" /><p class="wp-caption-text">100% Solaris, 0% Linux</p></div>
<p>Bij het wegwerken van berichten in mijn RSS-reader kwam ik een leuke <a href="http://www.c0t0d0s0.org/archives/5889-Solaris-vs.-Linux-the-quiz.html">posting</a> tegen van Joerg Moellenkamp. <a href="http://www.systemheroes.co.uk/solarisvslinux/" class="broken_link">Ben je een koele pinguin of een Sun-aanbidder</a> en de uitkomst was een verrassing. Ik moet duidelijk nog werken aan mijn koele pinguin skills, want Solaris heeft iets te veel de overhand.</p>
<p>Hopelijk gaat de LPI-certificering daar iets in veranderen, maar ik betwijfel het voor de komende periode. Ik werk blijkbaar nog te kort met Linux, maar de toekomst zal het vertellen. Tot die tijd blijf ik braaf proberen en ben ik zo te zien veroordeelt tot Solaris cq OpenSolaris. Misschien toch maar eens mijn Debian desktop na 10 jaar ombouwen naar OpenSolaris.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2009/09/100-solaris-0-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXCE ter ziele?</title>
		<link>http://blog.dailystuff.nl/2009/08/sxce-ter-ziele/</link>
		<comments>http://blog.dailystuff.nl/2009/08/sxce-ter-ziele/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 22:47:25 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=847</guid>
		<description><![CDATA[Na het einde van Solaris Express lijkt er nu ook een einde te komen aan Solaris Express Community Edition. Sun Microsystems lijkt hiermee totaal in te zetten op OpenSolaris en lijkt de toekomst voor de volgende versie van Sun Solaris een feit te zijn. Als je de veranderingen van Solaris 10 meeneemt is het eigenlijk [...]]]></description>
			<content:encoded><![CDATA[<p>Na het einde van Solaris Express lijkt er nu ook een <a href="http://opensolaris.org/jive/thread.jspa?threadID=109944&#038;tstart=15">einde</a> te komen aan Solaris Express Community Edition. Sun Microsystems lijkt hiermee totaal in te zetten op OpenSolaris en lijkt de toekomst voor de volgende versie van Sun Solaris een feit te zijn.</p>
<p>Als je de veranderingen van Solaris 10 meeneemt is het eigenlijk tijd om te spreken van SunOS 2.6 ipv SunOS 2.5.11 zometeen. We wachten af hoe de toekomst er uit gaat zien nu Sun en Oracle samengaan. En tot die tijd is het wachten op build 121 welke nu intern wordt getest bij Sun en hopelijk niet dezelfde problemen heeft met oa ZFS als build 119 en 120.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2009/08/sxce-ter-ziele/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Documentation makes the platform</title>
		<link>http://blog.dailystuff.nl/2009/06/documentation-makes-the-platform/</link>
		<comments>http://blog.dailystuff.nl/2009/06/documentation-makes-the-platform/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 07:02:46 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[Internet, Unix en security]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[GNU]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://blog.dailystuff.nl/?p=827</guid>
		<description><![CDATA[Everyone says their platform is the best, but how can you determine what is the best platform? On the first place is documentation, but also the second and third place are reserved for documentation. It is that simple and that is the end of the story basicly. But why? And why complain? Basicly because I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.opensolaris.org/"><img class="alignright size-full wp-image-796" title="OpenSolaris" src="/wp-content/uploads//2009/05/opensolaris_logo_trans.png" alt="OpenSolaris" width="181" height="51" /></a>Everyone says their platform is the best, but how can you determine what is the best platform? On the first place is documentation, but also the second and third place are reserved for documentation. It is that simple and that is the end of the story basicly.</p>
<p>But why? And why complain? Basicly because I&#8217;m sick of the answers <a href="http://en.wikipedia.org/wiki/RTFM">RTFM</a> or RTFS. Most of the time or the code is crap or the manual was written in the Stone Age. Before I continue, I must say that both the BSD and GNU people do there best to keep there documentation in a good shape, but try the Linux kernel or related tools. And I refuse to rely on Google as my source of how I need to tune my kernel for a high performance webserver.</p>
<p>If I check the three major Linux distributions what ECN does, then I don&#8217;t get any hits for my queries or I must dig into bugreports or mailinglists. When I <a href="http://www.google.nl/search?&amp;q=site%3Asun.com+tcp_ecn_permitted">query Google</a> for the ECN parameter on the Sun-site my first 10 hits are directly documentation hits. And I have this again and again. This may explain to a certain level why I have a sweetspot for Sun Solaris while I&#8217;m a Debian user for long time now.</p>
<p>Keeping this in mind, you need to have good faith in the future that you dare to base you business around an operating system without indepth documentation. It is going to make a good point with a proof-of-concept to see if Sun Solaris and IBM AIX can be replaced by Linux. Then again it is also a point that needs to be solved to make free software better understandable and usable in the real world.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dailystuff.nl/2009/06/documentation-makes-the-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

