<?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>Fosiul.com &#187; Miscellaneous</title>
	<atom:link href="http://www.fosiul.com/index.php/category/linux/miscellaneous/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fosiul.com</link>
	<description>Dedicated To Linux</description>
	<lastBuildDate>Wed, 08 Sep 2010 11:25:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux:How to run c program in linux</title>
		<link>http://www.fosiul.com/index.php/2010/06/linuxhow-to-run-c-program-in-linux/</link>
		<comments>http://www.fosiul.com/index.php/2010/06/linuxhow-to-run-c-program-in-linux/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 07:16:43 +0000</pubDate>
		<dc:creator>Fosiul</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.fosiul.com/?p=1100</guid>
		<description><![CDATA[1. Open an editor in linux Example vi editor
2. Write a simple program and save it as progra1.c

  #include &#60;stdio.h&#62;
  int main (void)
{
printf (&#34;Programming is fun.\n&#34;);
return 0;
}

3. compile the program : $ gcc prog1.c
4. Run the program : ./a.out
Or
5.you can give it a different name : gcc prog1.c –o prog1
Now run the program [...]]]></description>
		<wfw:commentRss>http://www.fosiul.com/index.php/2010/06/linuxhow-to-run-c-program-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux :file and directory permission</title>
		<link>http://www.fosiul.com/index.php/2010/04/linux-file-and-directory-permission/</link>
		<comments>http://www.fosiul.com/index.php/2010/04/linux-file-and-directory-permission/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:24:24 +0000</pubDate>
		<dc:creator>Fosiul</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.fosiul.com/?p=944</guid>
		<description><![CDATA[Octal Permission:
0 	&#8212; 	000 	All types of access are denied
1 	&#8211;x 	001 	Execute access is allowed only
2 	-w- 	010 	Write access is allowed only
3 	-wx 	011 	Write and execute access are allowed
4 	r&#8211; 	100 	Read access is allowed only
5 	r-x 	101 	Read and execute access are allowed
6 	rw- 	110 	Read and write access are allowed
7 [...]]]></description>
		<wfw:commentRss>http://www.fosiul.com/index.php/2010/04/linux-file-and-directory-permission/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
