<?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/tag/basics/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>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>
		<item>
		<title>How to uninstall VMWare from a Linux System</title>
		<link>http://www.michael-kolb.co.uk/linuxbasics/how-to-uninstall-vmware-from-a-linux-system/</link>
		<comments>http://www.michael-kolb.co.uk/linuxbasics/how-to-uninstall-vmware-from-a-linux-system/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 11:03:10 +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=1133</guid>
		<description><![CDATA[To uninstall the VMWare Software from a Linux System is quite easy. VMWware comes with a pearl script for this. Just open a console and change to user root.

localhost:/# su
localhost:/# vmware-uninstall.pl


Or directly by the sudo command:

localhost:/# sudo vmware-uninstall.pl

Don&#8217;t forget to delete your images from disk if you want to. Typically the images will be stored [...]]]></description>
			<content:encoded><![CDATA[<p>To uninstall the VMWare Software from a Linux System is quite easy. VMWware comes with a pearl script for this. Just open a console and change to user root.</p>
<p><code><br />
localhost:/# su<br />
localhost:/# vmware-uninstall.pl<br />
</code></p>
<p><span id="more-1133"></span></p>
<p>Or directly by the sudo command:<br />
<code><br />
localhost:/# sudo vmware-uninstall.pl<br />
</code></p>
<p>Don&#8217;t forget to delete your images from disk if you want to. Typically the images will be stored in /var/lib</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/linuxbasics/how-to-uninstall-vmware-from-a-linux-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editing &#8220;message of the day&#8221; &#8211; motd</title>
		<link>http://www.michael-kolb.co.uk/linuxbasics/editing-message-of-the-day-motd/</link>
		<comments>http://www.michael-kolb.co.uk/linuxbasics/editing-message-of-the-day-motd/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 12:26:02 +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=65</guid>
		<description><![CDATA[The message of the day is a nice thing to show informations to a user, who is connecting via console. You can put funny ascii figures there, or important informations and how-to&#8217;s.
The message will be shown prompltly after authentification:


To get these basic messages, just put it into /etc/motd (and in /etc/motd.tail for Debian and Ubuntu). [...]]]></description>
			<content:encoded><![CDATA[<p>The message of the day is a nice thing to show informations to a user, who is connecting via console. You can put funny ascii figures there, or important informations and how-to&#8217;s.</p>
<p>The message will be shown prompltly after authentification:</p>
<p><img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/motd-499x3081.jpg" alt="motd-499x308" title="motd-499x308" width="400" height="247" class="alignnone size-full wp-image-1217" /></p>
<p><span id="more-65"></span></p>
<p>To get these <a href="http://www.michael-kolb.co.uk/tag/basics">basic</a> messages, just put it into /etc/motd (and in /etc/motd.tail for Debian and Ubuntu). For example the /etc/motd:</p>
<p><code>_______________________________________________________<br />
WELCOME TO LOCALHOST<br />
<br />
[localhost.org] FILE SERVER<br />
To start or stop fileserver:<br />
/etc/init.d/nfsd start/stop<br />
</code></p>
<p>Finding ascii art at:<br />
<a href="http://www.ascii-art.de/ascii/index2.shtml" target="_blank">http://www.ascii-art.de/ascii/index2.shtml</a><br />
<a href="http://www.ascii-art.de/ascii/def/demon.txt" target="_blank">http://www.ascii-art.de/ascii/def/demon.txt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/linuxbasics/editing-message-of-the-day-motd/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WHOIS services and IP location</title>
		<link>http://www.michael-kolb.co.uk/webhosting/whois-services-and-ip-location/</link>
		<comments>http://www.michael-kolb.co.uk/webhosting/whois-services-and-ip-location/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 10:34:22 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=73</guid>
		<description><![CDATA[If you want to know, where an IP adress is located, or who has owned a domain, choose one of the links below:


IP location websites:
http://www.geobytes.com/IpLocator.htm
http://www.db.ripe.net/whois
http://www.seomoz.org/ip2loc?start
http://geotool.servehttp.com/
WHOIS queries:
http://www.internic.net/whois.html
http://www.denic.de/de/
http://www.betterwhois.com/
http://www.rrpproxy.net/
]]></description>
			<content:encoded><![CDATA[<p>If you want to know, where an IP adress is located, or who has owned a domain, choose one of the links below:</p>
<p style="text-align: center;"><a href="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/whois.jpg"><img class="size-medium wp-image-202 aligncenter" title="whois" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/whois.jpg" alt="" width="242" height="146" /></a></p>
<p><span id="more-73"></span><br />
<strong>IP location websites:</strong><br />
<a title="GeoBytes" rel="nofollow" href="http://www.geobytes.com/IpLocator.htm" target="_blank">http://www.geobytes.com/IpLocator.htm</a><br />
<a title="Ripe" rel="nofollow" href="http://www.db.ripe.net/whois" target="_blank">http://www.db.ripe.net/whois</a><br />
<a title="SEOMoz" rel="nofollow" href="http://www.seomoz.org/ip2loc?start" target="_blank">http://www.seomoz.org/ip2loc?start</a><br />
<a title="GeoTool" rel="nofollow" href="http://geotool.servehttp.com/" target="_blank">http://geotool.servehttp.com/</a></p>
<p><strong>WHOIS queries:</strong><br />
<a title="Internic" rel="nofollow" href="http://www.internic.net/whois.html" target="_blank">http://www.internic.net/whois.html</a><br />
<a title="Denic" rel="nofollow" href="http://www.denic.de/de/" target="_blank">http://www.denic.de/de/</a><br />
<a title="BetterWhois" rel="nofollow" href="http://www.betterwhois.com/" target="_blank">http://www.betterwhois.com/</a><br />
<a title="RRPProxy" rel="nofollow" href="http://www.rrpproxy.net/" target="_blank">http://www.rrpproxy.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/webhosting/whois-services-and-ip-location/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
