<?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>Person @ CREATIVEDESK &#187; GNU / Linux</title>
	<atom:link href="http://hardik.in/category/gnu-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://hardik.in</link>
	<description>Hardik Dalwadi</description>
	<lastBuildDate>Fri, 18 May 2012 11:08:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Quickest Way To Create ISO Image in GNU/Linux Using Command Line</title>
		<link>http://hardik.in/2009/06/25/quickest-way-to-create-iso-image-in-gnulinux-using-command-line/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://hardik.in/2009/06/25/quickest-way-to-create-iso-image-in-gnulinux-using-command-line/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 18:34:38 +0000</pubDate>
		<dc:creator>Hardik Dalwadi</dc:creator>
				<category><![CDATA[Archives]]></category>
		<category><![CDATA[GNU / Linux]]></category>
		<category><![CDATA[Time Pass]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://hardik.in/?p=30</guid>
		<description><![CDATA[<p>I am assuming that you have mount CDROM on your GNU/Linux base machine, now you want to create ISO image of that CD. Generally people will do that using a dd command. person@CREATIVEDESK:/$ dd if=/dev/cdrom of=deepOfix.iso You can do same thing by using cat person@CREATIVEDESK:/$ cat /dev/cdrom > deepOfix.iso That&#8217;s all for now&#8230;</p>
]]></description>
			<content:encoded><![CDATA[<p>I am assuming that you have mount CDROM on your GNU/Linux base machine, now you want to create ISO image of that CD. Generally people will do that using a dd command. person@CREATIVEDESK:/$ dd if=/dev/cdrom of=deepOfix.iso You can do same thing by using cat person@CREATIVEDESK:/$ cat /dev/cdrom > deepOfix.iso That&#8217;s all for now&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://hardik.in/2009/06/25/quickest-way-to-create-iso-image-in-gnulinux-using-command-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SSH Tips and Tricks</title>
		<link>http://hardik.in/2009/06/25/ssh-tips-and-tricks/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://hardik.in/2009/06/25/ssh-tips-and-tricks/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 18:47:47 +0000</pubDate>
		<dc:creator>Hardik Dalwadi</dc:creator>
				<category><![CDATA[Archives]]></category>
		<category><![CDATA[GNU / Linux]]></category>
		<category><![CDATA[Time Pass]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://hardik.in/?p=34</guid>
		<description><![CDATA[<p>Many of you know that how to do password less login with SSH. Here is simple way to do that. First of all, please generate authentication keys for ssh by using ssh-keygen command. #ssh-keygen -t dsa Above command will generate authentication keys for ssh in our home directory. For password less login we need &#8216;id_dsa.pub&#8217; <a href="http://hardik.in/2009/06/25/ssh-tips-and-tricks/#more-34" class="more-link">Continue reading &rarr;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Many of you know that how to do password less login with SSH. Here is simple way to do that. First of all, please generate authentication keys for ssh by using ssh-keygen command. #ssh-keygen -t dsa Above command will generate authentication keys for ssh in our home directory. For password less login we need &#8216;id_dsa.pub&#8217; <a href="http://hardik.in/2009/06/25/ssh-tips-and-tricks/#more-34" class="more-link">Continue reading &rarr;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hardik.in/2009/06/25/ssh-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Monitor Debian server with monit</title>
		<link>http://hardik.in/2009/06/25/monitor-debian-server-with-monit/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://hardik.in/2009/06/25/monitor-debian-server-with-monit/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 19:13:05 +0000</pubDate>
		<dc:creator>Hardik Dalwadi</dc:creator>
				<category><![CDATA[Archives]]></category>
		<category><![CDATA[GNU / Linux]]></category>
		<category><![CDATA[Public]]></category>
		<category><![CDATA[Time Pass]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Monit]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://hardik.in/?p=56</guid>
		<description><![CDATA[<p>Monit is a system monitoring utility which allows an admin to easily monitor files, processes, directories, or devices on your Debian system. It can also be used for automatic maintenance/repairs &#8211; by executing particular commands when errors arise. To ease of administration monit provide a web based monitoring interface, with SSL support. To install monit <a href="http://hardik.in/2009/06/25/monitor-debian-server-with-monit/#more-56" class="more-link">Continue reading &rarr;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Monit is a system monitoring utility which allows an admin to easily monitor files, processes, directories, or devices on your Debian system. It can also be used for automatic maintenance/repairs &#8211; by executing particular commands when errors arise. To ease of administration monit provide a web based monitoring interface, with SSL support. To install monit <a href="http://hardik.in/2009/06/25/monitor-debian-server-with-monit/#more-56" class="more-link">Continue reading &rarr;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hardik.in/2009/06/25/monitor-debian-server-with-monit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is Free Software?  Translated in Gujarati.</title>
		<link>http://hardik.in/2009/06/26/what-is-free-software-translated-in-gujarati/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://hardik.in/2009/06/26/what-is-free-software-translated-in-gujarati/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 14:43:53 +0000</pubDate>
		<dc:creator>Hardik Dalwadi</dc:creator>
				<category><![CDATA[Archives]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNU / Linux]]></category>
		<category><![CDATA[Gujarati]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Translation]]></category>

		<guid isPermaLink="false">http://hardik.in/?p=65</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://hardik.in/2009/06/26/what-is-free-software-translated-in-gujarati/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For Python, ASCII, Console lovers&#8230;</title>
		<link>http://hardik.in/2009/06/26/for-python-ascii-console-lovers/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://hardik.in/2009/06/26/for-python-ascii-console-lovers/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 14:50:52 +0000</pubDate>
		<dc:creator>Hardik Dalwadi</dc:creator>
				<category><![CDATA[GNU / Linux]]></category>
		<category><![CDATA[Time Pass]]></category>

		<guid isPermaLink="false">http://hardik.in/?p=75</guid>
		<description><![CDATA[<p>#!/bin/usr/python class community while community: try: if Are you python, ASCII, Console lover: Are you believe in sweet, simple and straight forward presentation: If you don&#8217;t want to load OO Presentation: then Check the console-presenter [1]. Working in Jaunty (9.04, Intrepid (8.10) and Hardy (8.04 U2). [1] https://launchpad.net/~hardik-dalwadi/+archive/ppa else: Your Choice</p>
]]></description>
			<content:encoded><![CDATA[<p>#!/bin/usr/python class community while community: try: if Are you python, ASCII, Console lover: Are you believe in sweet, simple and straight forward presentation: If you don&#8217;t want to load OO Presentation: then Check the console-presenter [1]. Working in Jaunty (9.04, Intrepid (8.10) and Hardy (8.04 U2). [1] https://launchpad.net/~hardik-dalwadi/+archive/ppa else: Your Choice</p>
]]></content:encoded>
			<wfw:commentRss>http://hardik.in/2009/06/26/for-python-ascii-console-lovers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

