<?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>Michael Kolb Fulda&#187; Web Engineering</title>
	<atom:link href="http://www.michael-kolb.co.uk/author/mk_michael/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michael-kolb.co.uk</link>
	<description>Web Engineering</description>
	<lastBuildDate>Mon, 01 Mar 2010 05:58:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Snaggies.de</title>
		<link>http://www.michael-kolb.co.uk/projects/snaggies-de/</link>
		<comments>http://www.michael-kolb.co.uk/projects/snaggies-de/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 18:54:13 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1405</guid>
		<description><![CDATA[Snaggies.de is a german website with an excellent collection of cocktails with and without alcohol. The collection is expanding step by step and accompanied by different ideas of party games.]]></description>
			<content:encoded><![CDATA[<p><img style="margin-bottom:10px" src="/media/images/projects/snaggies/snag_450_150.jpg"><br />
Snaggies.de is a german website with an excellent collection of cocktails including and excluding alcohol. The collection is expanding step by step and accompanied by different ideas of party games.</p>
<p>The website is made by a wordpress system and contains several advertisement systems and payed links. The complete project or even the domain packages are for sale. If you are interested, please don&#8217;t hesitate to contact me for details.</p>
<p>The domain list:</p>
<ul>
<li>snaggies.de</li>
<li>snaggys.de</li>
<li>snaggys.at</li>
<li>snaggies.at</li>
<li>snaggys.biz</li>
<li>snaggies.biz</li>
<li>snaggys.net</li>
<li>snaggies.net</li>
<li>snaggys.eu</li>
<li>snaggies.eu</li>
<li>snaggies.com</li>
</ul>
<p><strong>The offer was closed.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/projects/snaggies-de/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use logrotate by linux</title>
		<link>http://www.michael-kolb.co.uk/webhosting/how-to-use-logrotate-by-linux/</link>
		<comments>http://www.michael-kolb.co.uk/webhosting/how-to-use-logrotate-by-linux/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 06:30:31 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Linux Daemons]]></category>
		<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[daemon hosting linux]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1393</guid>
		<description><![CDATA[In a server environment it&#8217;s quite important to keep the size of log files in track. Everyone knows the problem of increasing file sizes in this matter. Therefore the logrotate daemon may help you to solve this problem. Files are rotated ore removed in a defined time slot to gzipped files for X times. You [...]]]></description>
			<content:encoded><![CDATA[<p>In a server environment it&#8217;s quite important to keep the size of log files in track. Everyone knows the problem of increasing file sizes in this matter. Therefore the logrotate daemon may help you to solve this problem. Files are rotated ore removed in a defined time slot to gzipped files for X times. You can find the configuration in /etc/logrotate.d.</p>
<p>In this directory you can find already given config files for some linux services.</p>
<p>This is an example of the samba logrotate in /etc/logrotate.d/samba:<br />
<code><br />
/var/log/samba/log.smbd {<br />
        weekly<br />
        missingok<br />
        rotate 7<br />
        postrotate<br />
                invoke-rc.d --quiet samba reload > /dev/null<br />
        endscript<br />
        compress<br />
        notifempty<br />
}<br />
</code></p>
<p><span id="more-1393"></span></p>
<p>The samba log file is rotated weekly and 7 rotated files will be compressed and archived. The eighth file is removed. After the rotation process the samba daemon is reloaded.</p>
<p><strong>compress </strong><br />
This is used to compress the rotated log file with gzip. </p>
<p><strong>nocompress </strong><br />
This is used when you don&#8217;t want to compress rotated log files. </p>
<p><strong>copytruncate</strong><br />
This is used when processes are still writing information to open log files. This option copies the active log file to a backup and truncates the active log file. </p>
<p><strong>nocopytruncate</strong><br />
This copies the log files to backup, but the open log file is not truncated. </p>
<p><strong>create mode owner group</strong><br />
This rotates the log file and creates a new log file with the specified permissions, owner, and group. The default is to use the same mode, owner, and group as the original file. </p>
<p><strong>nocreate</strong><br />
This prevents the creation of a new log file. </p>
<p><strong>delaycompress</strong><br />
When used with the compress option, the rotated log file is not compressed until the next time it is cycled. </p>
<p><strong>nodelaycompress</strong><br />
This overrides delaycompress. The log file is compressed when it is cycled. </p>
<p><strong>errors address</strong><br />
This mails logrotate errors to an address. </p>
<p><strong>ifempty</strong><br />
With this, the log file is rotated even if it is empty. This is the default for logrotate. </p>
<p><strong>notifempty</strong><br />
This does not rotate the log file if it is empty. </p>
<p><strong>mail address</strong><br />
This mails log files that are cycled to an address. When mail log files are cycled, they are effectively removed from the system. </p>
<p><strong>nomail</strong><br />
When mail log files are cycled, a copy is not mailed. </p>
<p><strong>olddir directory</strong><br />
With this, cycled log files are kept in the specified directory. This directory must be on the same filesystem as the current log files. </p>
<p><strong>noolddir</strong><br />
Cycled log files are kept in the same directory as the current log files. </p>
<p><strong>prerotate/endscript</strong><br />
These are statements that enclose commands to be executed prior to a log file being rotated. The prerotate and endscript keywords must appear on a line by themselves. </p>
<p><strong>postrotate/endscript</strong><br />
These are statements that enclose commands to be executed after a log file has been rotated. The postrotate and endscript keywords must appear on a line by themselves. </p>
<p><strong>daily</strong><br />
This is used to rotate log files daily. </p>
<p><strong>weekly</strong><br />
This is used to rotate log files weekly. </p>
<p><strong>monthly</strong><br />
This is used to rotate log files monthly. </p>
<p><strong>rotate count</strong><br />
This specifies the number of times to rotate a file before it is deleted. A count of 0 (zero) means no copies are retained. A count of 5 means five copies are retained. </p>
<p><strong>tabootext [+] list</strong><br />
This directs logrotate to not rotate files with the specified extension. The default list of extensions is .rpm-orig, .rpmsave, v, and ~. </p>
<p><strong>size size</strong><br />
With this, the log file is rotated when the specified size is reached. Size may be specified in bytes (default), kilobytes (sizek), or megabytes (sizem).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/webhosting/how-to-use-logrotate-by-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snaggies &#8211; Domain package for sale</title>
		<link>http://www.michael-kolb.co.uk/business/snaggies-package-for-sale/</link>
		<comments>http://www.michael-kolb.co.uk/business/snaggies-package-for-sale/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 21:09:34 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1346</guid>
		<description><![CDATA[I offer a big domain package for sale. All snaggy domains are not longer needed by myself and they will be sold to the highest bidder. The domains doesn&#8217;t include any content.

snaggies


Domain list: 

snaggies.de
snaggys.de
snaggys.at
snaggies.at
snaggys.biz
snaggies.biz
snaggys.net
snaggies.net
snaggys.eu
snaggies.eu
snaggies.com

Please contact me for any questions or offers.
]]></description>
			<content:encoded><![CDATA[<p>I offer a big domain package for sale. All snaggy domains are not longer needed by myself and they will be sold to the highest bidder. The domains doesn&#8217;t include any content.<br />
<center><br />
<h1>snaggies</h1>
<p></center></p>
<p><span id="more-1346"></span></p>
<p><b>Domain list:</b> </p>
<ul>
<li>snaggies.de</li>
<li>snaggys.de</li>
<li>snaggys.at</li>
<li>snaggies.at</li>
<li>snaggys.biz</li>
<li>snaggies.biz</li>
<li>snaggys.net</li>
<li>snaggies.net</li>
<li>snaggys.eu</li>
<li>snaggies.eu</li>
<li>snaggies.com</li>
</ul>
<p>Please <a href="http://www.michael-kolb.co.uk/contact">contact</a> me for any questions or offers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/business/snaggies-package-for-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software company Kl&#252;ber and Kolb founded</title>
		<link>http://www.michael-kolb.co.uk/engineering/software-company-founded/</link>
		<comments>http://www.michael-kolb.co.uk/engineering/software-company-founded/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 20:47:34 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1223</guid>
		<description><![CDATA[At beginning of this year, I&#8217;ve founded a further company in cooperation with a colleague of mine: Timo Kl&#252;ber. This week we&#8217;ve released our official website which you can visit here:
http://www.klueberundkolb.de
The company acts as a software development agency in web products. We release standard web 2.0 software dedicated to public townships. The first web software [...]]]></description>
			<content:encoded><![CDATA[<p>At beginning of this year, I&#8217;ve founded a further company in cooperation with a colleague of mine: Timo Kl&uuml;ber. This week we&#8217;ve released our official website which you can visit here:<br />
<a href="http://www.klueberundkolb.de" target="_blank" rel="nofollow">http://www.klueberundkolb.de</a></p>
<p>The company acts as a software development agency in web products. We release standard web 2.0 software dedicated to public townships. The first web software is called <a href="http://www.estatemapper.com" target="_blank" rel="nofollow">EstateMapper</a> and represents specific land-use areas mapped on satellite pictures.</p>
<p><span id="more-1223"></span></p>
<p><img src="http://www.michael-kolb.co.uk/wp-content/uploads/2009/08/estatemapper.jpg" alt="estatemapper" title="estatemapper" width="400" height="270" class="alignnone size-full wp-image-1226" /></p>
<p><img src="http://www.michael-kolb.co.uk/wp-content/uploads/2009/08/kuk.jpg" alt="kuk" title="kuk" width="400" height="270" class="alignnone size-full wp-image-1228" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/engineering/software-company-founded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kl&#252;ber und Kolb</title>
		<link>http://www.michael-kolb.co.uk/projects/klueber-und-kolb/</link>
		<comments>http://www.michael-kolb.co.uk/projects/klueber-und-kolb/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 13:20:13 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1201</guid>
		<description><![CDATA[The website which represents the software producer Klueber und Kolb was implemented by using the cms wordpress. The template is a 3rd party product and was adapted to the special needs. Klueber und Kolb products are dedicated to public townships.]]></description>
			<content:encoded><![CDATA[<p><img style="margin-bottom:10px" src="/media/images/projects/kuk/kuk_450_150.jpg"><br />
The website which represents the software producer Klueber und Kolb was implemented by using the cms wordpress. The template is a 3rd party product and was adapted to the special needs. Klueber und Kolb products are dedicated to public townships.</p>
<table>
<tr>
<td><img style="margin-bottom:10px" src="/media/images/projects/kuk/em1_small.png"></td>
<td><img style="margin-bottom:10px" src="/media/images/projects/kuk/em0_small.png"></td>
</tr>
</table>
<p>The software product called <a href="http://www.estatemapper.com" target="_blank" rel="nofollow">EstateMapper</a> is programmed in flex and uses an remoting php for database access.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/projects/klueber-und-kolb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Konrad Zuse Museum</title>
		<link>http://www.michael-kolb.co.uk/projects/konrad-zuse-museum/</link>
		<comments>http://www.michael-kolb.co.uk/projects/konrad-zuse-museum/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 18:15:06 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1236</guid>
		<description><![CDATA[The website which represents the <a href="http://de.wikipedia.org/wiki/Konrad_Zuse" target="_blank" rel="nofollow">Konrad Zuse Museum Huenfeld</a> is based on a joomla cms engine. MK Web Engineering is also doing the editorial content maintenance. ]]></description>
			<content:encoded><![CDATA[<p><img src="/media/images/projects/kzm/kzm_450_150.jpg" style="margin-bottom:10px"><br />
The website which represents the <a href="http://de.wikipedia.org/wiki/Konrad_Zuse" target="_blank" rel="nofollow">Konrad Zuse Museum Huenfeld</a> is based on a joomla cms engine. MK Web Engineering is also doing the editorial content maintenance. </p>
<p>An interesting feature is the implementation of a quiz related to Konrad Zuse and his lifework, as well as a little shop component.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/projects/konrad-zuse-museum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BikerSchool &#8211; Fulda</title>
		<link>http://www.michael-kolb.co.uk/projects/bikderschool/</link>
		<comments>http://www.michael-kolb.co.uk/projects/bikderschool/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 20:01:33 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1161</guid>
		<description><![CDATA[Bikerschool Fulda is the 2nd largest driving school in Hessen. MK Web Engineering is proud to present the new website and layout in cooperation with <a href="http://www.frostkeimer.de" target="_blank" rel="nofollow">Frostkeimer Design</a> and <a href="http://www.pixelconform.de" target="_blank" rel="nofollow">Pixelconform</a>. The website contains a splash screen with two entry points for bikerschool and driving school.]]></description>
			<content:encoded><![CDATA[<p><img src="/media/images/projects/bikerschool/bikerschool_450_150.jpg" style="margin-bottom:10px"><br />
Bikerschool Fulda is the 2nd largest driving school in Hessen. MK Web Engineering is proud to present the new website and layout in cooperation with <a href="http://www.frostkeimer.de" target="_blank" rel="nofollow">Frostkeimer Design</a> and <a href="http://www.pixelconform.de" target="_blank" rel="nofollow">Pixelconform</a>. The website contains a splash screen with two entry points for bikerschool and driving school.</p>
<p><b>Features:</b></p>
<ul>
<li>Content management: self developed system</li>
<li>Programming language: PHP</li>
<li>Specials: Using a text – based database, no mysql needed</li>
</ul>
<p><img src="/media/images/projects/bikerschool/bike_backend.jpg" style="margin-top:10px"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/projects/bikderschool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Towiu.com</title>
		<link>http://www.michael-kolb.co.uk/projects/towiu-com/</link>
		<comments>http://www.michael-kolb.co.uk/projects/towiu-com/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 11:49:13 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1272</guid>
		<description><![CDATA[Towiu.com is a project implemented by a wordpress content management system. There were several requirements for this project, like multi language support for the menue, or statistics. Some advertisements are build in as well as some features like most read articles.]]></description>
			<content:encoded><![CDATA[<p><img src="/media/images/projects/towiu/towiu_450_150.jpg" style="margin-bottom:10px"><br />
Towiu.com is a project implemented by a wordpress content management system. There were several requirements for this project, like multi language support for the menue, or statistics. Some advertisements are build in as well as some features like most read articles.</p>
<p><b>Special features:</b></p>
<ul>
<li>multi language support also for menues</li>
<li>statistic plugins for detection of most read articles</li>
<li>advertisement manager</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/projects/towiu-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable USB support in VirtualBox on a linux host</title>
		<link>http://www.michael-kolb.co.uk/linuxbasics/how-to-enable-usb-support-in-virtualbox-on-a-linux-host/</link>
		<comments>http://www.michael-kolb.co.uk/linuxbasics/how-to-enable-usb-support-in-virtualbox-on-a-linux-host/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 10:27:46 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Linux Basics]]></category>
		<category><![CDATA[Linux Daemons]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1146</guid>
		<description><![CDATA[There is a common problem to get USB support running in VirtualBox on a debian or ubuntu linux host system. If there is a Windows XP (maybe also other system) installed as the guest system, the USB devices will be shown in the VirtualBox menue &#8211; but they are disabled. The devices are recognized but [...]]]></description>
			<content:encoded><![CDATA[<p>There is a common problem to get USB support running in VirtualBox on a debian or ubuntu linux host system. If there is a Windows XP (maybe also other system) installed as the guest system, the USB devices will be shown in the VirtualBox menue &#8211; but they are disabled. The devices are recognized but the reason for the disabled function is the unsufficient permission.</p>
<p>In this post, I will explain how to solve this problem by a few tricks.</p>
<p><span id="more-1146"></span></p>
<p>You need to open the file mountkernfs.sh<br />
<code><br />
# vi /etc/init.d/mountkernfs.sh<br />
</code></p>
<p>Inside this file, look for this line:<br />
<code><br />
domount proc "" /proc proc -onodev,noexec,nosuid<br />
</code></p>
<p>Please insert directly below the line above this following statement. You need to replace xxx with the groupID of the vboxuser. You can find this ID in your /etc/groups file<br />
<code><br />
domount usbfs usbdevfs /proc/bus/usb usbfs -onodev,noexec,nosuid,devgid=xxx,devmode=664<br />
</code></p>
<p>Furthermore, open your fstab file:<br />
<code><br />
# vi /etc/fstab<br />
</code></p>
<p>and add this line as the very first statement. Replace xxx like above.<br />
<code><br />
none /proc/bus/usb usbfs auto,busgid=122,busmode=0775,devgid=xxx,devmode=0664 0 0<br />
</code></p>
<p>That&#8217;s it. Have a lot of fun. Please don&#8217;t hestitate to add any comments to this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/linuxbasics/how-to-enable-usb-support-in-virtualbox-on-a-linux-host/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mounting an ISO image with linux</title>
		<link>http://www.michael-kolb.co.uk/linuxbasics/mounting-an-iso-image-with-linux/</link>
		<comments>http://www.michael-kolb.co.uk/linuxbasics/mounting-an-iso-image-with-linux/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 11:53:19 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Linux Basics]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1140</guid>
		<description><![CDATA[By using linux, you are able to mount an ISO image by the loop network device, which is quite easy. You can do this only as user root. Follow the steps below:
Change to user root:

# su

Mounting the ISO image to a directory or your choice, for example /mnt

# mount -o loop disk1.iso /mnt


Don&#8217;t forget to [...]]]></description>
			<content:encoded><![CDATA[<p>By using linux, you are able to mount an ISO image by the loop network device, which is quite easy. You can do this only as user root. Follow the steps below:</p>
<p>Change to user root:<br />
<code><br />
# su<br />
</code></p>
<p>Mounting the ISO image to a directory or your choice, for example /mnt<br />
<code><br />
# mount -o loop disk1.iso /mnt<br />
</code></p>
<p><span id="more-1140"></span></p>
<p>Don&#8217;t forget to umount the ISO image after using:<br />
<code><br />
# umount /mnt<br />
</code></p>
<p><strong>More about loop device </strong><br />
A loop device is a virtual network device which makes a file accessible as a block device. Loop devices are typically used for CD ISO images. Mounting a file containing a whole filesystem by a loop mount makes the files within that filesystem accessible. The content of the ISO image appears in the mount point directory using above commands.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/linuxbasics/mounting-an-iso-image-with-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
