<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>tutysara</title>
	<atom:link href="http://tutysara.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutysara.wordpress.com</link>
	<description>Just another WordPress.com weblog brought to you  by tutysara</description>
	<lastBuildDate>Sun, 08 May 2011 03:52:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tutysara.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>tutysara</title>
		<link>http://tutysara.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tutysara.wordpress.com/osd.xml" title="tutysara" />
	<atom:link rel='hub' href='http://tutysara.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Setting up Ubuntu mini on a headless Virtualbox server in windowsXP</title>
		<link>http://tutysara.wordpress.com/2011/03/02/setting-up-ubuntu-mini-on-a-headless-virtualbox-server-in-windowsxp/</link>
		<comments>http://tutysara.wordpress.com/2011/03/02/setting-up-ubuntu-mini-on-a-headless-virtualbox-server-in-windowsxp/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 13:35:30 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/?p=67</guid>
		<description><![CDATA[My aim was to setup a minimal ubuntu installation that I can use occasionally on my office system which is running windows XP for playing around when I get some time. The primary requirement was that it should be small on memory and disk. So, I decided to go for Ubuntu mini in a headless [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=67&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My aim was to setup a minimal ubuntu installation that I can use occasionally on my office system which is running windows XP for playing around when I get some time. The primary requirement was that it should be small on memory and disk. So, I decided to go for Ubuntu mini in a headless  virtual box server</p>
<ul>
<li>I started out by obtaining the Ubuntu (10.10 Maverick) mini iso.<br />
Can be got from &#8211; <a href="http://archive.ubuntu.com/ubuntu/dists/maverick/main/installer-i386/current/images/netboot/mini.iso">http://archive.ubuntu.com/ubuntu/dists/maverick/main/installer-i386/current/images/netboot/mini.iso</a></li>
<li>Download the latest version of  Virtualbox (4.04), previous versions had some bugs with DHCP so, I downloaded the latest one though I had an old one<br />
Can be got from &#8211; <a href="http://download.virtualbox.org/virtualbox/4.0.4/VirtualBox-4.0.4-70112-Win.exe">http://download.virtualbox.org/virtualbox/4.0.4/VirtualBox-4.0.4-70112-Win.exe</a></li>
<li>Install Virtualbox and create a virtual machine called Mini with the configuration<br />
1. 128 MB memory<br />
2. 8 GB expanding harddisk<br />
3. Add a cd drive and connect that to Mini.iso<br />
4. Create two network connections.<br />
1. NAT – used for internet access<br />
2. Host only Adapter – used for communication between Windows XPhost and Ubuntu guest</li>
<li>Now start the virtual machine and proceed with the installation of Ubuntu. We should get the base system ready upon which we will be installing additional components.</li>
<li>Once the base system is ready we have to install shh. This can be done by giving the command<br />
<code>Sudo apt-get install ssh</code><br />
This will install open shh server and client</li>
<li> Now the next step is to start the shhd<br />
Type sudo sshd<br />
I got the error message&nbsp;</p>
<p><code>tutysra@dev-test:~$ sudo sshd<br />
sshd re-exec requires execution with an absolute path<br />
tutysra@dev-test:~$</code></p>
<p>What this means that we should use the full path to start sshd<br />
Now use <code>which </code>to find the executable and run it</p>
<p><code>tutysra@dev-test:~$ which sshd<br />
/usr/sbin/sshd<br />
tutysra@dev-test:~$ sudo /usr/sbin/sshd<br />
tutysra@dev-test:~$</code></li>
<li>Now try connecting from the local host to check the connection<br />
<code>tutysra@dev-test:~$ ssh localhost<br />
tutysra@localhost's password:</code>&nbsp;</p>
<p>It should prompt for the password.</li>
<li>Now we should configure the host only adapter<br />
We will assign it a static IP&nbsp;</p>
<p>Open &#8211; <code>/etc/network/interface</code><br />
Vi /etc/network/interface and add the following lines<br />
<code><br />
iface eth1 inet static<br />
address 192.168.56.101<br />
netmask 255.255.255.0</code></li>
<li> Now restart networking services<br />
sudo /etc/init.d/networking restart</li>
</ul>
<p>We are all done now.</p>
<ul>
<li>Come to windows. Install putty if you don’t have one and from &#8211; <a href="http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe">http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe</a><br />
Try connecting to the Ubuntu guest by giving the hostname as 192.168.56.101 and port as 22.<br />
Now we should be able to log in into the guest</li>
<li>Now the next step is to run Virtualbox in the background using headless mode.<br />
First we should shutdown the machine which is already running and close virtualbox.</li>
<li>Open a cmd prompt in windows and type<br />
<code>"C:\Program Files\Oracle\VirtualBox\VBoxHeadless.exe" -startvm Mini –p 8000</code></p>
<p>This will start the Virtualbox server in the background. Give it some time for the OS to boot.</li>
<li>Now we can connect using putty and start using the system<br />
In case if the Ubuntu guest doesn’t boot property or if you cannot connect using putty by ssh, we can always use windows remote desktop connection for connecting to the machine and debugging it.<br />
This can be done by opening Remote Desktop Connection from</p>
<p><code>Programs -&gt; Accessories -&gt; Remote Desktop Connection<br />
In the hostname filed type – 127.0.0.1:8000</code></p>
<p>This will allow you to see the Ubuntu guest console from where you can correct the issues if there are any and continue with the normal process.</li>
<li>The system can be shutwon from commandline by issuing the command
<p><code>"C:\Program Files\Oracle\VirtualBox\VBoxManage" controlvm Mini poweroff </code></li>
</ul>
<p>We can put these commands in a batch file for easy execution.<br />
We can also start the virtual machine at startup or as a service so, that looks very clean (no command windows lying open on the screen)<br />
I would be happy to help if you are struck. Leave me a comment if you have any request/suggestion or if you like this.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=67&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2011/03/02/setting-up-ubuntu-mini-on-a-headless-virtualbox-server-in-windowsxp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>Is IRC safe?</title>
		<link>http://tutysara.wordpress.com/2010/01/02/is-irc-safe/</link>
		<comments>http://tutysara.wordpress.com/2010/01/02/is-irc-safe/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 05:53:47 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/2010/01/02/is-irc-safe/</guid>
		<description><![CDATA[Do they use secured communication? This is the most obvious question one would ask when we have send password to a site or an applicaiton. Without having a secured communication there is no point in authenticating ourself by supplying a password as this information can be taken by anyone while it is transmitted and tamper [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=62&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Do they use secured communication? This is the most obvious question one would ask when we have send password to a site or an applicaiton. Without having a secured communication there is no point in authenticating ourself by supplying a password as this information can be taken by anyone while it is transmitted and tamper it.</p>
<p>To my surprise the IRC network is not secure, that means whatever we send including password is send as plain text and can be seen (and changed) by anyone who is capable of doing that. So, it is better not to use IRC for sensitive informaton and use a password that is different from other passwords. It is not a flaw or issue with IRC, it is because of the purpose and principle of IRC. IRC network is not secure and that is how it is and designed to be.</p>
<p>There are works going on to improve this by introducing SSL to make it secure. Freenode has an IRC server which uses SSL with the URL &#8211; testnet.freenode.net. Currently they are in testing phase and they need community support to test these new servers. It is a great chance to make IRC secure and give something back to the community.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=62&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2010/01/02/is-irc-safe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>Install latest version of FireFox on Ubuntu</title>
		<link>http://tutysara.wordpress.com/2010/01/02/install-latest-version-of-firefox-on-ubuntu/</link>
		<comments>http://tutysara.wordpress.com/2010/01/02/install-latest-version-of-firefox-on-ubuntu/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 05:33:57 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/2010/01/02/install-latest-version-of-firefox-on-ubuntu/</guid>
		<description><![CDATA[I am using both windows and ubuntu and use firefox on both of them. The latest version of FireFox (from now on called FF) is available for windows immediately but still it takes time to be available for ubuntu. There are a couple of repositories available but they install a re-branded version of FF which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=61&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am using both windows and ubuntu and use firefox on both of them. The latest version of FireFox (from now on called FF) is available for windows immediately but still it takes time to be available for  ubuntu. There are a couple of repositories available but they install a re-branded version of FF which I don&#8217;t like and which might cause issues with websites which uses the &#8220;user-agent&#8221; header. </p>
<p>There is a simple and easy option available to install the latest FF or any software from Mozilla on ubuntu. There is a script available at &#8211; <a href="http://sourceforge.net/projects/ubuntuzilla/files/">http://sourceforge.net/projects/ubuntuzilla/files/</a> as deb. Install this application.</p>
<p>We could run the script after installation by running the command</p>
<p><strong>sudo /usr/local/bin/ubuntuzilla.py</strong></p>
<p>It will prompt a couple of questions for selecting locale and profile backup and will install the latest version of FF</p>
<p>Just restart the system and we could see that this has taken effect by clicking the browser icon on the GNOME panel, we get the latest version of FF running on ubuntu.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=61&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2010/01/02/install-latest-version-of-firefox-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>How to get lost IRC password</title>
		<link>http://tutysara.wordpress.com/2010/01/02/how-to-get-lost-irc-password/</link>
		<comments>http://tutysara.wordpress.com/2010/01/02/how-to-get-lost-irc-password/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 05:18:32 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[freenode]]></category>
		<category><![CDATA[IRC]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/2010/01/02/how-to-get-lost-irc-password/</guid>
		<description><![CDATA[I was using IRC sometime back and I have registered my nickname. I haven&#8217;t used that for a while and I forgot the password. Though you could log into IRC without having a password for nickname there could be an issue if there is a conflict(in case someone uses the same nickname as yours). I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=60&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was using IRC sometime back and I have registered my nickname. I haven&#8217;t used that for a while and I forgot the password. Though you could log into IRC without having a password for  nickname there could be an issue if there is a conflict(in case someone uses the same nickname as yours). I was searching for an option like the generic &#8220;Forgot Password&#8221; link offered by many email services but I couldn&#8217;t find one, In fact IRC doesn&#8217;t have an equivalent since they operate on a different principle and used for different purpose. The only way you could reset your password is to ask the staff members. Staff members are users with special privileges and we can request the password to be reset at the channel <strong>#freenode</strong> for <strong>irc.freenode.com</strong>. The staff members are very helpful and they reset the password and send it to the  mailid with which we have registered. The staff members are all voiced so, that we can easily identify them in the channel and place our request.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=60&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2010/01/02/how-to-get-lost-irc-password/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>Get good looking fonts in Opera on Ubuntu</title>
		<link>http://tutysara.wordpress.com/2010/01/02/get-good-looking-fonts-in-opera-on-ubuntu/</link>
		<comments>http://tutysara.wordpress.com/2010/01/02/get-good-looking-fonts-in-opera-on-ubuntu/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 04:48:02 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/2010/01/02/get-good-looking-fonts-in-opera-on-ubuntu/</guid>
		<description><![CDATA[I recently installed opera 10.10 on ubuntu intrepid. I downloaded a binary from opera download site and the installation was smooth. I fired opera and started playing with it for sometime, it is extremely fast and the tabbed browsing was more comfortable than my firefox3.1. But there was one issue that makes it a pain [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=59&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently installed opera 10.10 on ubuntu intrepid. I downloaded a binary from opera download site and the installation was smooth. I fired opera and started playing with it for sometime, it is extremely fast and the tabbed browsing was more comfortable than my firefox3.1. But there was one issue that makes it a pain using opera , the fonts doesn&#8217;t look good and we soon feel that when we read through some long text.</p>
<p>The issue with opera is that it doesn&#8217;t take its font configurations from GNOME. so, its fonts looks different with no sub-pixel smoothing and hinting. I went through the forums and found a solution to this.</p>
<p>We have to enable full-hinting and sub-pixel smoothing. This can be done by typing the following commends in the terminal as root or using sudo.</p>
<p>1. Enable full-hinting</p>
<p>cd /etc/fonts/conf.d<br />
sudo rm 10-hinting-medium.conf<br />
sudo ln -s ../conf.avail/10-hinting-full.conf</p>
<p>2. Enable sub-pixel smoothing</p>
<p>sudo rm 10-no-sub-pixel.conf</p>
<p>We are done. Restart opera and see that the font looking.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=59&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2010/01/02/get-good-looking-fonts-in-opera-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>Web Services in Ubuntu &#8211; JAX-WS</title>
		<link>http://tutysara.wordpress.com/2009/09/05/web-services-in-ubuntu-jax-ws/</link>
		<comments>http://tutysara.wordpress.com/2009/09/05/web-services-in-ubuntu-jax-ws/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 06:34:17 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jax-ws]]></category>
		<category><![CDATA[metro]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web service]]></category>
		<category><![CDATA[wsdl]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/2009/09/05/web-services-in-ubuntu-jax-ws/</guid>
		<description><![CDATA[In this post let me go through the process of creating a web service client in java on ubuntu. We need to have the apis for programming web services. Java provides a api called JAX-WS which is version 2 of the java web services api the previous version being JAX-RPC. JAX-WS comes a part of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=45&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this post let me go through the process of creating a web service client in java on ubuntu.</p>
<p>We need to have the apis for programming web services. Java provides a api called JAX-WS which is version 2 of the java web services api the previous version being JAX-RPC. JAX-WS comes a part of JDK6.0 and above. If you are using jdk5 then we need to download the JAX-WS web-service apis. JAX-WS is developed as a separate project called Metro and the latest version can be downloaded from the Metro project site &#8211; <a href="https://jax-ws.dev.java.net/">https://jax-ws.dev.java.net/</a>. you can follow the instructions on the site for installing it.<br />
Once installed it can be checked by tying wsimport at the terminal. It should give an output which looks like this</p>
<p><code><br />
Usage: wsimport [options]<br />
</code><br />
<code><br />
where [options] include:<br />
  -b                  specify jaxws/jaxb binding files or additional schemas<br />
                            (Each  must have its own -b)<br />
  -B            Pass this option to JAXB schema compiler<br />
  -catalog            specify catalog file to resolve external entity references<br />
                            supports TR9401, XCatalog, and OASIS XML Catalog format.<br />
  -d             specify where to place generated output files<br />
  -extension                allow vendor extensions - functionality not specified<br />
                            by the specification.  Use of extensions may<br />
                            result in applications that are not portable or<br />
                            may not interoperate with other implementations<br />
  -help                     display help<br />
  -httpproxy::  specify a HTTP proxy server (port defaults to 8080)<br />
  -keep                     keep generated files<br />
  -p                   specifies the target package<br />
  -quiet                    suppress wsimport output<br />
  -s             specify where to place generated source files<br />
  -target          generate code as per the given JAXWS specification version.<br />
                            version 2.0 will generate compliant code for JAXWS 2.0 spec.<br />
  -verbose                  output messages about what the compiler is doing<br />
  -version                  print version information<br />
  -wsdllocation   @WebServiceClient.wsdlLocation value</p>
<p></code><br />
<code><br />
Examples:<br />
  wsimport stock.wsdl -b stock.xml -b stock.xjb<br />
  wsimport -d generated http://example.org/stock?wsdl</p>
<p></code></p>
<p>If you get an output like this then we are done with the installation. we can proceed to the next step. Otherwise refer tot he metro site for installing this. For people using jdk6 everything is set by default and they can verify their installation by typing the above command in a terminal<br />
Now we will find a site which provides free web service. I found a site <a href="http://www.webservicex.net/">http://www.webservicex.net/</a> which hosts lot of free web services organized into different categories. For this example lets us take a service which is called  WHOIS web service which is available in the utilities section. The url for this is &#8211; <a href="http://www.webservicex.net/WCF/ServiceDetails.aspx?SID=51">http://www.webservicex.net/WCF/ServiceDetails.aspx?SID=51</a></p>
<p>Now we have to get the WSDL for this web service and compile it using the wsimport utility to get the start-up code for our web service.<br />
To do this open a terminal and type<br />
<code></p>
<p>wsimport -keep -verbose -d whois http://www.webservicex.net/whois.asmx?wsdl</p>
<p></code></p>
<p>here the -keep tells the command to keep the generated java files and the -d is used to specify the output directory. we would get a output like this</p>
<p><code><br />
parsing WSDL...<br />
</code><br />
<code><br />
[WARNING] Ignoring SOAP port "whoisSoap12": it uses non-standard SOAP 1.2 binding.<br />
You must specify the "-extension" option to use this binding.<br />
  line 113 of http://www.webservicex.net/whois.asmx?wsdl<br />
</code><code><br />
[WARNING] ignoring port "whoisHttpGet": no SOAP address specified. try running wsimport with -extension switch.<br />
  line 116 of http://www.webservicex.net/whois.asmx?wsdl<br />
</code><code><br />
[WARNING] ignoring port "whoisHttpPost": no SOAP address specified. try running wsimport with -extension switch.<br />
  line 119 of http://www.webservicex.net/whois.asmx?wsdl<br />
</code><code><br />
generating code...<br />
net/webservicex/GetWhoIS.java<br />
net/webservicex/GetWhoISResponse.java<br />
net/webservicex/ObjectFactory.java<br />
net/webservicex/Whois.java<br />
net/webservicex/WhoisSoap.java<br />
net/webservicex/package-info.java<br />
</code><code><br />
</code></p>
<p>Now go to the directory where these files are created and we can create the client.</p>
<p>Create a java file with the following contents</p>
<p><code><br />
package net.webservicex;<br />
public class WhoisClient{<br />
	public static void main(String args[]){<br />
		Whois whois=new Whois();<br />
		WhoisSoap whoisSoap=whois.getWhoisSoap();<br />
		System.out.println(whoisSoap.getWhoIS("www.google.com"));</p>
<p>	}<br />
}<br />
</code></p>
<p>or still more usable as</p>
<p><code><br />
package net.webservicex;<br />
public class WhoisClient{<br />
	public static void main(String args[]){<br />
		Whois whois=new Whois();<br />
		WhoisSoap whoisSoap=whois.getWhoisSoap();<br />
		System.out.println(whoisSoap.getWhoIS(args[0]));</p>
<p>	}<br />
}<br />
</code></p>
<p>That is it we are donw with our web service client. Now compile the program by setting the classpath to point to the directory that contains the generated class files using the command</p>
<p><code><br />
javac WhoisClient.java<br />
</code></p>
<p>Now the program can be run with by typing this in the terminal</p>
<p><code><br />
java net.webservicex.WhoisClient www.google.com<br />
</code></p>
<p>we would get an output as below</p>
<p><code><br />
Whois Server Version 2.0<br />
</code><code><br />
Domain names in the .com and .net domains can now be registered<br />
with many different competing registrars. Go to http://www.internic.net<br />
for detailed information.<br />
</code><code><br />
WWW.GOOGLE.COM.VN<br />
WWW.GOOGLE.COM.TW<br />
WWW.GOOGLE.COM.TR<br />
WWW.GOOGLE.COM.SA<br />
WWW.GOOGLE.COM.PE<br />
WWW.GOOGLE.COM.MX<br />
WWW.GOOGLE.COM.CO<br />
WWW.GOOGLE.COM.BR<br />
WWW.GOOGLE.COM.AU<br />
WWW.GOOGLE.COM.AR<br />
</code><code><br />
To single out one record, look it up with "xxx", where xxx is one of the<br />
of the records displayed above. If the records are the same, look them up<br />
with "=xxx" to receive a full display for each record.<br />
</code><code><br />
&gt;&gt;&gt; Last update of whois database: Sat, 05 Sep 2009 06:29:11 UTC &lt;&lt;&lt;<br />
</code><code><br />
NOTICE: The expiration date displayed in this record is the date the<br />
registrar&#39;s sponsorship of the domain name registration in the registry is<br />
currently set to expire. This date does not necessarily reflect the expiration<br />
date of the domain name registrant&#39;s agreement with the sponsoring<br />
registrar.  Users may consult the sponsoring registrar&#39;s Whois database to<br />
view the registrar&#39;s reported date of expiration for this registration.<br />
</code><code><br />
TERMS OF USE: You are not authorized to access or query our Whois<br />
database through the use of electronic processes that are high-volume and<br />
automated except as reasonably necessary to register domain names or<br />
modify existing registrations; the Data in VeriSign Global Registry<br />
Services&#39; (&quot;VeriSign&quot;) Whois database is provided by VeriSign for<br />
information purposes only, and to assist persons in obtaining information<br />
about or related to a domain name registration record. VeriSign does not<br />
guarantee its accuracy. By submitting a Whois query, you agree to abide<br />
by the following terms of use: You agree that you may use this Data only<br />
for lawful purposes and that under no circumstances will you use this Data<br />
to: (1) allow, enable, or otherwise support the transmission of mass<br />
unsolicited, commercial advertising or solicitations via e-mail, telephone,<br />
or facsimile; or (2) enable high volume, automated, electronic processes<br />
that apply to VeriSign (or its computer systems). The compilation,<br />
repackaging, dissemination or other use of this Data is expressly<br />
prohibited without the prior written consent of VeriSign. You agree not to<br />
use electronic processes that are automated and high-volume to access or<br />
query the Whois database except as reasonably necessary to register<br />
domain names or modify existing registrations. VeriSign reserves the right<br />
to restrict your access to the Whois database in its sole discretion to ensure<br />
operational stability.  VeriSign may restrict or terminate your access to the<br />
Whois database for failure to abide by these terms of use. VeriSign<br />
reserves the right to modify these terms at any time.<br />
</code><code><br />
The Registry database contains ONLY .COM, .NET, .EDU domains and<br />
Registrars.<br />
</code><code><br />
</code></p>
<p>Here we can give different host names as argument and experiment with it. There are many free web services available at http://www.webservicex.net and almost all of them can be consumed using the same method by using java clients. Thanks for reading</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=45&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2009/09/05/web-services-in-ubuntu-jax-ws/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu : FireFox Fills whole screen</title>
		<link>http://tutysara.wordpress.com/2009/04/27/ubuntu-firefox-fills-whole-screen/</link>
		<comments>http://tutysara.wordpress.com/2009/04/27/ubuntu-firefox-fills-whole-screen/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 16:33:06 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[full screen]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/2009/04/27/ubuntu-firefox-fills-whole-screen/</guid>
		<description><![CDATA[The recent change in my firefox is it always opens in full screen mode hiding the GNOME start bar and the status bar at the bottom. This happened after trying to upgrade some of its features through update manager. The fix for this is simple just go to full screen by pressing F11 and then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=43&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The recent change in my firefox is it always opens in full screen mode hiding the GNOME start bar and the status bar at the bottom. This happened after trying to upgrade some of its features through update manager.<br />
The fix for this is simple just go to full screen by pressing F11 and then pressing F11 again to return to normal mode</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=43&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2009/04/27/ubuntu-firefox-fills-whole-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>Editplus replacement in ubuntu : jEdit</title>
		<link>http://tutysara.wordpress.com/2009/04/16/editplus-replacement-in-ubuntu-jedit/</link>
		<comments>http://tutysara.wordpress.com/2009/04/16/editplus-replacement-in-ubuntu-jedit/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 16:10:48 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Editor]]></category>
		<category><![CDATA[jEdit]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/?p=38</guid>
		<description><![CDATA[I work most of the time on UNIX machines through terminals. We use putty as our terminal client and when we want to edit any files we just copy the file name from putty into Editplus and open it. When I moved to ubuntu I couldn&#8217;t find a replacement for Editplus which allows me to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=38&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I work most of the time on UNIX machines through terminals. We use putty as our terminal client and when we want to edit any files we just copy the file name from putty into Editplus and open it.</p>
<p>When I moved to ubuntu I couldn&#8217;t find a replacement for Editplus which allows me to easily edit my files. There are many editors that I found in ubuntu which has FTP and SFTP support but they all open a file tree and they require us to navigate through the file tree to open the files. We used to navigate through various directory structure using putty and edit files from different locations, It is a lot of pain to navigate through different directories in those editors. This is very bad when the FTP connection becomes slow at peak hours.</p>
<p>I was actually looking at the comparison of various text editors and my quest for a Editplus replacement came to an end when I found <a href="http://www.jedit.org">jedit</a>. It is a wonderful text editor with a host of options and features. It is open source and It is extensible by using various plugins. The plugin which provides support for FTP and SFTP is the FTP plugin. It can be installed by using the <strong>&#8220;Plugin Manger -&gt; Install&#8221;</strong> tab. Once the installation is complete it can be found under <strong>&#8220;Plugins -&gt; FTP&#8221;</strong>. Select the options <strong>&#8220;Open from FTP server&#8230;&#8221;</strong> or <strong>&#8220;Open from secure FTP server</strong>&#8221; fill in the server details along with user name and password and hit the connect button. Once the connection is established the FTP directory becomes a part of the jEdit VFS and all actions that are valid for a normal file can be performed on the FTP files.</p>
<p>To quickly open files for which the path is known we can use the open file macro found under <strong>&#8220;Macros -&gt; Files -&gt; Open Path&#8221;</strong>. We have to prefix the FTP file names with <strong>&#8220;ftp://user@server:21/path/to/file</strong>&#8220;.<br />
Example &#8211; to open a file .profile use <strong>&#8220;ftp://user@server:21/~/.profile&#8221;</strong></p>
<p>We can even write our own macro to ease this process. Macros are stored under the macros directory under installation directory or settings directory. We can write a simple macro to open a file automatically from a FTP server just by giving the path. This macro releaves us by typing <strong>&#8220;ftp://user@server:21/&#8221;</strong> whenever we need to open files from the server. Open a new file in jEdit and type in the following lines</p>
<p><code>void openPath()<br />
{<br />
	String path = Macros.input(view,"Path name:");<br />
	if(null==path||path.length()==0){<br />
		return;<br />
	}<br />
	String prefix="ftp://user@server:21";<br />
	path=prefix+path;<br />
	if(path != null)<br />
		jEdit.openFile(view,path);<br />
}</p>
<p>openPath();</p>
<p></code></p>
<p>and save it under the<strong> macros</strong> directory as <strong>Quick_FTP.bsh.</strong><br />
Now reload the macros list by selecting &#8220;<strong>Macros -&gt; Rescan Macros</strong>&#8221; and our <strong>&#8220;Quick FTP&#8221;</strong> macro can be found. Select our macro and it asks for the path name . just  give the path name to open it from FTP server. This is just a small how to on writing a Macro and demonstrating the robust features of jEdit. You can find lot of Plugins and Macros at the <a href="http://community.jedit.org/">Community</a> and <a href="http://plugins.jedit.org/">Plugin</a> site.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=38&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2009/04/16/editplus-replacement-in-ubuntu-jedit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>Tata Indicom CDMA Epivalley modem in ubuntu</title>
		<link>http://tutysara.wordpress.com/2008/12/22/tata-indicom-cdma-epivalley-modem-in-ubuntu/</link>
		<comments>http://tutysara.wordpress.com/2008/12/22/tata-indicom-cdma-epivalley-modem-in-ubuntu/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 16:56:50 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[modem]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[tata indicom]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/?p=34</guid>
		<description><![CDATA[I recently got a Tata Indicom wireless modem. It is a device from Epivalley and uses the qualcomm chip. It came with a software CD which contained the softwares only for windows. I searched through the forum and I found a very simple way of configuring it in ubuntu. In ubuntu the modem got detected [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=34&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently got a Tata Indicom wireless modem. It is a device from Epivalley and uses the qualcomm chip. It came with a software CD which contained the softwares only for windows. I searched through the forum and I found a very simple way of configuring it in ubuntu. In ubuntu the modem got detected without installing any additional softwares and all I have to do was to set some configuration information for it to connect to the ISP. I had to create some files to put in the settings required by it.</p>
<p>I created the peers file with the  command.</p>
<p><strong>gksudo gedit /etc/ppp/peers/tatagprs</strong></p>
<p>Put these commands starting with a blank line into the file and save it.</p>
<pre>noauth
connect "/usr/sbin/chat -v -f /etc/chatscripts/tatagprs"
debug
/dev/ttyACM0
460800
defaultroute
noipdefault
user "internet"
password "internet"
remotename tata
ipparam tata

usepeerdns</pre>
<p>Next I created the chatscript with the command</p>
<p><strong>gksudo gedit /etc/chatscripts/tatagprs</p>
<p></strong>Then I put these contents into the file and saved it.</p>
<pre>
ABORT   'BUSY'
ABORT   'NO CARRIER'
ABORT   'ERROR'
''      ATZ
OK      ATDT#777
CONNECT ''
</pre>
<p>Now to connect to the internet I will open a terminal and type.</p>
<p><strong>pon tatagprs</strong></p>
<p>and to disconnect I simply type</p>
<p><strong>poff tatagprs or</strong><br />
<strong>poff</strong></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=34&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2008/12/22/tata-indicom-cdma-epivalley-modem-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows XP and Custom Fonts in Ubuntu</title>
		<link>http://tutysara.wordpress.com/2008/12/22/windows-xp-and-custom-fonts-in-ubuntu/</link>
		<comments>http://tutysara.wordpress.com/2008/12/22/windows-xp-and-custom-fonts-in-ubuntu/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 16:39:20 +0000</pubDate>
		<dc:creator>tutysara</dc:creator>
				<category><![CDATA[font]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://tutysara.wordpress.com/?p=32</guid>
		<description><![CDATA[I work with both windows and ubuntu and I edit my documents from both of these OS. I want all my formatting to be consistent but, there are many fonts in windows which are not present in ubuntu. This makes editing word files a boaring task as I have to keep changing the fonts whenever [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=32&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I work with both windows and ubuntu and I edit my documents from both of these OS. I want all my formatting to be consistent but, there are many fonts in windows which are not present in ubuntu. This makes editing word files a boaring task as I have to keep changing the fonts whenever I change the OS or use a font which is available in both the OS. There are  also some web sites which require me to install their font to show up in  correct format.</p>
<p>We can install any font in ubuntu by following these simple steps. To start with we need the font file to install. If it is a fovourite font from Windows just copy the font file from the windows fonts directory into a memory stick and copy it to your home directory in ubuntu. Then open up a terminal.</p>
<ol>
<li>Create a directory to hold our fonts  &#8211; <strong>sudo mkdir -p /usr/local/share/fonts/truetype</strong></li>
<li>Change to the directory we have created &#8211; <strong>sudo cd  /usr/local/share/fonts/truetype</strong></li>
<li>Copy the font file &#8211; <strong>sudo cp ~/&lt;font-file-name&gt;.ttf .</strong></li>
<li>Rebuild font cache<strong> &#8211; sudo fc-cache -f -v</strong></li>
</ol>
<p>We could see that the last command updates the font-cache by printing a lot of messages to the console. We are done. Now open the website which asked for the font, it should open with  correct formatting. If we open a document to edit we could find the font we have just installed from the fonts drop down.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tutysara.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tutysara.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tutysara.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tutysara.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tutysara.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tutysara.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tutysara.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tutysara.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tutysara.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tutysara.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tutysara.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tutysara.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tutysara.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tutysara.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tutysara.wordpress.com&amp;blog=5751631&amp;post=32&amp;subd=tutysara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tutysara.wordpress.com/2008/12/22/windows-xp-and-custom-fonts-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c50f3d45c10e639453d0d4d6202e4ca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tutysara</media:title>
		</media:content>
	</item>
	</channel>
</rss>
