<?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>Webdesign Informatik &#187; Linux</title>
	<atom:link href="http://www.webdesign-informatik.de/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdesign-informatik.de</link>
	<description>Internet : SEO : Programmierung : Datenbank : Linux</description>
	<lastBuildDate>Sat, 19 Nov 2011 11:11:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Basiert Mac OS X eigentlich auf Linux?</title>
		<link>http://www.webdesign-informatik.de/fun/mac-os-x-linux-unix/</link>
		<comments>http://www.webdesign-informatik.de/fun/mac-os-x-linux-unix/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 16:45:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.webdesign-informatik.de/?p=441</guid>
		<description><![CDATA[A: Since Mac OS X, this operating system is linux based.
B: No, here you can find the refence to mac os x&#8217;s kernel: http://en.wikipedia.org/wiki/Mac_OS_X
A: &#8220;unix-based&#8221;, there you have it  
B: unix != linux 
A: come on man&#8230; dont be so ultra exactly, linux is part of unix family 
B: exactly.
based on the assumptions:
- mac os [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>A</strong>: Since Mac OS X, this operating system is linux based.</em></p>
<p><strong>B</strong>: No, here you can find the refence to mac os x&#8217;s kernel: <a href="http://en.wikipedia.org/wiki/Mac_OS_X">http://en.wikipedia.org/wiki/Mac_OS_X</a></p>
<p><em><strong>A</strong>: &#8220;unix-based&#8221;, there you have it <img src='http://www.webdesign-informatik.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p><strong>B</strong>: unix != linux <span id="more-441"></span></p>
<p><em><strong>A</strong>: come on man&#8230; dont be so ultra exactly, linux is part of unix family </em></p>
<p><strong>B</strong>: exactly.</p>
<p>based on the assumptions:</p>
<p>- mac os x is based on unix<br />
- linux is based on unix</p>
<p>the statement:</p>
<p>- mac os x is based on linux</p>
<p>is wrong, because is a wrong sillogism.</p>
<p>analogue:</p>
<p>- chimneys smoke<br />
- my grandfather smokes</p>
<p>=&gt; my grandfather is a chimney.</p>
<p>so, if you say that Mac OS X is unix-based, it&#8217;s correct, if you say that is linux-based, it&#8217;s wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-informatik.de/fun/mac-os-x-linux-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abschließender Slash mit mod_rewrite in htaccess</title>
		<link>http://www.webdesign-informatik.de/linux/abschliessender-slash-mod-rewrite/</link>
		<comments>http://www.webdesign-informatik.de/linux/abschliessender-slash-mod-rewrite/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 16:34:10 +0000</pubDate>
		<dc:creator>Elias</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://www.webdesign-informatik.de/?p=333</guid>
		<description><![CDATA[Möchte man Verzeichnisse mit mod_rewrite simulieren, sollte eine URL immer mit einem Slash abgeschlossen werden, der sogenannte trailing slash. Folgende Methoden können in der .htaccess ausprobiert werden.
Methode 1
# add trailing slash
RewriteCond %{REQUEST_FILENAME} &#160;-d
RewriteRule ^(.+[^/])$ $1/ &#160;[R,L]
Methode 2
#trailing slash enforcement
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !#
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]
]]></description>
			<content:encoded><![CDATA[<p>Möchte man Verzeichnisse mit <strong>mod_rewrite</strong> simulieren, sollte eine URL immer mit einem Slash abgeschlossen werden, der sogenannte <strong>trailing slash</strong>. Folgende Methoden können in der <strong>.htaccess</strong> ausprobiert werden.</p>
<p>Methode 1</p>
<div class="dean_ch" style="white-space: wrap;"># add trailing slash<br />
RewriteCond %{REQUEST_FILENAME} &nbsp;-d<br />
RewriteRule ^(.+[^/])$ $1/ &nbsp;[R,L]</div>
<p>Methode 2</p>
<div class="dean_ch" style="white-space: wrap;">#trailing slash enforcement<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_URI} !#<br />
RewriteCond %{REQUEST_URI} !(.*)/$<br />
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]</div>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-informatik.de/linux/abschliessender-slash-mod-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Große Dateien unter Linux auf der Festplatte suchen</title>
		<link>http://www.webdesign-informatik.de/linux/grose-dateien-unter-linux-auf-der-festplatte-suchen/</link>
		<comments>http://www.webdesign-informatik.de/linux/grose-dateien-unter-linux-auf-der-festplatte-suchen/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 14:13:35 +0000</pubDate>
		<dc:creator>Elias</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[finden]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[suchen]]></category>

		<guid isPermaLink="false">http://www.webdesign-informatik.de/?p=150</guid>
		<description><![CDATA[Bei säubern der Festplatte unter Linux kann es nicht schaden, große Dateien ab einer bestimmten Megabytezahl zu suchen und zu finden. Beim Suchen von Dateien, leistet wie immer find sehr gute Dienste. Hier findet find alle Dateien größer 1024 KiloByte (also 1 MB) auf:
find . -type f -size +1024k -exec ls -lh {} \;
]]></description>
			<content:encoded><![CDATA[<p>Bei säubern der Festplatte unter Linux kann es nicht schaden, große Dateien ab einer bestimmten Megabytezahl zu suchen und zu finden. Beim Suchen von Dateien, leistet wie immer <strong>find </strong>sehr gute Dienste. Hier findet find alle Dateien größer 1024 KiloByte (also 1 MB) auf:</p>
<div class="dean_ch" style="white-space: wrap;">find . -type f -size +1024k -exec ls -lh {} \;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-informatik.de/linux/grose-dateien-unter-linux-auf-der-festplatte-suchen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

