<?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-4227363830461439341</id><updated>2011-07-30T21:57:04.360-07:00</updated><title type='text'>random experiences with kFreeBSD</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tucobsd.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4227363830461439341/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tucobsd.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Tuco</name><uri>http://www.blogger.com/profile/05750866173417658243</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4227363830461439341.post-1649580161213651014</id><published>2010-08-03T10:09:00.000-07:00</published><updated>2010-08-03T12:02:17.428-07:00</updated><title type='text'>apt-get install zfsutils</title><content type='html'>Two weeks ago I wrote about how I manage to &lt;a href="http://tucobsd.blogspot.com/2010/07/how-to-enable-zfs-on-debian-gnukfreebsd.html"&gt;install ZFS utilities on my Debian GNU/kFreeBSD system&lt;/a&gt;. It was a very ugly hack, but things have evolved very positively:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;The kernel panic problem with ZFS is now &lt;a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587630#25"&gt;fixed&lt;/a&gt;&lt;br /&gt;&lt;li&gt;I helped porting the ZFS utilities from FreeBSD, and the Debian GNU/kFreeBSD developers were very interested in it, and validated my work. There is now a &lt;a href="http://packages.debian.org/sid/zfsutils"&gt;zfsutils package&lt;/a&gt;.&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;So if you want ZFS support in your Debian GNU/kFreeBSD, now you just need:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;apt-get install zfsutils&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Enjoy :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4227363830461439341-1649580161213651014?l=tucobsd.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tucobsd.blogspot.com/feeds/1649580161213651014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tucobsd.blogspot.com/2010/08/apt-get-install-zfsutils.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4227363830461439341/posts/default/1649580161213651014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4227363830461439341/posts/default/1649580161213651014'/><link rel='alternate' type='text/html' href='http://tucobsd.blogspot.com/2010/08/apt-get-install-zfsutils.html' title='apt-get install zfsutils'/><author><name>Tuco</name><uri>http://www.blogger.com/profile/05750866173417658243</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4227363830461439341.post-4282964703670794034</id><published>2010-07-14T06:56:00.000-07:00</published><updated>2010-08-03T12:03:19.758-07:00</updated><title type='text'>How to enable ZFS on Debian GNU/kFreeBSD</title><content type='html'>&lt;span style="font-weight:bold;"&gt;IMPORTANT: things are much simpler now, see my &lt;a href="http://tucobsd.blogspot.com/2010/08/apt-get-install-zfsutils.html"&gt;newer post&lt;/a&gt; about ZFS&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I've been recently playing a bit with this system that is currently in development (Debian GNU/kFreeBSD). My main interest in it is ZFS support, but by default it turns out ZFS isn't supported at all :-(&lt;br /&gt;&lt;br /&gt;ZFS has two parts, a kernel module and two utilities (zpool and zfs). It seems Debian GNU/kFreeBSD has kernel support, so I tried to make it work by copying the missing utilities over from FreeBSD. The utilities have a lot of library dependencies, so I copied those too. Then I would have a working zpool, but unexpectedly the kernel &lt;a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587630"&gt;panics when using it&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;$ zpool create mypool da1&lt;br /&gt;panic: stack overflow detected; backtrace may be corrupted&lt;br /&gt;cpuid = 0&lt;br /&gt;Uptime: 1m10s&lt;br /&gt;Cannot dump. Device not defined or unavailable.&lt;br /&gt;Automatic reboot in 15 seconds - press a key on the console to abort&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Very disappointing!&lt;br /&gt;&lt;br /&gt;I'm no kernel developer and have no idea how to fix this, but I don't give up. I figured that since ZFS works on FreeBSD, it may be a problem with the kernel in Debian. So I copied the ZFS module (zfs.ko) from FreeBSD and tried again. This time it works! I used Debian GNU/kFreeBSD to create a pool, filled it up with files, adjusted settings, etc.&lt;br /&gt;&lt;br /&gt;I'm looking forward to using ZFS as a replacement for RAID in webhosting environment. My next goal is to put the root filesystem in ZFS so that the system can boot from it (separate partition is too much maintenance).&lt;br /&gt;&lt;br /&gt;Finally, I wrote a small &lt;a href="http://lists.debian.org/debian-bsd/2010/07/binceHvxFYba8.bin"&gt;script to make these steps reproducible&lt;/a&gt;. You can use it if you want to setup ZFS on Debian GNU/kFreeBSD yourself.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4227363830461439341-4282964703670794034?l=tucobsd.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tucobsd.blogspot.com/feeds/4282964703670794034/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tucobsd.blogspot.com/2010/07/how-to-enable-zfs-on-debian-gnukfreebsd.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4227363830461439341/posts/default/4282964703670794034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4227363830461439341/posts/default/4282964703670794034'/><link rel='alternate' type='text/html' href='http://tucobsd.blogspot.com/2010/07/how-to-enable-zfs-on-debian-gnukfreebsd.html' title='How to enable ZFS on Debian GNU/kFreeBSD'/><author><name>Tuco</name><uri>http://www.blogger.com/profile/05750866173417658243</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
