<?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>openSUSE Lizards &#187; Arvin Schnell</title>
	<atom:link href="http://lizards.opensuse.org/author/aschnell/feed/" rel="self" type="application/rss+xml" />
	<link>http://lizards.opensuse.org</link>
	<description>Blogs and Ramblings of the openSUSE Members</description>
	<lastBuildDate>Sat, 07 Nov 2009 07:25:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>28 Partitions on a Single Disk? No Problem!</title>
		<link>http://lizards.opensuse.org/2009/08/05/28-partitions-on-a-single-disk/</link>
		<comments>http://lizards.opensuse.org/2009/08/05/28-partitions-on-a-single-disk/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 09:39:31 +0000</pubDate>
		<dc:creator>Arvin Schnell</dc:creator>
				<category><![CDATA[Base System]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[YaST]]></category>
		<category><![CDATA[openSUSE 11.2]]></category>

		<guid isPermaLink="false">http://lizards.opensuse.org/?p=1857</guid>
		<description><![CDATA[So far it was only possible to have upto 16 device nodes for a single disks. This restricted the number of usable partitions. As a workaround kpartx could be used to create device mapper mappings for further partitions but that was never fully integrated in openSUSE.
With version 2.6.28 the kernel supports upto 256 device nodes [...]]]></description>
			<content:encoded><![CDATA[<p>So far it was only possible to have upto 16 device nodes for a single disks. This restricted the number of usable partitions. As a workaround kpartx could be used to create device mapper mappings for further partitions but that was never fully integrated in openSUSE.</p>
<p>With version 2.6.28 the kernel supports upto 256 device nodes per disk, much more than the partition table allows. But since the implementation is not straightforward, the <a href="http://article.gmane.org/gmane.linux.kernel/701825">additional device nodes are assigned dynamically</a>, user-space programs may need to be adapted.</p>
<p>For openSUSE 11.2 Milestone 5 <a href="https://features.opensuse.org/305584">YaST was extended</a> to support this new kernel feature.</p>
<p>Some quick tests showed only <a href="https://bugzilla.novell.com/show_bug.cgi?id=525060">problems with LVM</a>. If you are interested in this feature and have the possibility please give it a try so that we find remaining bugs.</p>
]]></content:encoded>
			<wfw:commentRss>http://lizards.opensuse.org/2009/08/05/28-partitions-on-a-single-disk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introducing Libstorage</title>
		<link>http://lizards.opensuse.org/2009/07/20/introducing-libstorage/</link>
		<comments>http://lizards.opensuse.org/2009/07/20/introducing-libstorage/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 15:08:00 +0000</pubDate>
		<dc:creator>Arvin Schnell</dc:creator>
				<category><![CDATA[Systems Management]]></category>

		<guid isPermaLink="false">http://lizards.opensuse.org/?p=1545</guid>
		<description><![CDATA[Libstorage is a C++ library for managing Linux storage devices. So far it was developed as part of YaST but since a few weeks it is an independent project.
Here is a code example creating a 1GB partition on /dev/sdb.
  Environment env(false);
  StorageInterface* s = createStorageInterface(env);

  string name;

  // Create 1GB partition [...]]]></description>
			<content:encoded><![CDATA[<p>Libstorage is a C++ library for managing Linux storage devices. So far it was developed as part of YaST but since a few weeks it is an independent project.</p>
<p>Here is a code example creating a 1GB partition on /dev/sdb.</p>
<pre>  Environment env(<span style="color: #3366ff;">false</span>);
  StorageInterface* s = createStorageInterface(env);

  string name;

  <span style="color: #ff0000;">// Create 1GB partition on /dev/sdb and format it with Ext4.</span>
  s-&gt;createPartitionAny(<span style="color: #3366ff;">"/dev/sdb"</span>, <span style="color: #3366ff;">1048576</span>, name);
  s-&gt;changeFormatVolume(name, <span style="color: #3366ff;">true</span>, <span style="color: #3366ff;">EXT4</span>);

  <span style="color: #ff0000;">// Set mount-point to "/home" and fstab option to "relatime".</span>
  s-&gt;changeMountPoint(name, <span style="color: #3366ff;">"/home"</span>);
  s-&gt;changeFstabOptions(name, <span style="color: #3366ff;">"relatime"</span>);

  <span style="color: #ff0000;">// Set filesystem label to "HOME" and mount filesystem by label.</span>
  s-&gt;changeLabelVolume(name, <span style="color: #3366ff;">"HOME"</span>);
  s-&gt;changeMountBy(name, <span style="color: #3366ff;">MOUNTBY_LABEL</span>);

  <span style="color: #ff0000;">// Commit the change to the system. This will create the partition,
  // format and mount it and update /etc/fstab.</span>
  s-&gt;commit();

  destroyStorageInterface(s);</pre>
<p>Besides of hard-disks libstorage handles RAID, LVM, NFS, various filesystems and encryption. Swig generated Python bindings are also provided. Libstorage has no dependencies on YaST, neither for building nor runtime. We hope libstorage will also be useful for other projects.</p>
<p>More <a href="http://en.opensuse.org/Libstorage">information</a> is available in the openSUSE Wiki, including a list of useful <a href="http://en.opensuse.org/Libstorage/Ideas">features</a> people would love to see implemented in the near future.</p>
<p>Comments are as always welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://lizards.opensuse.org/2009/07/20/introducing-libstorage/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>YaST and Compiz during Installation</title>
		<link>http://lizards.opensuse.org/2009/04/01/yast-and-compiz-during-installation/</link>
		<comments>http://lizards.opensuse.org/2009/04/01/yast-and-compiz-during-installation/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 00:01:21 +0000</pubDate>
		<dc:creator>Arvin Schnell</dc:creator>
				<category><![CDATA[YaST]]></category>

		<guid isPermaLink="false">http://lizards.opensuse.org/?p=634</guid>
		<description><![CDATA[We (Thomas Göttlicher, J. Daniel Schmidt and Arvin Schnell) have use all our
remaining ITO for this really cool feature.
Normally compiz (more precisely the cube module) shows each desktop on the
surface of a cuboid. Since we don&#8217;t have several desktops during installation
we decided to show the &#8220;wizard&#8221; steps on the cuboid. Pressing &#8220;Next&#8221; or &#8220;Back&#8221;
rotates the [...]]]></description>
			<content:encoded><![CDATA[<p>We (Thomas Göttlicher, J. Daniel Schmidt and Arvin Schnell) have use all our<br />
remaining ITO for this really cool feature.</p>
<p>Normally compiz (more precisely the cube module) shows each desktop on the<br />
surface of a cuboid. Since we don&#8217;t have several desktops during installation<br />
we decided to show the &#8220;wizard&#8221; steps on the cuboid. Pressing &#8220;Next&#8221; or &#8220;Back&#8221;<br />
rotates the cuboid around the y-axis:</p>
<p><img class="alignnone size-full wp-image-635" src="http://lizards.opensuse.org/wp-content/uploads/2009/03/screenshot1.png" alt="screenshot1" width="600" height="450" /></p>
<p>Entering a &#8220;subwizard&#8221; rotates the cuboid around the x-axis:</p>
<p><img class="alignnone size-full wp-image-636" src="http://lizards.opensuse.org/wp-content/uploads/2009/03/screenshot2.png" alt="screenshot2" width="600" height="450" /></p>
<p>Fortunately most computers are fast enough to render the 3D-scene even without<br />
special hardware support that we lack during installation.</p>
<p>Will be available in Factory within the next weeks. Comments are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://lizards.opensuse.org/2009/04/01/yast-and-compiz-during-installation/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Context Menus in YaST Partitioner</title>
		<link>http://lizards.opensuse.org/2009/03/06/context-menus-in-yast-partitioner/</link>
		<comments>http://lizards.opensuse.org/2009/03/06/context-menus-in-yast-partitioner/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 17:10:33 +0000</pubDate>
		<dc:creator>Arvin Schnell</dc:creator>
				<category><![CDATA[Systems Management]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[YaST]]></category>

		<guid isPermaLink="false">http://lizards.opensuse.org/?p=551</guid>
		<description><![CDATA[We received some complains that the redesigned partitioner on openSUSE 11.1 is
tedious to use. To remedy these shortcomings I&#8217;m adding context menus to the
tables so that it is no longer required to select the correct view using the
navigation tree to perform some operation. Almost all operation should be
available via context menus in the main view [...]]]></description>
			<content:encoded><![CDATA[<p>We received some complains that the redesigned partitioner on openSUSE 11.1 is<br />
tedious to use. To remedy these shortcomings I&#8217;m adding context menus to the<br />
tables so that it is no longer required to select the correct view using the<br />
navigation tree to perform some operation. Almost all operation should be<br />
available via context menus in the main view listing all devices.</p>
<p><img class="alignnone size-full wp-image-552" src="http://lizards.opensuse.org/wp-content/uploads/2009/03/screenshot.png" alt="screenshot" width="766" height="553" /></p>
<p>As usual comments are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://lizards.opensuse.org/2009/03/06/context-menus-in-yast-partitioner/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Graph of Storage Devices</title>
		<link>http://lizards.opensuse.org/2009/01/19/graph-of-storage-devices/</link>
		<comments>http://lizards.opensuse.org/2009/01/19/graph-of-storage-devices/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 16:08:39 +0000</pubDate>
		<dc:creator>Arvin Schnell</dc:creator>
				<category><![CDATA[Systems Management]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[YaST]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://lizards.opensuse.org/?p=368</guid>
		<description><![CDATA[With openSUSE 11.1 on the road we developers can use some time for new ideas. One idea on my mind for month was to show the dependencies of storage devices in a graph. Using graphviz and QGraphicsScene a first version was running within few days.

It&#8217;s far from finished. Some items still missing are:

Use different shapes [...]]]></description>
			<content:encoded><![CDATA[<p>With openSUSE 11.1 on the road we developers can use some time for new ideas. One idea on my mind for month was to show the dependencies of storage devices in a graph. Using <a href="http://graphviz.org/">graphviz</a> and <a href="http://doc.trolltech.com/4.4/qgraphicsscene.html">QGraphicsScene</a> a first version was running within few days.</p>
<p><a href="http://lizards.opensuse.org/wp-content/uploads/2009/01/screenshot-cursor.png"><img class="alignnone size-medium wp-image-367" src="http://lizards.opensuse.org/wp-content/uploads/2009/01/screenshot-cursor.png" alt="" /></a></p>
<p>It&#8217;s far from finished. Some items still missing are:</p>
<ul>
<li>Use different shapes and colors for different devices types.</li>
</ul>
<ul>
<li>Some basic user-interaction.</li>
</ul>
<p>Will be available in Factory within the next weeks. Further improvements are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://lizards.opensuse.org/2009/01/19/graph-of-storage-devices/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Redesign of YaST Expert Partitioner</title>
		<link>http://lizards.opensuse.org/2008/05/16/22/</link>
		<comments>http://lizards.opensuse.org/2008/05/16/22/#comments</comments>
		<pubDate>Fri, 16 May 2008 15:16:41 +0000</pubDate>
		<dc:creator>Arvin Schnell</dc:creator>
				<category><![CDATA[Systems Management]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[YaST]]></category>

		<guid isPermaLink="false">http://lizards.opensuse.org/?p=22</guid>
		<description><![CDATA[We are redesigning the YaST Expert Partitioner for openSUSE 11.1 and SLE11. The main idea is to have a navigation tree with all available storage devices on the left side and to display information on the right side along with buttons to perform appropriate actions. See the screenshot.
RPMs are available in the openSUSE Build Server [...]]]></description>
			<content:encoded><![CDATA[<p>We are redesigning the YaST Expert Partitioner for openSUSE 11.1 and SLE11. The main idea is to have a navigation tree with all available storage devices on the left side and to display information on the right side along with buttons to perform appropriate actions. See the <a href="http://lizards.opensuse.org/wp-content/uploads/2008/05/new-expert-partitioner.png">screenshot</a>.</p>
<p>RPMs are available in the openSUSE Build Server in the repository home:aschnell. They are far from finished by you can already navigate in the tree and inspect you storage system. It should be possible to see where we are heading with the redesign. You can install them on your openSUSE 11.0 Beta 3.</p>
]]></content:encoded>
			<wfw:commentRss>http://lizards.opensuse.org/2008/05/16/22/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
