<?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>Animesh Kumar {itsAnimesh} &#187; Fedora</title>
	<atom:link href="http://itsanimesh.com/tag/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://itsanimesh.com</link>
	<description>Tech Geek / FOSS Enthusiasts</description>
	<lastBuildDate>Sun, 10 Jul 2011 04:49:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Generate Hardware Information on Linux!!!</title>
		<link>http://itsanimesh.com/2010/02/08/generate-hardware-information-on-linux/</link>
		<comments>http://itsanimesh.com/2010/02/08/generate-hardware-information-on-linux/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 08:45:46 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=1633</guid>
		<description><![CDATA[You can generate a nice report (HTML or XML format) of your laptop/desktop hardware information by executing this command: lshw -html &#62; sysinfo.html You may need to install it first&#8230; For Debian and Ubuntu users installation is simple.. sudo aptitude install lshw You can find the detailed information about lshw from the following page: http://www.ezix.org/project/wiki/HardwareLiSter]]></description>
			<content:encoded><![CDATA[<p>You can generate a nice report (HTML or XML format) of your laptop/desktop hardware information by executing this command:</p>
<p style="text-align: center;"><code><strong>lshw -html &gt; sysinfo.html</strong></code></p>
<p>You may need to install it first&#8230; For Debian and Ubuntu users installation is simple..</p>
<p><code>sudo aptitude install lshw</code></p>
<p>You can find the detailed information about <strong>lshw</strong> from the following page: <a href="http://www.ezix.org/project/wiki/HardwareLiSter" target="_blank">http://www.ezix.org/project/wiki/HardwareLiSter</a></p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2010/02/08/generate-hardware-information-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto : Twitter from Command Line&#8230;</title>
		<link>http://itsanimesh.com/2010/01/25/howto-twitter-from-command-line/</link>
		<comments>http://itsanimesh.com/2010/01/25/howto-twitter-from-command-line/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 09:07:01 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=1593</guid>
		<description><![CDATA[This is a tutorial explaining how to post to Twitter using command-line in Linux, without needing to even open up your web browser&#8230;. First, install the curl package: sudo apt-get install curl Next, create a script anywhere in your $PATH, for example tweet.sh inside ~/bin, where ~ is your home directory (make sure ~/bin is ...]]></description>
			<content:encoded><![CDATA[<p>This is a tutorial explaining how to post to Twitter using command-line in Linux, without needing to even open up your web browser&#8230;.</p>
<p>First, install the curl package:</p>
<pre>sudo apt-get install curl</pre>
<p>Next, create a script anywhere in your <strong>$PATH</strong>, for example <strong>tweet.sh</strong> inside <strong>~/bin</strong>, where ~ is your home directory (make sure ~/bin is included in your $PATH variable, in case echo $PATH doesn&#8217;t return it, edit <strong>~/.bashrc</strong> and add a line like this: <strong>export PATH=/home/USER/bin/:$PATH</strong>)&#8230;</p>
<p>The script <strong>tweet.sh</strong> should contain the following:<span id="more-1593"></span><br />
<code> </code></p>
<p><code> </code></p>
<p><code> </code></p>
<p>&nbsp;</p>
<p><code></p>
<pre>#!/bin/sh

############EDIT THE FOLLOWING LINES...###########################
user="USERNAME"
pass="PASSWORD"
##################################################################

######################DO NOT EDIT BELOW THIS######################
tweet="${@}"

if [ $(echo "${tweet}" | wc -c) -gt 140 ]; then
    echo "FATAL: The tweet is longer than 140 characters!"
    exit 1
fi

curl -k -u ${user}:${pass} -d status="${tweet}" https://twitter.com/statuses/update.xml &gt;/dev/null 2&gt;&amp;1

if [ "$?" == "0" ]; then
    echo "Successful tweet!"
fi</pre>
<p></code></p>
<p>&nbsp;</p>
<p>Replace <strong>USERNAME </strong>and <strong>PASSWORD </strong>with your Twitter username and password, and then make the script executable:</p>
<pre>chmod 755 ~/bin/tweet.sh</pre>
<p>And now test it.. Just use it as :</p>
<pre>tweet.sh YOUR MESSAGE</pre>
<p>This should be all&#8230;</p>
<p>If you don&#8217;t want to copy paste the code for tweet.sh then use the following link to download <a href="http://itsanimesh.com/wp-content/uploads/2010/01/tweet.txt">tweet.txt</a> and RENAME it as tweet.sh</p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2010/01/25/howto-twitter-from-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 12 &#8216;Constantine&#8217; has been released!!!</title>
		<link>http://itsanimesh.com/2009/11/18/fedora-12-constantine-has-been-released/</link>
		<comments>http://itsanimesh.com/2009/11/18/fedora-12-constantine-has-been-released/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 06:11:04 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=1143</guid>
		<description><![CDATA[The final release of Fedora&#8217;s 12th edition, code-named Constantine, is available for download, after a two-week slippage in its release schedule. The new RedHat community Linux distro includes power management features pulled from RHEL 5, improved support for netbooks, and a much-improved NetworkManager. Fedora 12 can boot in 20 seconds, rivaling Ubuntu 9.10 and Windows ...]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1146" title="fedora12" src="http://itsanimesh.com/wp-content/uploads/2009/11/fedora12.png" alt="fedora12" width="200" height="100" />The final release of Fedora&#8217;s 12th edition, code-named Constantine, is available for download, after a two-week slippage in its release schedule. The new RedHat community Linux distro includes power management features pulled from RHEL 5, improved support for netbooks, and a much-improved NetworkManager.<span id="more-1143"></span></p>
<p>Fedora 12 can boot in 20 seconds, rivaling Ubuntu 9.10 and Windows 7.  Like other recent Linux releases, Fedora 12 also uses the more efficient and speedier ext4 as the default file system. As of Fedora 12, the base x86 architecture is now i686.  This move away from i586 means the end of the road for older style processors.  It also means that faster binaries can be created because of the concentration on current and future processor designs.</p>
<p>Fedora 12 also provides an easier way to install missing applications. A PackageKit browser plugin allows users to go online to securely install applications from websites.  To make things easier for those who still like the command line, its includes by default the PackageKit command not found functionality</p>
<p>Aside from including Gnome 2.28 and KDE 4.3 as desktop options, it includes the Fedora Moblin desktop.  Designed and optimized to run on netbooks or Mobile Internet Devices (MID), Fedora Moblin gives users another alternative to Ubuntu or Microsoft as desktops for these devices.</p>
<p>All in all, Fedora 12 is a major and compelling upgrade to a venerable Linux OS.  With the plethora of new features that Fedora 12 has, both hard core as well as casual users will surely pleased.</p>
<p>Have a look at <a href="https://fedoraproject.org/wiki/Fedora_12_tour">Fedora 12 (release notes)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/11/18/fedora-12-constantine-has-been-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OLPC Operating System Sugar On a Stick!!!</title>
		<link>http://itsanimesh.com/2009/06/04/olpc-operating-system-sugar-on-a-stick/</link>
		<comments>http://itsanimesh.com/2009/06/04/olpc-operating-system-sugar-on-a-stick/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 15:11:41 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Dell XPS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[olpc]]></category>
		<category><![CDATA[Sugar]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=534</guid>
		<description><![CDATA[Sugar is the desktop environment originally developed for the One Laptop per Child (OLPC) computer/education project and as of May 2008 being developed under the umbrella of Sugar Labs. Sugar is used on the OLPC XO-1 laptop computer and is also available as a session option on Ubuntu and Fedora. Unlike more traditional desktop environments, ...]]></description>
			<content:encoded><![CDATA[<h5><a href="http://en.wikipedia.org/wiki/Sugar_(GUI)">Sugar</a> is the desktop environment originally developed for the <a href="http://en.wikipedia.org/wiki/One_Laptop_per_Child">One Laptop per Child</a> (OLPC) computer/education project and as of May 2008 being developed under the umbrella of <a href="http://www.sugarlabs.org/">Sugar Labs</a>. Sugar is used on the OLPC XO-1 laptop computer and is also available as a session option on Ubuntu and Fedora. Unlike more traditional desktop environments, it does not use a &#8220;desktop&#8221; metaphor and only focuses on one task at a time. It is written in the interpreted Python programming language, whereas most other environments are written in a compiled language such as C. Sugar is also referred to as the OLPC Python Environment. It is composed of the Python language, GTK GUI and Gecko HTML engine.</h5>
<h5>One of the goal is to bring the Sugar OS to any computer, not just the OLPC XO Laptop. And as step one, the team released <a href="http://wiki.sugarlabs.org/go/Sugar_on_a_Stick">Sugar on a Stick</a> a while back. Basically, what Sugar on a Stick lets you do is download and install the Sugar OS onto a USB flash disk with 1GB of storage space or more. The end result is a USB stick that you can insert into pretty much any x86 based computer to boot into the Sugar environment.</h5>
<h5>There are two versions of Sugar on a Stick available at the moment. One is based on Fedora 10, while the other is based on Ubuntu 8.10. I tried out the Fedora version, which also makes it easy to create persistent storage space on the flash drive, which means you can save any changes to the USB stick. In other words, while Sugar on a Stick boots like a LiveUSB, since you can save changes you can treat it like a portable operating system. You can carry it with you and plug it into any computer to pull up your operating environment. I used Sugar USB pen drive on my Dell XPS M1530.&nbsp;</p>
<p style="text-align: center;"><a title="Screenshot" rel="lightbox[roadtrip]" href="http://farm4.static.flickr.com/3658/3590833043_3d5f15f001.jpg?v=0"><img src="http://farm4.static.flickr.com/3658/3590833043_3d5f15f001.jpg?v=0" alt="Screenshot" align="middle" /></a></p>
<p style="text-align: center;"><a title="Screenshot" rel="lightbox[roadtrip]" href="http://farm4.static.flickr.com/3568/3590832307_fedef4bae9.jpg?v=0"><img src="http://farm4.static.flickr.com/3568/3590832307_fedef4bae9.jpg?v=0" alt="Screenshot" align="middle" /></a></p>
</h5>
<h5>Sugar OS is designed primarily as an educational tool for children, and includes a number of games, and other tools including utilities kids can use to write their own programs. But if you want to see what the buzz is about without buying your own XO Laptop, Sugar on a Stick is the way to go.</h5>
<h5>For more Screenshots visit my <a href="http://www.flickr.com/photos/itsanimesh/sets/72157619173877854/">Flickr Photostream</a>..</h5>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/06/04/olpc-operating-system-sugar-on-a-stick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

