<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>Morad.info</title>
	<link>http://www.morad.info</link>
	<description>Biz öğrenelim diye, yazıyorum. Sevinç, korku, kızgınlık, üzüntü, kıskançlık, sevgi vb. sebeplerle ortaya çıkan güçlü ve geçici duygu durumu.</description>
	<pubDate>Fri, 10 Oct 2008 07:38:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>How to find - Size of a directory &#038; Free disk space</title>
		<link>http://www.morad.info/how-to-find-size-of-a-directory-free-disk-space/</link>
		<comments>http://www.morad.info/how-to-find-size-of-a-directory-free-disk-space/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 07:38:53 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.morad.info/how-to-find-size-of-a-directory-free-disk-space/</guid>
		<description><![CDATA[&#8216;du&#8217; - Finding the size of a directory
$ du
Typing the above at the prompt gives you a list of directories that exist in the current directory along with their sizes. The last line of the output gives you the total size of the current directory including its subdirectories. The size given includes the sizes of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>&#8216;du&#8217; - Finding the size of a directory</strong></p>
<p><strong>$ du</strong><br />
Typing the above at the prompt gives you a list of directories that exist in the current directory along with their sizes. The last line of the output gives you the total size of the current directory including its subdirectories. The size given includes the sizes of the files and the directories that exist in the current directory as well as all of its subdirectories. Note that by default the sizes given are in kilobytes.</p>
<p><strong>$ du /home/david</strong><br />
The above command would give you the directory size of the directory /home/david</p>
<p><strong>$ du -h</strong><br />
This command gives you a better output than the default one. The option &#8216;-h&#8217; stands for human readable format. So the sizes of the files / directories are this time suffixed with a &#8216;k&#8217; if its kilobytes and &#8216;M&#8217; if its Megabytes and &#8216;G&#8217; if its Gigabytes.</p>
<p><strong>$ du -ah</strong><br />
This command would display in its output, not only the directories but also all the files that are present in the current directory. Note that &#8216;du&#8217; always counts all files and directories while giving the final size in the last line. But the &#8216;-a&#8217; displays the filenames along with the directory names in the output. &#8216;-h&#8217; is once again human readable format.</p>
<p><strong>$ du -c</strong><br />
This gives you a grand total as the last line of the output. So if your directory occupies 30MB the last 2 lines of the output would be</p>
<p>30M .<br />
30M total</p>
<p>The first line would be the default last line of the &#8216;du&#8217; output indicating the total size of the directory and another line displaying the same size, followed by the string &#8216;total&#8217;. This is helpful in case you this command along with the grep command to only display the final total size of a directory as shown below.</p>
<p><strong>$ du -ch | grep total</strong><br />
This would have only one line in its output that displays the total size of the current directory including all the subdirectories.</p>
<p>Note : In case you are not familiar with pipes (which makes the above command possible) refer to Article No. 24 . Also grep is one of the most important commands in Unix. Refer to Article No. 25 to know more about grep.</p>
<p><strong>$ du -s</strong><br />
This displays a summary of the directory size. It is the simplest way to know the total size of the current directory.</p>
<p><strong>$ du -S</strong><br />
This would display the size of the current directory excluding the size of the subdirectories that exist within that directory. So it basically shows you the total size of all the files that exist in the current directory.</p>
<p><strong>$ du &#8211;exculde=mp3</strong><br />
The above command would display the size of the current directory along with all its subdirectories, but it would exclude all the files having the given pattern present in their filenames. Thus in the above case if there happens to be any mp3 files within the current directory or any of its subdirectories, their size would not be included while calculating the total directory size.</p>
<p>-</p>
<p><strong>&#8216;df&#8217; - finding the disk free space / disk usage</strong></p>
<p><strong>$ df</strong><br />
Typing the above, outputs a table consisting of 6 columns. All the columns are very easy to understand. Remember that the &#8216;Size&#8217;, &#8216;Used&#8217; and &#8216;Avail&#8217; columns use kilobytes as the unit. The &#8216;Use%&#8217; column shows the usage as a percentage which is also very useful.</p>
<p><strong>$ df -h</strong><br />
Displays the same output as the previous command but the &#8216;-h&#8217; indicates human readable format. Hence instead of kilobytes as the unit the output would have &#8216;M&#8217; for Megabytes and &#8216;G&#8217; for Gigabytes.</p>
<p>Most of the users don&#8217;t use the other parameters that can be passed to &#8216;df&#8217;. So I shall not be discussing them.</p>
<p>I shall in turn show you an example that I use on my machine. I have actually stored this as a script named &#8216;usage&#8217; since I use it often.</p>
<p>Example :</p>
<p>I have my Linux installed on /dev/hda1 and I have mounted my Windows partitions as well (by default every time Linux boots). So &#8216;df&#8217; by default shows me the disk usage of my Linux as well as Windows partitions. And I am only interested in the disk usage of the Linux partitions. This is what I use :</p>
<p><strong>$ df -h | grep /dev/hda1 | cut -c 41-43</strong></p>
<p>This command displays the following on my machine</p>
<p>45%</p>
<p>Kaynak: <a href="http://www.codecoffee.com/tipsforlinux/articles/22.html" title="Code Coffee" target="_blank">http://www.codecoffee.com/tipsforlinux/articles/22.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/how-to-find-size-of-a-directory-free-disk-space/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FirefoxGeeks &#124; Tips and Tricks on All Things Firefox&#8230;</title>
		<link>http://www.morad.info/firefoxgeeks-tips-and-tricks-on-all-things-firefox/</link>
		<comments>http://www.morad.info/firefoxgeeks-tips-and-tricks-on-all-things-firefox/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 14:12:22 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.morad.info/firefoxgeeks-tips-and-tricks-on-all-things-firefox/</guid>
		<description><![CDATA[FirefoxGeeks &#124; Tips and Tricks on All Things Firefox&#8230;
]]></description>
			<content:encoded><![CDATA[<p><a href="http://firefoxgeeks.com/#">FirefoxGeeks | Tips and Tricks on All Things Firefox&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/firefoxgeeks-tips-and-tricks-on-all-things-firefox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>19 Free GTD Apps for Windows, Mac &#038; Linux - Stepcase Lifehack</title>
		<link>http://www.morad.info/19-free-gtd-apps-for-windows-mac-linux-stepcase-lifehack/</link>
		<comments>http://www.morad.info/19-free-gtd-apps-for-windows-mac-linux-stepcase-lifehack/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 17:01:34 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.morad.info/19-free-gtd-apps-for-windows-mac-linux-stepcase-lifehack/</guid>
		<description><![CDATA[19 Free GTD Apps for Windows, Mac &#38; Linux - Stepcase Lifehack
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lifehack.org/articles/lifehack/19-free-gtd-apps-for-windows-mac-linux.html">19 Free GTD Apps for Windows, Mac &amp; Linux - Stepcase Lifehack</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/19-free-gtd-apps-for-windows-mac-linux-stepcase-lifehack/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Domain Name System (DNS) Parameters</title>
		<link>http://www.morad.info/domain-name-system-dns-parameters/</link>
		<comments>http://www.morad.info/domain-name-system-dns-parameters/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 11:50:16 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[named]]></category>

		<category><![CDATA[Apache]]></category>

		<category><![CDATA[Programlama]]></category>

		<guid isPermaLink="false">http://www.morad.info/domain-name-system-dns-parameters/</guid>
		<description><![CDATA[http://www.iana.org/assignments/dns-parameters
useful dns parameters
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iana.org/assignments/dns-parameters" title="http://www.iana.org/assignments/dns-parameters" target="_blank">http://www.iana.org/assignments/dns-parameters</a></p>
<p>useful dns parameters</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/domain-name-system-dns-parameters/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dosyaların içinde kelime arama, Linux</title>
		<link>http://www.morad.info/dosyalarin-icinde-kelime-arama-linux/</link>
		<comments>http://www.morad.info/dosyalarin-icinde-kelime-arama-linux/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 12:08:46 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[config]]></category>

		<category><![CDATA[Apache]]></category>

		<category><![CDATA[Php]]></category>

		<category><![CDATA[Programlama]]></category>

		<guid isPermaLink="false">http://www.morad.info/dosyalarin-icinde-kelime-arama-linux/</guid>
		<description><![CDATA[linux&#8217;ta dosyaların içinde kelime arama
find / -type f -exec grep -H 'Linux123' {} ;
]]></description>
			<content:encoded><![CDATA[<p>linux&#8217;ta dosyaların içinde kelime arama</p>
<pre class="alt2" dir="ltr" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 34px; text-align: left">find / -type f -exec grep -H 'Linux123' {} ;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/dosyalarin-icinde-kelime-arama-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>oğf, ya evde yoksan?</title>
		<link>http://www.morad.info/ogf-ya-evde-yoksan/</link>
		<comments>http://www.morad.info/ogf-ya-evde-yoksan/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 08:58:13 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.morad.info/ogf-ya-evde-yoksan/</guid>
		<description><![CDATA[içim içimi yiyor, telefonu elime alıyorum, kenara bırakıyorum. kalkıyorum dolaşıyorum, geri geliyorum. telefonu alıyorum, telefonu bırakıyorum. telefonun şarjı bitiyor, telefon şarjdayken başında bekliyorum.
nerdesin be guk?
durağa gidiyorum, otobüs geçiyor, binmiyorum. otobüs geçiyor içine bakıyorum, ya oradaysan. otobüs uzaklaşıyor ben niye binmedim ki? diyorum.  otobüse biniyorum, oraya kadar gelip, geri dönüyorum, ya evde yoksan guk?
canım acıyor, kalbimi [...]]]></description>
			<content:encoded><![CDATA[<p>içim içimi yiyor, telefonu elime alıyorum, kenara bırakıyorum. kalkıyorum dolaşıyorum, geri geliyorum. telefonu alıyorum, telefonu bırakıyorum. telefonun şarjı bitiyor, telefon şarjdayken başında bekliyorum.</p>
<p>nerdesin be guk?</p>
<p>durağa gidiyorum, otobüs geçiyor, binmiyorum. otobüs geçiyor içine bakıyorum, ya oradaysan. otobüs uzaklaşıyor ben niye binmedim ki? diyorum.  otobüse biniyorum, oraya kadar gelip, geri dönüyorum, ya evde yoksan guk?</p>
<p>canım acıyor, kalbimi sökesim geliyor. bir elimi atıyorum kalbime, kalbim atıyor ikimize. geri çekiyorum elimi. sesini dinliyorum &#8220;guk, guk. guk,guk&#8221; diye atıyor. kalbim atıyor, elim kaçıyor.</p>
<p>ben seni dinliyorum, sen ses vermiyorsun. ben senin sessizliğini severim ama benim sensizliğim hiç çekilmiyor be guk&#8230;</p>
<p>ama beklemeye değecek guk&#8230; beklemeye değecek biliyorum&#8230;</p>
<p>Seni seviyorum</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/ogf-ya-evde-yoksan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Toz</title>
		<link>http://www.morad.info/toz/</link>
		<comments>http://www.morad.info/toz/#comments</comments>
		<pubDate>Fri, 30 May 2008 05:53:42 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[Edebiyat]]></category>

		<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.morad.info/toz/</guid>
		<description><![CDATA[



  

Havada, ilkbaharı getiren rüzgarın havalandırdığı toz kokusu var. Şimdi Kanlıca&#8217;dayım evimin aşağısındaki yokuştan aşağıya doğru sahile iniyorum. İnmesem mi? Kalabalık, ses&#8230; neyse gitmiyorum yoldan döndüm geriye doğru fakat yokuş çok dik gidemiyorum. sanki birşey geri dönmemi engelliyor. yine vaz geçtim aşağı tekrar sahile iniyorum&#8230; Yüzüme vuracak sıcak rüzgar ve denizin kokusunu duymaya başladım. [...]]]></description>
			<content:encoded><![CDATA[<p><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="ProgId" content="Word.Document" /><meta name="Generator" content="Microsoft Word 12" /><meta name="Originator" content="Microsoft Word 12" /></p>
<link href="file:///D:%5CDOCUME%7E1%5CMKUCUK%7E1.BAY%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" rel="File-List" />
<link href="file:///D:%5CDOCUME%7E1%5CMKUCUK%7E1.BAY%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" rel="themeData" />
<link href="file:///D:%5CDOCUME%7E1%5CMKUCUK%7E1.BAY%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" rel="colorSchemeMapping" /><!--[if gte mso 9]><xml>  <w :WordDocument>   </w><w :View>Normal</w>   <w :Zoom>0</w>   <w :TrackMoves/>   <w :TrackFormatting/>   <w :HyphenationZone>21</w>   <w :PunctuationKerning/>   <w :ValidateAgainstSchemas/>   <w :SaveIfXMLInvalid>false</w>   <w :IgnoreMixedContent>false</w>   <w :AlwaysShowPlaceholderText>false</w>   <w :DoNotPromoteQF/>   <w :LidThemeOther>TR</w>   <w :LidThemeAsian>X-NONE</w>   <w :LidThemeComplexScript>X-NONE</w>   <w :Compatibility>    <w :BreakWrappedTables/>    <w :SnapToGridInCell/>    <w :WrapTextWithPunct/>    <w :UseAsianBreakRules/>    <w :DontGrowAutofit/>    <w :SplitPgBreakAndParaMark/>    <w :DontVertAlignCellWithSp/>    <w :DontBreakConstrainedForcedTables/>    <w :DontVertAlignInTxbx/>    <w :Word11KerningPairs/>    <w :CachedColBalance/>   </w>   <w :BrowserLevel>MicrosoftInternetExplorer4</w>   <m :mathPr>    <m :mathFont m:val="Cambria Math"/>    <m :brkBin m:val="before"/>    <m :brkBinSub m:val="&#45;-"/>    <m :smallFrac m:val="off"/>    <m :dispDef/>    <m :lMargin m:val="0"/>    <m :rMargin m:val="0"/>    <m :defJc m:val="centerGroup"/>    <m :wrapIndent m:val="1440"/>    <m :intLim m:val="subSup"/>    <m :naryLim m:val="undOvr"/>   </m> </xml>< ![endif]--><!--[if gte mso 9]><xml>  <w :LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267">   <w :LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal"/>   <w :LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>   <w :LsdException Locked="false" Priority="39" Name="toc 1"/>   <w :LsdException Locked="false" Priority="39" Name="toc 2"/>   <w :LsdException Locked="false" Priority="39" Name="toc 3"/>   <w :LsdException Locked="false" Priority="39" Name="toc 4"/>   <w :LsdException Locked="false" Priority="39" Name="toc 5"/>   <w :LsdException Locked="false" Priority="39" Name="toc 6"/>   <w :LsdException Locked="false" Priority="39" Name="toc 7"/>   <w :LsdException Locked="false" Priority="39" Name="toc 8"/>   <w :LsdException Locked="false" Priority="39" Name="toc 9"/>   <w :LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>   <w :LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title"/>   <w :LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>   <w :LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>   <w :LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong"/>   <w :LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>   <w :LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid"/>   <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>   <w :LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>   <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>   <w :LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>   <w :LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote"/>   <w :LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>   <w :LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>   <w :LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>   <w :LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>   <w :LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>   <w :LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>   <w :LsdException Locked="false" Priority="37" Name="Bibliography"/>   <w :LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>  </w> </xml>< ![endif]--><br />
<style> <!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:1; 	mso-generic-font-family:roman; 	mso-font-format:other; 	mso-font-pitch:variable; 	mso-font-signature:0 0 0 0 0 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:162; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi; 	mso-fareast-language:EN-US;} span.E-postaStili15 	{mso-style-type:personal; 	mso-style-noshow:yes; 	mso-style-unhide:no; 	mso-ansi-font-size:11.0pt; 	mso-bidi-font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi; 	color:windowtext;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi; 	mso-fareast-language:EN-US;} @page Section1 	{size:612.0pt 792.0pt; 	margin:70.85pt 70.85pt 70.85pt 70.85pt; 	mso-header-margin:35.4pt; 	mso-footer-margin:35.4pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --> </style>
<p><!--[if gte mso 10]><br />
<style>  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Normal Tablo"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} </style>
<p> < ![endif]--></p>
<p class="MsoNormal">Havada, ilkbaharı getiren rüzgarın havalandırdığı toz kokusu var. Şimdi Kanlıca&#8217;dayım evimin aşağısındaki yokuştan aşağıya doğru sahile iniyorum. İnmesem mi? Kalabalık, ses&#8230; neyse gitmiyorum yoldan döndüm geriye doğru fakat yokuş çok dik gidemiyorum. sanki birşey geri dönmemi engelliyor. yine vaz geçtim aşağı tekrar sahile iniyorum&#8230; Yüzüme vuracak sıcak rüzgar ve denizin kokusunu duymaya başladım. Bu eski evlerin teraslarından sarkan adını bilmediğim çiçeklerin kokusu, hmmm çok güzel. insan hep bu yoldan yürümek istiyor.<o :p></o></p>
<p class="MsoNormal"><o :p> </o></p>
<p class="MsoNormal">Birden bire kendimi Kavacık&#8217;ta otobüs beklerken buluyorum&#8230; çiçek kokusu nerde? yine aynı toz kokusu&#8230; nereye gideceğimi bilmiyorum ve kardeşim yanımda&#8230; çok uzağa gidecek olamam. Gideceğimiz yönün tersi yönünde lacivert bir otobüs geçti camdan bir kız bakıyor, aniden kardeşime dönüp bak gördün mü? daha önce de bir yerde gördüm onu dedim. aa evet. diye cevap verdi.<o :p></o></p>
<p class="MsoNormal"><o :p> </o></p>
<p class="MsoNormal">uyandım&#8230;<o :p></o></p>
<p class="MsoNormal"><o :p> </o></p>
<p class="MsoNormal">kapıdan dışarı baktım yine aynı toz kokusu fakat her yer yeşil&#8230; Bir koşuşturma var fakat her sabah olan koşuşturma&#8230;<o :p></o></p>
<p class="MsoNormal"><o :p> </o></p>
<p class="MsoNormal">ve saat 7:30 ben geç kalmışım dünyaya&#8230;<o :p></o></p>
<p class="MsoNormal"><o :p> </o></p>
<p class="MsoNormal">Cumartesi, Mart 25, 2006<o :p></o></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/toz/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Durgun</title>
		<link>http://www.morad.info/durgun/</link>
		<comments>http://www.morad.info/durgun/#comments</comments>
		<pubDate>Fri, 30 May 2008 05:48:06 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.morad.info/durgun/</guid>
		<description><![CDATA[durgundum&#8230;
güneş doğmuştu çoktan, ben üzerinden geçtiğim çölden ayrılma sebebimi bulmuştum aslında&#8230;
ben bu gün dönüyorum, demeyi denemeden daha kaplamıştı içimi olacakların heyecanı&#8230; evet güneş doğmuştu fakat ben anlayamamıştım.
aniden çıktım yola&#8230; dayanamadım daha fazla. ruhum bedenimi terketmek istercesine bir heyecan içerisinde, yürüdüm&#8230;
ben karanlığı ve soğuğu severim bu yüzden ne korktum ne üşüdüm. durgunluk geldi bazen yanıma, fısıldadı [...]]]></description>
			<content:encoded><![CDATA[<p>durgundum&#8230;<br />
güneş doğmuştu çoktan, ben üzerinden geçtiğim çölden ayrılma sebebimi bulmuştum aslında&#8230;<br />
ben bu gün dönüyorum, demeyi denemeden daha kaplamıştı içimi olacakların heyecanı&#8230; evet güneş doğmuştu fakat ben anlayamamıştım.<br />
aniden çıktım yola&#8230; dayanamadım daha fazla. ruhum bedenimi terketmek istercesine bir heyecan içerisinde, yürüdüm&#8230;<br />
ben karanlığı ve soğuğu severim bu yüzden ne korktum ne üşüdüm. durgunluk geldi bazen yanıma, fısıldadı kulağıma bir şeyleri&#8230; uzun zaman oldu&#8230; çok uzun&#8230;<br />
heycanım hala var&#8230; ve ben geldim&#8230; kendi isteğimle olacakları bilerek&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/durgun/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linux Büyük Klasör / Dosyaları Bulmak</title>
		<link>http://www.morad.info/linux-buyuk-klasor-dosyalari-bulmak/</link>
		<comments>http://www.morad.info/linux-buyuk-klasor-dosyalari-bulmak/#comments</comments>
		<pubDate>Wed, 14 May 2008 11:08:02 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.morad.info/linux-buyuk-klasor-dosyalari-bulmak/</guid>
		<description><![CDATA[50kb&#8217;tan büyük klasörleri bulmak için
# find / -type d -size +50k
Çıktı:
/var/lib/dpkg/info
/var/log/ksymoops
/usr/share/doc/HOWTO/en-html
/usr/share/man/man3
Büyük Dosyaları Bulmak İçin
# find / -type f -size +20000k
Çıktı:
/var/log/kern.log
/sys/devices/pci0000:00/0000:00:02.0/resource0
/sys/devices/pci0000:00/0000:00:00.0/resource0
/opt/03Jun05/firefox-1.0.4-source.tar.bz2
favori komut ise:
# find / -type f -size +20000k -exec ls -lh {} \; &#124; awk '{ print $8 ": " $5 }' 
Çıktı:
/var/log/kern.log: 22M
/sys/devices/pci0000:00/0000:00:02.0/resource0: 128M
/sys/devices/pci0000:00/0000:00:00.0/resource0: 256M
/opt/03Jun05/firefox-1.0.4-source.tar.bz2: 32M
teşekkürler
]]></description>
			<content:encoded><![CDATA[<p>50kb&#8217;tan büyük klasörleri bulmak için<br />
<code># find / -type d -size +50k</code></p>
<p>Çıktı:<br />
<code>/var/lib/dpkg/info<br />
/var/log/ksymoops<br />
/usr/share/doc/HOWTO/en-html<br />
/usr/share/man/man3</code></p>
<p>Büyük Dosyaları Bulmak İçin<br />
<code># find / -type f -size +20000k</code></p>
<p>Çıktı:<br />
<code>/var/log/kern.log<br />
/sys/devices/pci0000:00/0000:00:02.0/resource0<br />
/sys/devices/pci0000:00/0000:00:00.0/resource0<br />
/opt/03Jun05/firefox-1.0.4-source.tar.bz2</code></p>
<p>favori komut ise:</p>
<p><code># find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }' </code></p>
<p>Çıktı:<br />
<code>/var/log/kern.log: 22M<br />
/sys/devices/pci0000:00/0000:00:02.0/resource0: 128M<br />
/sys/devices/pci0000:00/0000:00:00.0/resource0: 256M<br />
/opt/03Jun05/firefox-1.0.4-source.tar.bz2: 32M</code></p>
<p>teşekkürler</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/linux-buyuk-klasor-dosyalari-bulmak/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Türk Kadın Tarihine Giriş</title>
		<link>http://www.morad.info/turk-kadin-tarihine-giris/</link>
		<comments>http://www.morad.info/turk-kadin-tarihine-giris/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 13:57:47 +0000</pubDate>
		<dc:creator>morad</dc:creator>
		
		<category><![CDATA[Tanıtım]]></category>

		<guid isPermaLink="false">http://www.morad.info/turk-kadin-tarihine-giris/</guid>
		<description><![CDATA[insanların girdikleri sayfaları okumamalarını nasıl açıklayabiliriz ki? yorum olarak kitabın tanıtımını bırakmışlar  lakin çok saçma bir yere bırakmışlar. neyse bir şey demeyeceğim. yorumu buraya da kopyalıyorum.
]]></description>
			<content:encoded><![CDATA[<p>insanların girdikleri sayfaları okumamalarını nasıl açıklayabiliriz ki? yorum olarak kitabın tanıtımını bırakmışlar <img src='http://www.morad.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> lakin çok saçma bir yere bırakmışlar. neyse bir şey demeyeceğim. yorumu buraya da kopyalıyorum.</p>
<p> <a href="http://www.morad.info/turk-kadin-tarihine-giris/#more-160" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morad.info/turk-kadin-tarihine-giris/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
