<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CkEMSXw7fSp7ImA9WhRRFEk.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624</id><updated>2011-11-27T16:38:08.205-08:00</updated><category term="linux" /><category term="google+" /><category term="Fedora" /><category term="android" /><category term="HTC" /><category term="Safe Installation and Administration" /><category term="wireless" /><category term="internet" /><category term="ROM" /><category term="Settings" /><category term="CyanogenMod" /><category term="Tips" /><category term="Tmobile G1" /><category term="LiveUsb" /><category term="tether" /><category term="root" /><category term="USB" /><title>All you will need on linux</title><subtitle type="html">Extensive help on Linux installation and administration.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://linuxforpro.blogspot.com/" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>23</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/AllYouWillNeedOnLinux" /><feedburner:info uri="allyouwillneedonlinux" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>AllYouWillNeedOnLinux</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;CEANQn49cSp7ImA9WhRTGUk.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-3742255176868054155</id><published>2011-11-08T23:06:00.000-08:00</published><updated>2011-11-10T08:33:13.069-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-10T08:33:13.069-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Safe Installation and Administration" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>You too can write Unix/Linux scripts</title><content type="html">&lt;br /&gt;
Are you new to the world of Unix/Linux and hitherto have been impressed by the flexibility of the operating system?&lt;br /&gt;
Have you been considering scripting as a very cryptic task reserved for those that earn a living making them?&lt;br /&gt;
Well, it's time you hear the truth! Linux scripting is extremely easy and you too can start exploiting the benefits they offer.&lt;br /&gt;
Without much ado, let's see an example of a script.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#!/bin/bash&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;echo "Hello World"&lt;/span&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
Well that is a full fledged script containing all that is needed in a script, yet it has just two lines.&lt;br /&gt;
The first line&amp;nbsp;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#!/bin/bash&lt;/span&gt;&amp;nbsp;is compulsory in every script and the same across all bash scripts. You might ask what is bash? Bash (Bourne again shell) is the default shell (more like windows command prompt) used in almost all Linux distributions. There are other shells like korn, ash, tcsh and zsh, but lets start with the more common bash shell. So what&amp;nbsp;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#!/bin/bash&lt;/span&gt;&amp;nbsp;does is to call up the particular shell you want to use (in our case, bash).&lt;br /&gt;
&lt;br /&gt;
The second line echo "Hello World" supplies the called up shell with the command echo. echo is a command that works like print in C or C++, printing specified characters on the terminal's display. In our case, it prints the statement Hello World.&lt;br /&gt;
&lt;br /&gt;
Now to create this script, you can use any text manipulating program you like, but it will be highly advantageous to know how to use vi due to its availability on all Linux distribution.&lt;br /&gt;
To create the script using vi, you simply goto the terminal (konsole or command prompt) and after deciding what name to give the script (in this example, I'll use&amp;nbsp;&lt;b&gt;hello.sh&lt;/b&gt;), do the following --&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt;~$vi hello.sh&lt;/span&gt;&lt;br /&gt;
(You will be taken to the vi program screen, press the Insert button on your keyboard to enter the following)&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#!/bin/bash&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;echo "Hello World"&lt;/span&gt;&lt;br /&gt;
(Now press the&amp;nbsp;&lt;b&gt;Esc&lt;/b&gt;&amp;nbsp;button, and type&amp;nbsp;&lt;b&gt;wq&amp;nbsp;&lt;/b&gt;to save and exit, press&amp;nbsp;&lt;b&gt;Enter&lt;/b&gt;)&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-OFGuLkJMXQw/Trv8E918G_I/AAAAAAAABK0/cMn43avr_Pg/s1600/blogshell.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="265" src="http://3.bp.blogspot.com/-OFGuLkJMXQw/Trv8E918G_I/AAAAAAAABK0/cMn43avr_Pg/s400/blogshell.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-IEaydUuLBK8/Trv8Nniaw9I/AAAAAAAABK8/mL4haI46PYo/s1600/blogshell1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="265" src="http://1.bp.blogspot.com/-IEaydUuLBK8/Trv8Nniaw9I/AAAAAAAABK8/mL4haI46PYo/s400/blogshell1.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Congratulations! You've just created your first script. Now lets run it.&lt;br /&gt;
To run the script, you will need to make the&amp;nbsp;&lt;b&gt;hello.sh&lt;/b&gt;&amp;nbsp;file you just created executable, by doing the following&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt;~$chmod +x hello.sh&lt;/span&gt;&lt;br /&gt;
Then to run it just do&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt;~$./hello.sh&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-eVIZMtVtM2Y/Trv8YPDa9NI/AAAAAAAABLE/p3vhKsp-Spc/s1600/blogshell2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="265" src="http://2.bp.blogspot.com/-eVIZMtVtM2Y/Trv8YPDa9NI/AAAAAAAABLE/p3vhKsp-Spc/s400/blogshell2.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Below are samples of scripts you can try&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#!/bin/bash&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# This is a comment and and won't be passed as a command to the shell&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# This script displays the date&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;date&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#!/bin/bash&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# This script displays who's logged on and his home directory&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;who&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;echo HOME&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
The following two examples will require an input data (called parameter)&lt;br /&gt;
&lt;br /&gt;
The scripts will be run like this&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt;$./welcome Michael&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt;$./factorial 10&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#!/bin/bash&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# This script outputs your name among several other words&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;echo "Hello $1, you are welcome to my website"&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#!/bin/bash&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# This script calculate the factorial of any supplied number&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;factorial=1&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;for (( number &amp;nbsp;= &amp;nbsp;1 ; number &amp;lt;= $1 ; number++ ))&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;do&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; factorial=$[ &amp;nbsp;$factorial * $number ]&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;done&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;echo "The factorial of $1 is $factorial"&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;
Feel free to ask any question via the comment box.&lt;/div&gt;
&lt;div&gt;
Thanks!&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-3742255176868054155?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/6Jc3IwV6Y0Zh2bW7WPgwf31HpY0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6Jc3IwV6Y0Zh2bW7WPgwf31HpY0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/6Jc3IwV6Y0Zh2bW7WPgwf31HpY0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6Jc3IwV6Y0Zh2bW7WPgwf31HpY0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/mGVQxJ78A4w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/3742255176868054155/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2011/11/you-too-can-write-unixlinux-scripts.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3742255176868054155?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3742255176868054155?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/mGVQxJ78A4w/you-too-can-write-unixlinux-scripts.html" title="You too can write Unix/Linux scripts" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-OFGuLkJMXQw/Trv8E918G_I/AAAAAAAABK0/cMn43avr_Pg/s72-c/blogshell.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2011/11/you-too-can-write-unixlinux-scripts.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUAMRn48fSp7ImA9WhdSEUo.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-7577317235110706661</id><published>2011-07-20T07:34:00.000-07:00</published><updated>2011-07-20T07:56:27.075-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-20T07:56:27.075-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="google+" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><category scheme="http://www.blogger.com/atom/ns#" term="android" /><title>Google+ on a computer and on android phone, apple's iOS to follow</title><content type="html">Finally, apple approves Google+ app! The &lt;strike&gt;only&lt;/strike&gt;&amp;nbsp;issue is, iPod (regardless of the generation) and iPad are not supported, infact I couldn't search out the app on my iPod 4G.&lt;br /&gt;
&lt;br /&gt;
That aside, in this post I am going to share with you what the Google+ looks like on web via a computer and on android via the android app.&lt;br /&gt;
&lt;br /&gt;
The snapshots below are of the web (computer).&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-Btm-OuT7OAw/Tibcaf670dI/AAAAAAAABG4/RZ1382yo5ww/s1600/Fullscreen+capture+7202011+21145+PM.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="http://4.bp.blogspot.com/-Btm-OuT7OAw/Tibcaf670dI/AAAAAAAABG4/RZ1382yo5ww/s400/Fullscreen+capture+7202011+21145+PM.bmp" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-fpkJfsPBZB0/TibcmMwV0MI/AAAAAAAABG8/B0eof4qSg28/s1600/Fullscreen+capture+7202011+21433+PM.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="http://3.bp.blogspot.com/-fpkJfsPBZB0/TibcmMwV0MI/AAAAAAAABG8/B0eof4qSg28/s400/Fullscreen+capture+7202011+21433+PM.bmp" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/--9WspYQmCQU/TibesQaoxQI/AAAAAAAABHA/DZvEXFRm9fY/s1600/Fullscreen+capture+7202011+21515+PM.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="http://2.bp.blogspot.com/--9WspYQmCQU/TibesQaoxQI/AAAAAAAABHA/DZvEXFRm9fY/s400/Fullscreen+capture+7202011+21515+PM.bmp" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-FWgP2HeKIBg/Tibfwnah99I/AAAAAAAABHE/dse8CGSE9z4/s1600/Fullscreen+capture+7202011+21603+PM.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="http://1.bp.blogspot.com/-FWgP2HeKIBg/Tibfwnah99I/AAAAAAAABHE/dse8CGSE9z4/s400/Fullscreen+capture+7202011+21603+PM.bmp" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-atawXfvsXgA/Tibf6Ae4wJI/AAAAAAAABHI/0Lduc5ahlpk/s1600/Fullscreen+capture+7202011+21536+PM.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="http://2.bp.blogspot.com/-atawXfvsXgA/Tibf6Ae4wJI/AAAAAAAABHI/0Lduc5ahlpk/s400/Fullscreen+capture+7202011+21536+PM.bmp" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;While below are the screenshots from the Google+ android app&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-fC_gYNHvAHk/Tibgt3iipSI/AAAAAAAABHM/5DXPzJxcHUs/s1600/screenshot.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-fC_gYNHvAHk/Tibgt3iipSI/AAAAAAAABHM/5DXPzJxcHUs/s400/screenshot.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-NHncFIoOdy4/Tibgx9WvacI/AAAAAAAABHQ/RmXq-XF7MnQ/s1600/screenshot+%25281%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/-NHncFIoOdy4/Tibgx9WvacI/AAAAAAAABHQ/RmXq-XF7MnQ/s400/screenshot+%25281%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-ZY0qIm2PUtQ/Tibg2Fo43nI/AAAAAAAABHU/8BSHCbFpgQg/s1600/screenshot+%25282%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-ZY0qIm2PUtQ/Tibg2Fo43nI/AAAAAAAABHU/8BSHCbFpgQg/s400/screenshot+%25282%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-RyXuhv-lJvo/Tibg94Je_cI/AAAAAAAABHY/R3hXmE-vN8E/s1600/screenshot+%25283%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-RyXuhv-lJvo/Tibg94Je_cI/AAAAAAAABHY/R3hXmE-vN8E/s400/screenshot+%25283%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-LRWtJ8M8CZk/TibhDsvLNNI/AAAAAAAABHc/T77WyCr2rKI/s1600/screenshot+%25284%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/-LRWtJ8M8CZk/TibhDsvLNNI/AAAAAAAABHc/T77WyCr2rKI/s400/screenshot+%25284%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-CojvMUyA5qU/TibhJMg5P-I/AAAAAAAABHg/_SozLN6jhXw/s1600/screenshot+%25285%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/-CojvMUyA5qU/TibhJMg5P-I/AAAAAAAABHg/_SozLN6jhXw/s400/screenshot+%25285%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-uIEMINSUQIQ/TibhO94uQiI/AAAAAAAABHk/49Ne_-vQ40Y/s1600/screenshot+%25286%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="265" src="http://4.bp.blogspot.com/-uIEMINSUQIQ/TibhO94uQiI/AAAAAAAABHk/49Ne_-vQ40Y/s400/screenshot+%25286%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;I would have loved to provide you the iOS screenshots, but no problem, you can get some here&amp;nbsp;&lt;a href="http://itunes.apple.com/us/app/google/id447119634?ls=1&amp;amp;mt=8"&gt;http://itunes.apple.com/us/app/google/id447119634?ls=1&amp;amp;mt=8&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;And to install it on a jailbroken iPod, just check here&amp;nbsp;&lt;a href="https://www.facebook.com/G00GLEPLUS?sk=wall"&gt;https://www.facebook.com/G00GLEPLUS&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;One last thing, if you live outside US, you won't be able to download the Google+ app from the android market (just like that). There is a workaround thanks to&amp;nbsp;&lt;span class="Apple-style-span" style="color: #444444; font-family: Arial, Helvetica, Tahoma, sans-serif; font-size: 12px; font-weight: bold; line-height: 22px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #444444; font-family: Arial, Helvetica, Tahoma, sans-serif; font-size: 12px; line-height: 22px;"&gt;&lt;span class="author vcard"&gt;&lt;span class="fn"&gt;&lt;a href="http://starblogger.net/install-google-plus-for-android-outside-us.html" rel="author" style="color: #215a6f; font-weight: bold; text-decoration: underline;" title="Posts by Daniel Kopetski"&gt;Daniel Kopetski&lt;/a&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;and an app called MarketEnabler. Install the app (note that it requires your&lt;a href="http://linuxforpro.blogspot.com/2010/09/how-i-flashed-my-htc-dream-t-mobile-g1.html"&gt; phone to be rooted&lt;/a&gt;).&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-F2sEtlMgbQU/TibkkBujyyI/AAAAAAAABHo/AYq0Oqc7DFo/s1600/screenshot+%25287%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-F2sEtlMgbQU/TibkkBujyyI/AAAAAAAABHo/AYq0Oqc7DFo/s400/screenshot+%25287%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Launch it.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-akr3rRfXvlY/TiblawrYGaI/AAAAAAAABHs/hvKk_qOQ3NQ/s1600/screenshot+%25288%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-akr3rRfXvlY/TiblawrYGaI/AAAAAAAABHs/hvKk_qOQ3NQ/s400/screenshot+%25288%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;Select &lt;b&gt;Settings list&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-waEvlqNP3tM/Tiblo4U_UZI/AAAAAAAABHw/xA2tbs9_ekU/s1600/screenshot+%25289%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-waEvlqNP3tM/Tiblo4U_UZI/AAAAAAAABHw/xA2tbs9_ekU/s400/screenshot+%25289%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
Select the T-mobile option for 2 to 3 seconds till a prompt shows up. And&amp;nbsp;&lt;b&gt;fake this provider now&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/--yoiaIpZ60c/TibmBfV3tRI/AAAAAAAABH0/Lst8nSefRA4/s1600/screenshot+%252810%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/--yoiaIpZ60c/TibmBfV3tRI/AAAAAAAABH0/Lst8nSefRA4/s400/screenshot+%252810%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Launch the Market app and search for&lt;b&gt; google+&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-6v8_tgXcMRk/TibmM0B32ZI/AAAAAAAABH4/xM0ouh74EWA/s1600/screenshot+%252811%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-6v8_tgXcMRk/TibmM0B32ZI/AAAAAAAABH4/xM0ouh74EWA/s400/screenshot+%252811%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;The Market will now show you a result like the one below.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/--_HrKBHP-Tk/Tibm96fBw3I/AAAAAAAABH8/sc-IiYQMiPQ/s1600/screenshot+%252812%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/--_HrKBHP-Tk/Tibm96fBw3I/AAAAAAAABH8/sc-IiYQMiPQ/s400/screenshot+%252812%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
Install and start circling!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-7577317235110706661?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/WLnqbMMWDjJIvZ78F7lF5C00aik/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WLnqbMMWDjJIvZ78F7lF5C00aik/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/WLnqbMMWDjJIvZ78F7lF5C00aik/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WLnqbMMWDjJIvZ78F7lF5C00aik/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/qwGsHT_lYMU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/7577317235110706661/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2011/07/google-on-computer-and-on-android-phone.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/7577317235110706661?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/7577317235110706661?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/qwGsHT_lYMU/google-on-computer-and-on-android-phone.html" title="Google+ on a computer and on android phone, apple's iOS to follow" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-Btm-OuT7OAw/Tibcaf670dI/AAAAAAAABG4/RZ1382yo5ww/s72-c/Fullscreen+capture+7202011+21145+PM.bmp" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2011/07/google-on-computer-and-on-android-phone.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEEFQncyeSp7ImA9WhZaFE4.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-7835078993498569577</id><published>2011-06-15T03:29:00.000-07:00</published><updated>2011-06-30T04:16:53.991-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-30T04:16:53.991-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tmobile G1" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><category scheme="http://www.blogger.com/atom/ns#" term="ROM" /><category scheme="http://www.blogger.com/atom/ns#" term="android" /><category scheme="http://www.blogger.com/atom/ns#" term="root" /><category scheme="http://www.blogger.com/atom/ns#" term="CyanogenMod" /><title>Getting the best of a new ROM for your rooted android phone</title><content type="html">Last year I made a post on making your &lt;a href="http://linuxforpro.blogspot.com/2010/10/how-to-make-your-cyanogen-modded-g1.html"&gt;newly rooted phone speedier&lt;/a&gt;. Well, I have just discovered an equally novel way of getting the best out of a new ROM, be it you are upgrading or installing the ROM for the first time.&lt;br /&gt;
&lt;br /&gt;
Since this post will have loads of images, I will go straight to the crust. The whole idea behind this post is hinged on the fact that preserving data and system settings across ROMs makes the phone&amp;nbsp;oftentimes&amp;nbsp;perform less speedy than on the former ROM, even though you just did an upgrade. And that is what I discovered when I upgraded from CyanogenMod 6.0 to CyanogenMod 6.1, when I preserved the system settings the phone was annoyingly sluggish, but when I wiped the system settings (a factory reset) the phone was amazingly speedy. In (near) fact, the homescreen scrolls before I actually swipe! But in this post I will teach you how to factory reset your phone to get the best out of the new ROM and yet not lose a single system/user data, not even a last call record!&lt;br /&gt;
&lt;br /&gt;
As is my usual (self-inconvenienting) habit, I will start from the basics.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;STEP 1&lt;/b&gt;&lt;br /&gt;
You are going to install two free softwares from the android market, they are &lt;b&gt;Titanium Backup root&lt;/b&gt; an&lt;b&gt;d MyBackup Root&lt;/b&gt;.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-1FC3nEwV6Mg/TfhxqLIuHpI/AAAAAAAABDI/34BGQfb_1xY/s1600/screenshot+%252815%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-1FC3nEwV6Mg/TfhxqLIuHpI/AAAAAAAABDI/34BGQfb_1xY/s400/screenshot+%252815%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-54ByClaNKgM/Tfhx3TGZJzI/AAAAAAAABDM/lT3hCLjQSC8/s1600/screenshot+%25287%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-54ByClaNKgM/Tfhx3TGZJzI/AAAAAAAABDM/lT3hCLjQSC8/s400/screenshot+%25287%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;STEP 2&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Run the MyBackup Root, follow the screenshots below. Don't bother backing up Applications and Media. Titanium will do the applications backup and as for your media, they are as safe as your SD card. Note that your phone must be rooted (if you don't know, then it isn't)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-wHXXYcw2nxw/TfhzDPHMFwI/AAAAAAAABDQ/ZSTfG2FSMX8/s1600/screenshot.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-wHXXYcw2nxw/TfhzDPHMFwI/AAAAAAAABDQ/ZSTfG2FSMX8/s400/screenshot.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-soLVi7sADF8/TfhzLUCJ0WI/AAAAAAAABDU/_RR6PK1-3mw/s1600/screenshot+%25281%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-soLVi7sADF8/TfhzLUCJ0WI/AAAAAAAABDU/_RR6PK1-3mw/s400/screenshot+%25281%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-hIEmID_MXJc/TfhzbocrgHI/AAAAAAAABDY/jWADdfrE8TE/s1600/screenshot+%25283%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-hIEmID_MXJc/TfhzbocrgHI/AAAAAAAABDY/jWADdfrE8TE/s400/screenshot+%25283%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-sTc8Ui1zPX8/TfhzkEcmgZI/AAAAAAAABDc/HgF7xfSpy8w/s1600/screenshot+%25284%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-sTc8Ui1zPX8/TfhzkEcmgZI/AAAAAAAABDc/HgF7xfSpy8w/s400/screenshot+%25284%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;(Tick as many as all)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-DXeTW9KCYVo/Tfhzt5I6f9I/AAAAAAAABDg/dpmw4tAiLAQ/s1600/screenshot+%25285%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-DXeTW9KCYVo/Tfhzt5I6f9I/AAAAAAAABDg/dpmw4tAiLAQ/s400/screenshot+%25285%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-KabkVN30yCo/Tfhz1nPLx7I/AAAAAAAABDk/C_CYDwTHos8/s1600/screenshot+%25286%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-KabkVN30yCo/Tfhz1nPLx7I/AAAAAAAABDk/C_CYDwTHos8/s400/screenshot+%25286%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;STEP 3&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Run the Titanium Backup Root, again follow the screen shots below to backup all system and user apps including their data/settings.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-uT8t6s-qaMI/Tfh1ZKBRPjI/AAAAAAAABDo/KiqcK0eQhFY/s1600/screenshot+%252816%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-uT8t6s-qaMI/Tfh1ZKBRPjI/AAAAAAAABDo/KiqcK0eQhFY/s400/screenshot+%252816%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-TBSjSi9Ph54/Tfh1f_nktUI/AAAAAAAABDs/RH5ku5xubJk/s1600/screenshot+%252817%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/-TBSjSi9Ph54/Tfh1f_nktUI/AAAAAAAABDs/RH5ku5xubJk/s400/screenshot+%252817%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;(Press the &lt;b&gt;Menu&lt;/b&gt; button to see the options above)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-sJ5NnzHhB2I/Tfh1mKxf3zI/AAAAAAAABDw/tsJqaK7r4kc/s1600/screenshot+%252818%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-sJ5NnzHhB2I/Tfh1mKxf3zI/AAAAAAAABDw/tsJqaK7r4kc/s400/screenshot+%252818%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-E0GN4yV8qEg/Tfh1qxwEp4I/AAAAAAAABD0/4xQp3LrYk_4/s1600/screenshot+%252819%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-E0GN4yV8qEg/Tfh1qxwEp4I/AAAAAAAABD0/4xQp3LrYk_4/s400/screenshot+%252819%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;STEP 4&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;I'll assume that you already have the new ROM copied unto your SD card. So reboot into recovery (if you don't know how, just shutdown and when the phone is off, press the power button + home button).&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;Do a Nandroid backup! &lt;/b&gt;(You will see the option on the first screen)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Follow the following screen shots to wipe the&lt;b&gt; system and data settings&lt;/b&gt;, &lt;b&gt;wipe cache&lt;/b&gt; and &lt;b&gt;wipe dalvik cache&lt;/b&gt;. Wiping the &amp;nbsp;caches do not have any possible adverse effect on the phone, in fact it is recommended to wipe them often as it releases more system memory for better phone performance (removes junk data from system memory).&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-xfWiQYkHzP0/Tfh4evmXkOI/AAAAAAAABD4/rvGbs9VByqI/s1600/_IGP0492.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-xfWiQYkHzP0/Tfh4evmXkOI/AAAAAAAABD4/rvGbs9VByqI/s400/_IGP0492.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;(Scroll to &lt;b&gt;Wipe&lt;/b&gt;, which is the sixth option)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-DFrwWoB3y5k/Tfh49R_F7-I/AAAAAAAABD8/fqAnTx3gQDU/s1600/_IGP0493.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-DFrwWoB3y5k/Tfh49R_F7-I/AAAAAAAABD8/fqAnTx3gQDU/s400/_IGP0493.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;(Wipe data/system, reset)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-s8c6apTDkTA/Tfh5e3nnL-I/AAAAAAAABEA/EdZBMJnvq_4/s1600/_IGP0494.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-s8c6apTDkTA/Tfh5e3nnL-I/AAAAAAAABEA/EdZBMJnvq_4/s400/_IGP0494.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;(Wipe Cache)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-PfIF5FXhb8A/Tfh50LBcMvI/AAAAAAAABEE/CskNRx6qb84/s1600/_IGP0495.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-PfIF5FXhb8A/Tfh50LBcMvI/AAAAAAAABEE/CskNRx6qb84/s400/_IGP0495.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;(Wipe Dalvik cache)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-0GBYWzW0-_0/Tfh6Lk_EYYI/AAAAAAAABEI/hcflSfwlEoA/s1600/_IGP0498.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-0GBYWzW0-_0/Tfh6Lk_EYYI/AAAAAAAABEI/hcflSfwlEoA/s400/_IGP0498.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-tfW_KDieBDU/Tfh6hpoGILI/AAAAAAAABEM/DzgdWwTv6H0/s1600/_IGP0499.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/-tfW_KDieBDU/Tfh6hpoGILI/AAAAAAAABEM/DzgdWwTv6H0/s400/_IGP0499.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;(Flash the new ROM onto the phone)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;b&gt;STEP 5&lt;/b&gt;&lt;br /&gt;
Again, you will go through the android market to install &lt;b&gt;Titanium Backup root&lt;/b&gt;. Then run it to install all your user apps that you had on the previous ROM (which are already backed up unto your SD card). As soon as you run the Titanium Backup Root, it automatically detects all the apps you backed up in the previous ROM. Just select those you want to install on the new ROM and restore the &lt;b&gt;app + data&lt;/b&gt; (though one at a time). If you want to restore all, just go through the batch tool and &lt;b&gt;Restore all apps with data&lt;/b&gt;.&lt;br /&gt;
Below are the screenshots, scroll down to see that for complete apps restore.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-LQtheKQPnPs/Tfh-YRAga7I/AAAAAAAABEQ/i96705UOrP4/s1600/screenshot+%252821%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-LQtheKQPnPs/Tfh-YRAga7I/AAAAAAAABEQ/i96705UOrP4/s400/screenshot+%252821%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-SIfWymIeFho/Tfh_GEOYSlI/AAAAAAAABEU/zKAq0wfogrc/s1600/screenshot+%252828%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-SIfWymIeFho/Tfh_GEOYSlI/AAAAAAAABEU/zKAq0wfogrc/s400/screenshot+%252828%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-_8716PgBC5g/Tfh_dZ-4ACI/AAAAAAAABEY/c92as-Df4bY/s1600/screenshot+%252829%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/-_8716PgBC5g/Tfh_dZ-4ACI/AAAAAAAABEY/c92as-Df4bY/s400/screenshot+%252829%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;(Scroll to the app you wish to restore and touch it)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-XtkRKgjrHu4/Tfh_mPzOoLI/AAAAAAAABEc/Trsq3pZdIqg/s1600/screenshot+%252822%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-XtkRKgjrHu4/Tfh_mPzOoLI/AAAAAAAABEc/Trsq3pZdIqg/s400/screenshot+%252822%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-jbGOGvY-qgE/Tfh_tjar_II/AAAAAAAABEg/4SBQm_TrCw8/s1600/screenshot+%252823%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-jbGOGvY-qgE/Tfh_tjar_II/AAAAAAAABEg/4SBQm_TrCw8/s400/screenshot+%252823%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-eWw20SPoWbo/Tfh_0xZ2JHI/AAAAAAAABEk/BUoRbdJzHeY/s1600/screenshot+%252825%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-eWw20SPoWbo/Tfh_0xZ2JHI/AAAAAAAABEk/BUoRbdJzHeY/s400/screenshot+%252825%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-ASy3eTtkrYY/Tfh_8MpQGdI/AAAAAAAABEo/ss-odsEjSFM/s1600/screenshot+%252827%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-ASy3eTtkrYY/Tfh_8MpQGdI/AAAAAAAABEo/ss-odsEjSFM/s400/screenshot+%252827%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-ETbbFczojNA/TfiAITCQ3eI/AAAAAAAABEs/bDEpw8T8o94/s1600/screenshot+%252817%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://2.bp.blogspot.com/-ETbbFczojNA/TfiAITCQ3eI/AAAAAAAABEs/bDEpw8T8o94/s400/screenshot+%252817%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-Yu9c3XsV5KQ/TfiAYHPX7hI/AAAAAAAABEw/MdbkuT10zNk/s1600/screenshot+%252820%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-Yu9c3XsV5KQ/TfiAYHPX7hI/AAAAAAAABEw/MdbkuT10zNk/s400/screenshot+%252820%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;STEP 6&lt;/b&gt;&lt;br /&gt;
You must have (re)installed My Backup Root app, so run it and restore your phone data (contacts, call records, SMS, MMS etc).&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-y7WajO-P-8w/TfiBLM-4NqI/AAAAAAAABE0/nv1wlH8DcFU/s1600/screenshot+%25288%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-y7WajO-P-8w/TfiBLM-4NqI/AAAAAAAABE0/nv1wlH8DcFU/s400/screenshot+%25288%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-q4DSYDcpzEc/TfiBT8M8p_I/AAAAAAAABE4/tSRz54PI2T4/s1600/screenshot+%25289%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://1.bp.blogspot.com/-q4DSYDcpzEc/TfiBT8M8p_I/AAAAAAAABE4/tSRz54PI2T4/s400/screenshot+%25289%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-G4Ujeps2FhA/TfiBejL8VYI/AAAAAAAABE8/Gcjku9pgkvQ/s1600/screenshot+%252811%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/-G4Ujeps2FhA/TfiBejL8VYI/AAAAAAAABE8/Gcjku9pgkvQ/s400/screenshot+%252811%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-fuwdVK1fXwM/TfiBoOd5gII/AAAAAAAABFA/kFFGiysovq0/s1600/screenshot+%252812%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-fuwdVK1fXwM/TfiBoOd5gII/AAAAAAAABFA/kFFGiysovq0/s400/screenshot+%252812%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-05gDohAYg6M/TfiBvUmfnPI/AAAAAAAABFE/VE6BSp2Lm94/s1600/screenshot+%252814%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://4.bp.blogspot.com/-05gDohAYg6M/TfiBvUmfnPI/AAAAAAAABFE/VE6BSp2Lm94/s400/screenshot+%252814%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;STEP 7&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Voila! Get yourself your favorite drink and explore your New ROM without carrying over any legacy settings. Enjoy what those developers spent hundreds of hours tweaking to tickle your fantasy!&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-BWqybWnrcQo/TfiDTOkpE_I/AAAAAAAABFI/UuGn6f5JCfA/s1600/screenshot+%252830%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://3.bp.blogspot.com/-BWqybWnrcQo/TfiDTOkpE_I/AAAAAAAABFI/UuGn6f5JCfA/s400/screenshot+%252830%2529.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;Cliche&lt;/b&gt;: If you have any trouble getting by any of the steps, just hit me with a comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-7835078993498569577?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ilumbPeKUMrsSrv_o2xRgD1Sn4U/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ilumbPeKUMrsSrv_o2xRgD1Sn4U/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ilumbPeKUMrsSrv_o2xRgD1Sn4U/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ilumbPeKUMrsSrv_o2xRgD1Sn4U/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/EFPlTxYx-F8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/7835078993498569577/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2011/06/getting-best-of-new-rom-for-your-rooted.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/7835078993498569577?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/7835078993498569577?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/EFPlTxYx-F8/getting-best-of-new-rom-for-your-rooted.html" title="Getting the best of a new ROM for your rooted android phone" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-1FC3nEwV6Mg/TfhxqLIuHpI/AAAAAAAABDI/34BGQfb_1xY/s72-c/screenshot+%252815%2529.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2011/06/getting-best-of-new-rom-for-your-rooted.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEEMRH47eCp7ImA9WhZTGUg.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-1023722854602659980</id><published>2011-03-24T00:40:00.000-07:00</published><updated>2011-03-24T00:44:45.000-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-24T00:44:45.000-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><category scheme="http://www.blogger.com/atom/ns#" term="Fedora" /><title>Vital Linux tips</title><content type="html">I remember the first time I installed Linux, I had never seen Linux on a system before, didn't want to use a virtual machine and I was going to install it on my new laptop. On top of all these, I downloaded Ubuntu 8.04 Alternate CD image, which has no live-booting feature or even a graphic user interface for the installation, everything was console configuration. I spent hours doing the installation, there were over 10 steps (I strongly think) and I knew less than nothing about ext, ext2, ext3, swap space, grub and root. I got terribly stuck at the mount point, swap file and home partition configuration, I wasn't allowed to get to the next step until I had tried nearly all the options. I was sweating inside and couldn't wait to finish and see if the laptop will recognize its power button. Fortunately, God answered my Jonah modelled prayer, the laptop responded when I pressed the power button. It spent so much time on the VAIO logo display, my heart did a short sprint. Finally, it moved on and into the Ubuntu and my feelings were so mixed I couldn't breathe steady. I was extremely happy I had installed a Linux OS and also miserable that I had wiped off my Windows Vista before making a recovery disc.&lt;br /&gt;
&lt;br /&gt;
That was about 3 years ago, though it's not a long time but in computer world it's like half a century. I, definately, have moved ahead and even installed Linux (several distros) over 30 times on over 10 laptops (most probably). So in this post I will share with your two vital Linux tips, or should I say keyboard shortcuts that I have been overusing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;TIP 1&lt;/b&gt;&lt;br /&gt;
Arguably the best feature of Linux (for enthusiasts) is that you can can install tens of full feature softwares on a disk space size Windows will use to install just one of those softwares. Take me for instance, my Fedora is installed on a 4GB partition (inclusive of swap space and Home) and yet I run out of space on my 50GB Windows XP partition nearly every month without ever running out of space on my Fedora (please, don't take this literally). In the end I get to have all the applications I want on my Linux, so it is often a task (medium size one) to search out the the application I want to run. This is where the Tip 1 comes to the rescue.&lt;br /&gt;
I just press the ALT and F2 key (on the keyboard) at the same time, then a small box come on screen and I type the name of the application I want to run. The best part of this is that it guesses the application as I provide the characters of the name, making it more than easy when I'm not sure of the application's name.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-UWy5PVGf_pw/TYrzG_n5yeI/AAAAAAAAA_0/8gm0Waa9oGM/s1600/_IGP0351.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="https://lh3.googleusercontent.com/-UWy5PVGf_pw/TYrzG_n5yeI/AAAAAAAAA_0/8gm0Waa9oGM/s400/_IGP0351.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-dh43JRAPBcs/TYrxjjBUqTI/AAAAAAAAA_k/XtOGsHe1bq4/s1600/tips.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="https://lh5.googleusercontent.com/-dh43JRAPBcs/TYrxjjBUqTI/AAAAAAAAA_k/XtOGsHe1bq4/s400/tips.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-IWgiL7Dab0M/TYrxuE3-Y6I/AAAAAAAAA_o/NYNeINPMpfM/s1600/tips1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="272" src="https://lh5.googleusercontent.com/-IWgiL7Dab0M/TYrxuE3-Y6I/AAAAAAAAA_o/NYNeINPMpfM/s400/tips1.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;TIP 2&lt;/b&gt;&lt;br /&gt;
When we first get to know about Linux, we strongly believe it is all keyboard and blackscreen, no mouse pointer or GUI. Actually it used to be, and can still be (if you make it be). So the easiest (or cheapest) way to make it be is by installing a fancy GUI linux distro and booting into the dummy's galaxy of no more, then go further by using the key combination --&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CTRL + ALT + F1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-mCCTI_prVl0/TYry03zBSjI/AAAAAAAAA_w/tnMMlazfW2A/s1600/_IGP0354.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="https://lh3.googleusercontent.com/-mCCTI_prVl0/TYry03zBSjI/AAAAAAAAA_w/tnMMlazfW2A/s400/_IGP0354.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CTRL + ALT + F2&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-1_7nv2osye4/TYrzf2sMjcI/AAAAAAAAA_4/V7QVrIx0gAk/s1600/_IGP0355.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="https://lh6.googleusercontent.com/-1_7nv2osye4/TYrzf2sMjcI/AAAAAAAAA_4/V7QVrIx0gAk/s400/_IGP0355.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
CTRL + ALT + F3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-SUksE7j-9Cg/TYrz0Xlu42I/AAAAAAAAA_8/suUkF7A27Ro/s1600/_IGP0357.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="https://lh6.googleusercontent.com/-SUksE7j-9Cg/TYrz0Xlu42I/AAAAAAAAA_8/suUkF7A27Ro/s400/_IGP0357.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CTRL + ALT + F4&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-yw04_HI34DY/TYr0OVVGWkI/AAAAAAAABAA/D1wz1i_NOn0/s1600/_IGP0364.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="https://lh6.googleusercontent.com/-yw04_HI34DY/TYr0OVVGWkI/AAAAAAAABAA/D1wz1i_NOn0/s400/_IGP0364.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
CTRL + ALT + F5&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-GYYSIequdtw/TYr0gaJY0tI/AAAAAAAABAE/dx7TBNNOCzk/s1600/_IGP0365.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="https://lh4.googleusercontent.com/-GYYSIequdtw/TYr0gaJY0tI/AAAAAAAABAE/dx7TBNNOCzk/s400/_IGP0365.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
CTRL + ALT + F6&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-PWRsIHe-JgQ/TYr0yxYxVmI/AAAAAAAABAI/LXz4u4yosQ8/s1600/_IGP0366.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="https://lh3.googleusercontent.com/-PWRsIHe-JgQ/TYr0yxYxVmI/AAAAAAAABAI/LXz4u4yosQ8/s400/_IGP0366.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
CTRL + ALT + F7&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-JtnRTIIMA8Q/TYrx4Xkz00I/AAAAAAAAA_s/5zuXUSxM-0A/s1600/tips2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="https://lh3.googleusercontent.com/-JtnRTIIMA8Q/TYrx4Xkz00I/AAAAAAAAA_s/5zuXUSxM-0A/s400/tips2.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
On some distros (like Fedora), the GUI is on F1 not F7. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thanks for reading my blog, if you have any comment feel free to use the comment box. Have a great day.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-1023722854602659980?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-jwbsIyfiPW2OO62zRs1XVvp3Ew/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-jwbsIyfiPW2OO62zRs1XVvp3Ew/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-jwbsIyfiPW2OO62zRs1XVvp3Ew/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-jwbsIyfiPW2OO62zRs1XVvp3Ew/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/VI7V4d2Z_Qc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/1023722854602659980/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2011/03/vital-linux-tips.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/1023722854602659980?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/1023722854602659980?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/VI7V4d2Z_Qc/vital-linux-tips.html" title="Vital Linux tips" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://lh3.googleusercontent.com/-UWy5PVGf_pw/TYrzG_n5yeI/AAAAAAAAA_0/8gm0Waa9oGM/s72-c/_IGP0351.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2011/03/vital-linux-tips.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0cFSX0_fip7ImA9Wx9aE0g.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-8758961898667666777</id><published>2011-03-02T12:55:00.000-08:00</published><updated>2011-03-05T13:03:38.346-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-05T13:03:38.346-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><category scheme="http://www.blogger.com/atom/ns#" term="android" /><title>Android's best kept secret code</title><content type="html">Just recently I noticed there was a flaky 3G service (MTN of course) in my room, but my phone seems too comfortable restricting me to the near useless EDGE service. I decided I was going to force my phone to use the 3G service, so armed with my computer, internet access and google, I searched for a way to do this and I was so resolute I won't mind porting a code meant for a USB modem. But to my utmost surprise, I ended up discovering a code (like those IMEI checking code *#06# or Nokia warranty code *#92702689#). This code is definetely android's best kept secret, the code takes you to a sort of troubleshooting settings screen. It is &lt;b&gt;*#*#4636#*#*&lt;/b&gt; enter it on the dail screen and as you enter the last character * the phone will switch to a new screen, the Testing screen. The image below is a screen shot of what you'll see.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-OwAKzBVTuS4/TW6sFxAW32I/AAAAAAAAA98/gE25I0iOlpc/s1600/_IGP0286.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="190" src="https://lh4.googleusercontent.com/-OwAKzBVTuS4/TW6sFxAW32I/AAAAAAAAA98/gE25I0iOlpc/s400/_IGP0286.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
The Phone information section shows the IMEI number, phone number, service provider network, signal strength, roaming status and even button to run ping test amongst loads of other info. The best part of this section is that you can force the phone to use 3G service, 2G service or any available one with preference on either 3G or 2G! Just sroll down to the Set preferred network type and set the one you want, but it's advisable to set it to one that is compatible with your service provider. Don't set it to &lt;b&gt;CDMA only&lt;/b&gt; when your service provider is GSM and don't set it too &lt;b&gt;WCDMA&lt;/b&gt; (3G) only if you use your phone for heavy phone calls and not data like I do. So for me, anytime I want to do heavy data access activity, I just set it to &lt;b&gt;WCDMA only&lt;/b&gt;, otherwise I leave it at the default of &lt;b&gt;WCDMA preferred&lt;/b&gt;.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-GBTh2vcZVjI/TW6sqIF_kVI/AAAAAAAAA-A/ZEs6Y7ZnO8o/s1600/_IGP0287.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="191" src="https://lh6.googleusercontent.com/-GBTh2vcZVjI/TW6sqIF_kVI/AAAAAAAAA-A/ZEs6Y7ZnO8o/s400/_IGP0287.JPG" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
The other sections are &lt;b&gt;Baterry Information&lt;/b&gt;, &lt;b&gt;Battery history&lt;/b&gt;, &lt;b&gt;Usage history&lt;/b&gt; and &lt;b&gt;Wifi information&lt;/b&gt;. But apart from the battery information section that provides you information about the health of the phone battery, the other sections are of little interest in day to day use.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-8758961898667666777?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/t4ECdCSSG7iVSn7qZjo14il1eSs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/t4ECdCSSG7iVSn7qZjo14il1eSs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/t4ECdCSSG7iVSn7qZjo14il1eSs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/t4ECdCSSG7iVSn7qZjo14il1eSs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/IqkqiVpCb2M" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/8758961898667666777/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2011/03/androids-best-kept-secret-code.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/8758961898667666777?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/8758961898667666777?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/IqkqiVpCb2M/androids-best-kept-secret-code.html" title="Android's best kept secret code" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://lh4.googleusercontent.com/-OwAKzBVTuS4/TW6sFxAW32I/AAAAAAAAA98/gE25I0iOlpc/s72-c/_IGP0286.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2011/03/androids-best-kept-secret-code.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkMEQ3c4eSp7ImA9Wx5UGE4.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-6248593388235370620</id><published>2010-10-23T03:40:00.000-07:00</published><updated>2010-10-23T03:40:02.931-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-23T03:40:02.931-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tmobile G1" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><category scheme="http://www.blogger.com/atom/ns#" term="Settings" /><category scheme="http://www.blogger.com/atom/ns#" term="CyanogenMod" /><title>How to make your cyanogen-modded G1 work real fast</title><content type="html">&lt;div style="margin-bottom: 0in;"&gt;Remember that &lt;a href="http://linuxforpro.blogspot.com/2010/09/how-i-flashed-my-htc-dream-t-mobile-g1.html"&gt;post I made on modding your G1&lt;/a&gt; and how I mentioned that I just recently modded mine. Well after flashing cyanogenmod 6.0.0-DS on my G1 and was stunned by the exquisite (Windows 7 – like) graphics, I was greatly disappointed to find my G1 so slow that navigating to the homescreen became a touch and travel activity. The camera app was greatly frustrating, after taking seconds to open it is only good for snapping still scenes because the pictures are taken seconds after the shutter button has been pressed. Not forgetting the gallery, that one became so useless I started searching the android market for any alternative app. When I try to view the pictures I took with the phone's camera, it takes forever to scroll to the next picture. The phone app wasn't left out, typing phone number has never been this hard, and after all the frustration and the tendency of you forgetting why you wanted to make the call, it takes about 5 seconds for the call to be terminated after you end it.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;Though I must confess that I still preferred my modded G1 state to the unmodded (running android 1.6) state because I now run the latest android version, I can install apps on SD, I can install root (requiring) apps, and I can install apps meant for android 2.1 and above. So I convinced myself that all I have been reading about cyanogenmod, that it is way faster than the stock OS, is true and I am going to make that true fact a reality on my G1. Armed with google, I searched the internet using various words combination to locate any article that might address a similar issue. But I was disappointed to discover that as far as the internet is concerned I am the only one with such issue. After giving up on finding any online assistance, I decided to fiddle with the settings on my modded G1 and one day I struck luck, after changing a couple of things mostly disabling a lot of cpu sucking tweaks, and now my modded G1 is working really fast. So in the following paragraphs I am going to share with you the changes I made on my G1 that made it work real fast.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;From the &lt;b&gt;homescreen&lt;/b&gt;, press the &lt;b&gt;menu&lt;/b&gt; button, tap on &lt;b&gt;Settings&lt;/b&gt;, tap on &lt;b&gt;CyanogenMod settings&lt;/b&gt; and tap on &lt;b&gt;Performance settings&lt;/b&gt;. You will receive a “WARNING: Dragons Ahead!” prompt, don't worry (you won't do anything that will change the performance of your system, potentially for the worse), tap on &lt;b&gt;OK&lt;/b&gt;. Now make sure &lt;b&gt;Use Compcache&lt;/b&gt; is enabled, &lt;b&gt;Use JIT&lt;/b&gt; is enabled and &lt;b&gt;Surface Dithering&lt;/b&gt; is disabled. You can also change the &lt;b&gt;VM heap size&lt;/b&gt; to 24m.  &lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;Now go back to &lt;b&gt;Settings&lt;/b&gt;, tap on &lt;b&gt;ADWLauncher&lt;/b&gt;, tap on &lt;b&gt;Drawer Settings&lt;/b&gt;, disable&lt;b&gt; Animated Drawer&lt;/b&gt; and disable &lt;b&gt;Fade app labels&lt;/b&gt;. Go back to &lt;b&gt;ADWLauncher&lt;/b&gt; settings, tap on &lt;b&gt;Preview settings&lt;/b&gt;, disable &lt;b&gt;Sense previews&lt;/b&gt; and &lt;b&gt;Clean Screen Mode&lt;/b&gt;. Go back to ADWLauncher, tap on &lt;b&gt;System Preferences&lt;/b&gt;, set &lt;b&gt;Scrolling cache &lt;/b&gt;to Low quality.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;With these settings on your G1 it should work really fast.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-6248593388235370620?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/faYwq3xpGUgQzZWOU440M4d4sAM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/faYwq3xpGUgQzZWOU440M4d4sAM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/faYwq3xpGUgQzZWOU440M4d4sAM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/faYwq3xpGUgQzZWOU440M4d4sAM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/wVaQ4tD6Gfk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/6248593388235370620/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2010/10/how-to-make-your-cyanogen-modded-g1.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/6248593388235370620?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/6248593388235370620?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/wVaQ4tD6Gfk/how-to-make-your-cyanogen-modded-g1.html" title="How to make your cyanogen-modded G1 work real fast" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2010/10/how-to-make-your-cyanogen-modded-g1.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUADSH86cCp7ImA9Wx5WFk8.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-268363845827194747</id><published>2010-09-27T15:49:00.000-07:00</published><updated>2010-09-27T15:49:39.118-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-27T15:49:39.118-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="tether" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><category scheme="http://www.blogger.com/atom/ns#" term="internet" /><category scheme="http://www.blogger.com/atom/ns#" term="wireless" /><category scheme="http://www.blogger.com/atom/ns#" term="android" /><category scheme="http://www.blogger.com/atom/ns#" term="root" /><title>How to share  internet access on  your android phone with other phones and computers via wireless connection (wifi)</title><content type="html">&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;I have been hearing about a “Wireless Tether” app for months now and even tried installing it, but to my disappointment it requires me to have&amp;nbsp;&lt;a href="http://linuxforpro.blogspot.com/2010/09/how-i-flashed-my-htc-dream-t-mobile-g1.html"&gt;rooted my phone&lt;/a&gt;&amp;nbsp;so I couldn't use it. Then last week I finally rooted my phone and was amazed by the quality of connectivity I got between my phone and my laptop. And another amazing thing about this wireless tethering than makes it far desirable than the USB tethering (that comes along with the android OS 2.2) is that it allows multiple computers to connect and even phones that have wifi. And you can also create an access list to allow internet access for only selected devices (computers, phones and maybe, printers).&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;So in this post, I am going to explain extensively to you how to use the wireless tether app to share internet access on your android phone with other phones and computers.&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;PREREQUISITE:&lt;/b&gt;&amp;nbsp;A rooted android phone (if you are not sure yours is, then it most probably isn't, but for more info search google)&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;STEP 1&lt;/b&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;The first thing you'll do is to install the Wireless Tether app, go to the android market and search for “Wireless Tether” it has this unique logo of a green wifi signal. Download and install it.&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;STEP 2&lt;/b&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Open the Wireless Tether app, tap the screen close to the middle (where there is the prompt – Press to start tethering) to start the wireless tethering.&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/TKEUPMI8-LI/AAAAAAAAAvk/9JC6S5WJ9H4/s1600/wifi2.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://4.bp.blogspot.com/_8LcwgvFLl94/TKEUPMI8-LI/AAAAAAAAAvk/9JC6S5WJ9H4/s320/wifi2.JPG" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;It will ask for Superuser permissions which you will need to grant and if you prefer, tick the remember this selection. Now don't bother if you do not notice your wifi turning on, as long as the wireless tether notification is showing on your notification bar, you are good to go.&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;STEP 3&lt;/b&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;On your computer (or phone) turn on the wireless adapter and search for wireless networks and you will notice an open network named AndroidTether. Connect to it, you should see “Acquiring network address” and then “Connected”.&lt;/div&gt;&lt;div class="separator" style="clear: both; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_8LcwgvFLl94/TKEd6FO0esI/AAAAAAAAAv8/diN34VL6o3I/s1600/Fullscreen+capture+9242010+65012+PM.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://2.bp.blogspot.com/_8LcwgvFLl94/TKEd6FO0esI/AAAAAAAAAv8/diN34VL6o3I/s320/Fullscreen+capture+9242010+65012+PM.bmp" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&amp;nbsp;Now check the notification bar of your phone, and you should see a notice about a device trying to access your internet. But if this notification doesn't popup on yours, do not worry just follow on. On the the wireless tether app screen, press the menu button to reveal hidden options, tap on Setup, under Security make sure the Enable Access-Control is ticked. Now go back to the app's homescreen and press the menu button again, then tap on Access Control and Tick only the devices you want to grant access.&lt;/div&gt;&lt;div class="separator" style="clear: both; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_8LcwgvFLl94/TKEUX9HOiyI/AAAAAAAAAvo/1GkhUrxQ9_E/s1600/wifi3.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://1.bp.blogspot.com/_8LcwgvFLl94/TKEUX9HOiyI/AAAAAAAAAvo/1GkhUrxQ9_E/s320/wifi3.JPG" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_8LcwgvFLl94/TKEUiAlXJRI/AAAAAAAAAvs/Rph603GquBU/s1600/wifi4.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://1.bp.blogspot.com/_8LcwgvFLl94/TKEUiAlXJRI/AAAAAAAAAvs/Rph603GquBU/s320/wifi4.JPG" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/TKEUtZErdeI/AAAAAAAAAvw/xpkXUIb4fA4/s1600/wifi5.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://4.bp.blogspot.com/_8LcwgvFLl94/TKEUtZErdeI/AAAAAAAAAvw/xpkXUIb4fA4/s320/wifi5.JPG" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;STEP 4&lt;/b&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Go to your internet browser and start surfing the internet, it's as easy as that!&lt;/div&gt;&lt;div class="separator" style="clear: both; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/TKEchxN86bI/AAAAAAAAAv4/lwST8KKqJV4/s1600/Fullscreen+capture+9242010+65358+PM.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://4.bp.blogspot.com/_8LcwgvFLl94/TKEchxN86bI/AAAAAAAAAv4/lwST8KKqJV4/s320/Fullscreen+capture+9242010+65358+PM.bmp" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;TROUBLESHOOTING&lt;/b&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;If you are unable to access the internet on your computer but can on your phone, it's most probably because your wireless adapter has been manually configured. Make sure the wireless adapter IPv4 address is set to automatic and not manual, you can check my&amp;nbsp;&lt;a href="http://www.olafusimichael.com/2009/06/are-unable-to-connect-to-internet-while.html"&gt;former post&lt;/a&gt;&amp;nbsp;on doing this. If you are still experiencing this problem, them go to the internet/netweork settings of your internet browser and make sure you are not connecting via any proxy.&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;If you need any further help or clarification, feel free to ask via comment.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-268363845827194747?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ddP4M13MRl0b9ru1_FaT1Nqkcyo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ddP4M13MRl0b9ru1_FaT1Nqkcyo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ddP4M13MRl0b9ru1_FaT1Nqkcyo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ddP4M13MRl0b9ru1_FaT1Nqkcyo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/75kSvQx6bBg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/268363845827194747/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2010/09/how-to-share-internet-access-on-your.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/268363845827194747?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/268363845827194747?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/75kSvQx6bBg/how-to-share-internet-access-on-your.html" title="How to share  internet access on  your android phone with other phones and computers via wireless connection (wifi)" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_8LcwgvFLl94/TKEUPMI8-LI/AAAAAAAAAvk/9JC6S5WJ9H4/s72-c/wifi2.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2010/09/how-to-share-internet-access-on-your.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYASHs-cSp7ImA9Wx9bE08.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-6538876966974654951</id><published>2010-09-22T14:26:00.000-07:00</published><updated>2011-02-21T14:25:49.559-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-02-21T14:25:49.559-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tmobile G1" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><category scheme="http://www.blogger.com/atom/ns#" term="HTC" /><category scheme="http://www.blogger.com/atom/ns#" term="CyanogenMod" /><title>How I flashed my HTC Dream (T-mobile G1) with CyanogenMod 6.0.0-DS</title><content type="html">Remember that post I made on changing the google account of HTC Dream? Then you will remember me saying “I bought a fairly new G1...”&lt;br /&gt;
&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Well, there was this day I posted a tweet on twitter saying I had issues with data usage of my G1, and a friend (&lt;a href="http://twitter.com/kenniy"&gt;@kenniy&lt;/a&gt;) responded and told me to mod my G1 for optimum performance and recommended Cyanogen Mod. Since that day (which should be 6 months ago), after reading about the benefits, I decided in my mind that I was definitely gonna mod my G1. Then after reading about doing it on several websites and discovered that most of them had very different ways of doing it with a common recurrent warning that my phone might get bricked, I finally gave it a trial 5 months ago. I choose a website that explained very well with detailed snapshots of the process, then I discovered that I couldn't go past the first stage because my G1 has android 1.6 (donut) and the steps will only work for 1.5 (cupcake). I searched for ways of modding my G1 running donut, and the&amp;nbsp;&lt;a href="http://wiki.cyanogenmod.com/index.php?title=Dream:Rooting"&gt;only site&lt;/a&gt;&amp;nbsp;I found that seems to explain it well didn't have a single snapshot and had too much warnings. So I suspended my desire to mod the G1 till when I have used the phone for a considerable time, when I won't be too bothered if the phone bricks.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Well that time came yesterday, I just couldn't put up any longer with the restrictions of the small internal memory and the fact that some applications are now being built for OS 2.1 (eclair) and above. So I braced up and faced my fear, and believe me I'm glad I did. I now have the latest android OS (froyo) running on my G1,can now send files via bluetooth and even operate a swap partition on my phone.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;So in case someone might need a more recent post by a more current user, I decided to share my experience, step by step and with snapshots. So let's go!&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;STEP 1&lt;/b&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;NOTE: I'll assume you are also using the android 1.6 on a G1.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;First you will need to boot into the bootloader of the G1 to record the radio type and ROM type of your G1.&amp;nbsp;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;There are two ROM types,&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;PVT, and&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;DVT.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;There are two radio types also,&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;2.22.23.02&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;2.22.19.26I&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;To boot into this mode you will need to switch off the phone first. Then press the camera button and almost immediately, without leaving the camera button, press the power button. Below is a snapshot of how I did it with my phone. Now note the multicolor screen that comes up and record the ROM type and the radio type of your phone (it will show at the upper part of the phone screen).&lt;/div&gt;&lt;div class="separator" style="clear: both; margin: 0px; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/TJ_vCM8h6QI/AAAAAAAAAvA/LtViEkjkKJE/s1600/S6302657.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://4.bp.blogspot.com/_8LcwgvFLl94/TJ_vCM8h6QI/AAAAAAAAAvA/LtViEkjkKJE/s320/S6302657.JPG" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;STEP 2&lt;/b&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Now you are going to download all the necessary files you will need for the whole modding process.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;First, you will download the&amp;nbsp;&lt;a href="http://www.tap3w0rm.com/hosted/android/magic-dream/nbh/RC29/DREAIMG.nbh"&gt;DREAMING.nbh&lt;/a&gt;&amp;nbsp;RC29(US) or&amp;nbsp;&lt;a href="http://www.tap3w0rm.com/hosted/android/magic-dream/nbh/RC7/DREAIMG.nbh"&gt;DREAIMG.nbh&lt;/a&gt;&amp;nbsp;RC7(Europe) file that will downgrade the android 1.6 to 1.0 which is necessary for the whole modding process (actually you won't be able to root the phone without this downgrade, that is why it is necessary).&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;span class="Apple-style-span" style="font-family: inherit;"&gt;Secondly, you will&amp;nbsp;&lt;/span&gt;download&amp;nbsp;&lt;a href="http://files.androidspin.com/downloads.php?dir=amon_ra/RECOVERY/&amp;amp;file=recovery-RA-dream-v1.7.0-cyan.img"&gt;Amon_Ra's Recovery&lt;/a&gt;&amp;nbsp;which is the actual rooting image file.&lt;span class="Apple-style-span" style="font-family: Times,'Times New Roman',serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Thirdly, you will download the appropriate radio for your G1,&amp;nbsp;&lt;a href="http://www.mediafire.com/?59idg6zo0if"&gt;2.22.23.02&lt;/a&gt;&amp;nbsp;or&lt;a href="http://sapphire-port-dream.googlecode.com/files/ota-radio-2_22_19_26I.zip"&gt;&amp;nbsp;2.22.19.26I&lt;/a&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Fourthly, you will download the appropriate SPL file, depending on the ROM type of your G1. If your ROM is PVT,&amp;nbsp;&lt;a href="http://sapphire-port-dream.googlecode.com/files/spl-signed.zip"&gt;Haytou's SPL&lt;/a&gt;&amp;nbsp;is recommended. But if your ROM is DVT, you have to make do with&amp;nbsp;&lt;a href="http://android-roms.googlecode.com/files/splhard1_update_signed.zip"&gt;HardSPL&lt;/a&gt;&amp;nbsp;to avoid bricking your G1.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Finally, you will now download the&amp;nbsp;&lt;a href="http://mirror.kanged.net/cm/stable/update-cm-6.0.0-DS-signed.zip"&gt;Cyanogen Mod 6.0.0-DS&lt;/a&gt;&amp;nbsp;and the&amp;nbsp;&lt;a href="http://mirror.kanged.net/gapps/gapps-mdpi-tiny-20100926-signed.zip"&gt;tiny gapps&lt;/a&gt;&amp;nbsp;files (you need this google apps zip file to pre-install the market app during the installation the Cyanogen Mod, this will be very useful)&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;STEP 3&lt;/b&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Get a MicroSD card (the small external memory card the phone uses), format it with FAT32. Copy only the DREAMING.nbh file into it.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Power off the G1 and like you did earlier on in step 1, boot into the bootloader. Follow the instructions to apply the DREAMING.ngh which will downgrade the phone to android 1.0. Now press MENU, HOME and POWER buttons all at once to power off.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;STEP 4&lt;/b&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Put a SIM that has active data plan or GPRS/EDGE/3G enabled (with enough money in it to access the internet). Power on the G1, it will show you a screen with the Emergency call dial button. Press the MENU button to reveal APNs, touchclick it and create a new APN entering the correct APN setting for your SIM Network provider. If your Provider is already listed in the APN list, do not bother creating a new APN. Now return back to the initial screen, touch the middle of the screen and configure your google account to gain access to other functionalities.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Press the home button and slide the phone to reveal the keyboard. Press ENTER twice,&amp;nbsp;type&amp;nbsp;&lt;i&gt;telnetd&lt;/i&gt;&amp;nbsp;and press ENTER (do not bother about the contact screen that comes up and the apparent nothing that happens after pressing ENTER).&amp;nbsp;Go to the market app and install&lt;b&gt;&amp;nbsp;telnet by clockworld&lt;/b&gt;,&amp;nbsp;launch the telnet app you just installed and make sure&amp;nbsp;&lt;b&gt;localhost&lt;/b&gt;&amp;nbsp;is in the first textbox and&amp;nbsp;&lt;b&gt;23&lt;/b&gt;&amp;nbsp;in the small textbox to the right. Press ENTER.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;STEP 5&lt;/b&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Remember the Amon_Ra's Recovery file you downloaded? Rename it to&amp;nbsp;&lt;b&gt;recovery.img&lt;/b&gt;&amp;nbsp;and copy it to the MicroSD card and disconnect the phone from the computer. Now open the telnet application you installed earlier on and type the following &amp;nbsp;&lt;i&gt;flash_image recovery /sdcard/recovery.img&lt;/i&gt;&amp;nbsp;&amp;nbsp;and once this is successful you will notice # # on the screen showing below the command you typed. If you got a "permission denied" prompt, type&amp;nbsp;&lt;i&gt;su flash_image recovery /sdcard/recovery.img&lt;/i&gt;&amp;nbsp;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;STEP 6&lt;/b&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Power off the phone and remove the MicroSD card, copy the radio file you downloaded (2.22.23.02 or 2.22.1.26I),  the SPL file (a .zip file), the Cyanogen Mod 6.0.0-DS (mostly likely named as update-cm-6.0.0-DS-signed.zip)and the gapps file into the card.&amp;nbsp;Replace the memory card.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;STEP 7&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; margin: 0px; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/TJ_yMUPa_1I/AAAAAAAAAvQ/MWt1a-7LZH0/s1600/S6302662.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://3.bp.blogspot.com/_8LcwgvFLl94/TJ_yMUPa_1I/AAAAAAAAAvQ/MWt1a-7LZH0/s320/S6302662.JPG" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;You will now boot into the recovery mode by pressing the home and power buttons at the same time.&lt;/div&gt;&lt;div class="separator" style="clear: both; margin: 0px; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_8LcwgvFLl94/TJ_3bOShECI/AAAAAAAAAvY/5OB4mEHdOt0/s1600/S6302664.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://1.bp.blogspot.com/_8LcwgvFLl94/TJ_3bOShECI/AAAAAAAAAvY/5OB4mEHdOt0/s320/S6302664.JPG" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Once the phone has boot into the recovery mode, scroll to "apply zip from sdcard" and select the radio file, press the home button to confirm. The phone will reboot during the installation, once the installation is  complete select the reboot option (first on the list).&lt;br /&gt;
Now boot into the recovery mode again by pressing the home and power  buttons at the same time, scroll to "apply zip from sdcard" and select  the SPL zip file, press the home button to confirm. Again you will be  requested to reboot, select the reboot option to complete the  installation.&amp;nbsp; &lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Again boot the phone into the recovery mode, select the "apply zip from  sdcard" and select the Cyanogen Mod 6.0.0-DS zip file, press the home  button to confirm and the phone will say update successful. Now scroll  again to the "apply zip from sdcard" and select the gapps zip file,  press the home button to confirm. Then reboot the phone and power off,  if it boots back to the recovery mode (power off is the last option on  the recovery mode list).&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Now you are through installing the Cyanogen Mod 6.0.0-DS which is built on the android 2.2 (code named froyo). Just power on your phone and it will now boot into the new OS that makes your phone operate like a linux computer with the much needed root permission (or superuser capability).&lt;/div&gt;&lt;div class="separator" style="clear: both; margin: 0px; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/TJ_1I5LbwEI/AAAAAAAAAvU/8yTAATJOd2A/s1600/S6302665.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://3.bp.blogspot.com/_8LcwgvFLl94/TJ_1I5LbwEI/AAAAAAAAAvU/8yTAATJOd2A/s320/S6302665.JPG" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;&lt;b&gt;TROUBLESHOOTING&lt;/b&gt;&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;Just like it happened to me, if you notice that the phone after booting to the new OS only shows the lock screen and a black screen with notification bar, and does not detect network or show home screen. Just reboot into the recovery mode and select wipe, apply all the wipe options (wipe data/factory rest, wipe cache and wipe Dalvik-cache) and reboot. That should solve the problem, I don't know why it happened to me but I suspect it's that my cache is full and the /system is also full. But whatever the reason is, wiping did resolve it.&lt;/div&gt;&lt;div style="margin: 0px 0px 0in;"&gt;If you need any further clarification or help, feel free to use the comment. I will try to monitor this post's comment as often as possible.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-6538876966974654951?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Zu7Pdjfe1zIlshjpwCaYmmGOu1w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Zu7Pdjfe1zIlshjpwCaYmmGOu1w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Zu7Pdjfe1zIlshjpwCaYmmGOu1w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Zu7Pdjfe1zIlshjpwCaYmmGOu1w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/IbA9eneaoco" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/6538876966974654951/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2010/09/how-i-flashed-my-htc-dream-t-mobile-g1.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/6538876966974654951?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/6538876966974654951?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/IbA9eneaoco/how-i-flashed-my-htc-dream-t-mobile-g1.html" title="How I flashed my HTC Dream (T-mobile G1) with CyanogenMod 6.0.0-DS" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_8LcwgvFLl94/TJ_vCM8h6QI/AAAAAAAAAvA/LtViEkjkKJE/s72-c/S6302657.JPG" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2010/09/how-i-flashed-my-htc-dream-t-mobile-g1.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak4HSXY-eip7ImA9Wx5WFk4.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-3848763676044556388</id><published>2010-05-03T10:55:00.000-07:00</published><updated>2010-09-27T18:55:38.852-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-27T18:55:38.852-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tmobile G1" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><category scheme="http://www.blogger.com/atom/ns#" term="HTC" /><category scheme="http://www.blogger.com/atom/ns#" term="android" /><title>How to change the gmail account on HTC  android phone</title><content type="html">I recently bought a fairly new HTC G1 after a long tiring search for android phones at Computer village, Ikeja (Lagos, Nigeria). Most of the phone dealers have only windows mobile phones, iPhone and Blackberry, but no android phone. Just when I was about giving up, I came across a dealer that had a fairly new HTC G1 (he called it London-used but it's obviously from USA). Anyway, I bought the phone and believe me if not for the Motorola charger that came with it I would have easily believed it's new.&lt;br /&gt;
Since the phone isn't new and the former owner did not do a factory reset and had the phone registered with his gmail account. I had to change the gmail account to mine to be able to access the android market (the phone requires me to enter his account password to access the market). I didn't want to do a factory reset so as not lose any application installed by the former owner. Actually, I have an aversion for factory resets because of the painful data loss they often cause.&lt;br /&gt;
After searching the internet for another way of changing the gmail account that will not involve any multiple system settings change. I came across a method that worked fine and is porobably the only alternative method.&lt;br /&gt;
So outlined in a detailed manner below is this method of changing the gmail account --&lt;br /&gt;
Goto &lt;b&gt;Settings&lt;/b&gt;, &lt;b&gt;Applications&lt;/b&gt;, &lt;b&gt;Manage applications&lt;/b&gt;, and browse to &lt;b&gt;Gmail storage&lt;/b&gt;, select &lt;b&gt;Clear Data&lt;/b&gt;. Also goto &lt;b&gt;Gmail&lt;/b&gt; and select &lt;b&gt;Clear Data&lt;/b&gt;. Finally goto &lt;b&gt;Google Apps&lt;/b&gt; and select &lt;b&gt;Clear Data&lt;/b&gt;.&lt;br /&gt;
Now go back to&lt;b&gt; Settings&lt;/b&gt;, and select &lt;b&gt;Data Synchronization&lt;/b&gt;. You will be prompted to setup a new account. Enter your gmail account and password. So now, you will be able to synch your gmail on your phone and also access the android market. You will also receive a mail from the android team welcoming you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-3848763676044556388?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YVjbKpfWfiNXx0tNMfuy7hpUVWI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YVjbKpfWfiNXx0tNMfuy7hpUVWI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YVjbKpfWfiNXx0tNMfuy7hpUVWI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YVjbKpfWfiNXx0tNMfuy7hpUVWI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/E3AUR7CnP24" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/3848763676044556388/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2010/05/how-to-change-gmail-account-on-htc.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3848763676044556388?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3848763676044556388?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/E3AUR7CnP24/how-to-change-gmail-account-on-htc.html" title="How to change the gmail account on HTC  android phone" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2010/05/how-to-change-gmail-account-on-htc.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkEEQ3g9eCp7ImA9WxBWFks.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-8409710500168740438</id><published>2010-01-26T00:53:00.000-08:00</published><updated>2010-02-08T13:30:02.660-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-08T13:30:02.660-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>How to automatically change to directories with very long full path using easy to remember aliases</title><content type="html">My laptop's 160GB hard disk is partitioned into more than six logical partitions and I multi-boot Windows 7, Windows XP, Kubuntu, Mandriva and Fedora. So you can imagine how I must have butchered the 160GB. I have managed to logically organize my files on the system, I put my iso image files in Kubuntu and Mandriva, my documents are in Windows XP and Windows 7. This makes it inevitable for me to frequently access documents on the Windows partitions and also copy documents to them while working in Linux. Occasionally, while working in commandline I need to mount images on the Kubuntu partition or read a file I saved in the Windows partition. Unfortunately, Fedora has a terrible way of naming my partitions that are not part of its filesystem, for example the full path to my Windows XP partition is /media/8E9C64209C640555 and the one for my Windows 7 partition is /media/925C181C5C17F9A5. After getting sick of having to copy and paste the path, I decided to do something permanent that will help me get round the problem.&lt;br /&gt;
Well what I eventually did was to add a four aliases to automatically change to any partition without bothering about its full path. All I did was to edit the /home/freeman/.bashrc file, I appended the following --&lt;br /&gt;
&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;# User specific aliases and functions&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;alias kubuntu='cd /media/0f83fb7e-7810-489d-ad1d-1cfeb50e1ff2'&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;alias mandriva='cd /media/d06a0246-9501-4e55-8162-146e500cd2a0'&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;alias windowsxp='cd /media/8E9C64209C640555'&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;alias windows7='cd /media/925C181C5C17F9A5'&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/S16rJU5eT3I/AAAAAAAAAp4/pnGO05kLIT4/s1600-h/cd2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="225" src="http://4.bp.blogspot.com/_8LcwgvFLl94/S16rJU5eT3I/AAAAAAAAAp4/pnGO05kLIT4/s320/cd2.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Voila! Now everytime I enter windowsxp on my command prompt, I am automatically switched to the Windows XP partition.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/S16rYrtkPbI/AAAAAAAAAqA/722-vEivm1w/s1600-h/cd1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://3.bp.blogspot.com/_8LcwgvFLl94/S16rYrtkPbI/AAAAAAAAAqA/722-vEivm1w/s320/cd1.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-8409710500168740438?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aOf38LmgVw-37uos_NPVxlRUoZA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aOf38LmgVw-37uos_NPVxlRUoZA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/aOf38LmgVw-37uos_NPVxlRUoZA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aOf38LmgVw-37uos_NPVxlRUoZA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/V1baAEZuZzs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/8409710500168740438/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2010/01/how-to-automatically-change-to.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/8409710500168740438?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/8409710500168740438?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/V1baAEZuZzs/how-to-automatically-change-to.html" title="How to automatically change to directories with very long full path using easy to remember aliases" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_8LcwgvFLl94/S16rJU5eT3I/AAAAAAAAAp4/pnGO05kLIT4/s72-c/cd2.png" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2010/01/how-to-automatically-change-to.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMFQXo7eCp7ImA9WxBWFks.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-3449455704878430738</id><published>2010-01-25T04:11:00.000-08:00</published><updated>2010-02-08T13:26:50.400-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-08T13:26:50.400-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>Interactive script to mount iso images</title><content type="html">My laptop's DVD drive is bad, so I prefer copying images of CD/DVDs through a friends computer DVD drive and pasting it in my cd_image folder (a special folder I created for just iso images). &lt;br /&gt;
The command I use for copying CD/DVD images is&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;dd if=/dev/sr0 of=/home/freeman/cd_image/cdname.iso&lt;/div&gt;This command is pretty straight forward,&amp;nbsp; the &lt;b&gt;dd &lt;/b&gt;stands for disk dump, &lt;b&gt;if&lt;/b&gt; stands for input file and &lt;b&gt;of&lt;/b&gt; stands for output file. I do not have problem with remembering the command. But I often have problem remembering the exact mount options for iso file (which is the cd image file).&lt;br /&gt;
So I decided to write a shell script for interactively mounting any iso image in any mount point point (which is often an empty folder).&lt;br /&gt;
The following is a step-wise description of the shell creation&lt;br /&gt;
&lt;br /&gt;
STEP 1&lt;br /&gt;
I created a special folder in my home folder and named it shell, using the following command&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;[freeman@freeman ~]$ mkdir shell&lt;/div&gt;I changed directory to the shell subdirectory I just created&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;[freeman@freeman ~]$ cd shell&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/S12fLR3TXVI/AAAAAAAAApY/cvLQl8cPnBc/s1600-h/shell1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="278" src="http://4.bp.blogspot.com/_8LcwgvFLl94/S12fLR3TXVI/AAAAAAAAApY/cvLQl8cPnBc/s400/shell1.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
STEP 2&lt;br /&gt;
I created a new file (named it mountiso) and entered the script in in using vi editor&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;[freeman@freeman shell]$ vi mountiso&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;#!/bin/bash&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;#This shell is for mounting cd images from anywhere to any empty folder&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;echo -n "Enter the full path of the iso image: "&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;read image&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;echo -n "Enter the full path of the mount point, an empty folder: "&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;read folder&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;mount -t iso9660 -o loop $image $folder&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;exit 0&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/S12fCX6vqaI/AAAAAAAAApI/wJ6X3QRXU4I/s1600-h/shell2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://4.bp.blogspot.com/_8LcwgvFLl94/S12fCX6vqaI/AAAAAAAAApI/wJ6X3QRXU4I/s400/shell2.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
STEP 3&lt;br /&gt;
I made the mountiso file executable by changing it's file permissions&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;[freeman@freeman shell]$ chmod a+x mountiso&lt;/div&gt;I also included the /home/freeman/shell path in the PATH environment variable&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;[freeman@freeman shell]$ PATH=$PATH:/home/freeman/shell&lt;/div&gt;To make is global, I exported the new PATH&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;[freeman@freeman shell]$ export PATH&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/S12fIsMFAuI/AAAAAAAAApQ/emJYptlYfxw/s1600-h/shell3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://3.bp.blogspot.com/_8LcwgvFLl94/S12fIsMFAuI/AAAAAAAAApQ/emJYptlYfxw/s400/shell3.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
So that was all, to run the new script I just enter mountiso (regardless of my current working directory) and enter both the image location and mount point without bothering about the mount options.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-3449455704878430738?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QIUmrdXsThqp05OfSh2_eKBLjr4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QIUmrdXsThqp05OfSh2_eKBLjr4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QIUmrdXsThqp05OfSh2_eKBLjr4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QIUmrdXsThqp05OfSh2_eKBLjr4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/yeAMnQYFZrs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/3449455704878430738/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2010/01/interactive-script-to-mount-iso-images.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3449455704878430738?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3449455704878430738?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/yeAMnQYFZrs/interactive-script-to-mount-iso-images.html" title="Interactive script to mount iso images" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_8LcwgvFLl94/S12fLR3TXVI/AAAAAAAAApY/cvLQl8cPnBc/s72-c/shell1.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2010/01/interactive-script-to-mount-iso-images.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUQMQH4yeyp7ImA9WxBXFE8.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-3234137677645285161</id><published>2009-12-26T14:43:00.000-08:00</published><updated>2010-01-25T05:49:41.093-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-25T05:49:41.093-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>How to use ZTE MF627 USB modem on linux</title><content type="html">I just bought a ZTE MF627 USB modem (it supports GPRS/EDGE/3G/HSDPA) to serve as my internet highway, the stuff works great with little configuration on Windows. Actually it came with MTN Nigeria internet settings but I could use it with other networks via Windows Dial-up.&lt;br /&gt;
The major problem was that in my Ubuntu and Fedora linux, I just could not use it. When I enter dmesg at the Commandline terminal, it detects it as a CD drive.&lt;br /&gt;
So after seeking lots of help online I finally got a way to go round the issue.&lt;br /&gt;
In my windows XP, the device manager alloted COM19 to the modem. I went straight to hyperterminal and connected to COM19 using the usual "8-N-1 None" settings, you can put the baudrate at any value. In the terminal I simply entered&lt;br /&gt;
AT+ZOPRT=5&lt;br /&gt;
AT+ZCDRUN=8&lt;br /&gt;
This will change the default mode of the modem from the CD drive to the modem mode. But you will not be able to install the software that came preloaded into the device, so if you want to use it on a new windows system, you might have to run AT+ZCDRUN=9 to enable you install the MTN or any other proprietary software that came with the modem.&lt;br /&gt;
After that your Linux system will now identify the modem and make it available as /dev/ttyUSB2 or /dev/ttyUSB3 ( I think /dev/ttyUSB2 if you do not have 3G or HSDPA and /dev/ttyUSB3 if you have the service on the network). You can now use your preferred Point-to-Point Protocol connection tool.&lt;br /&gt;
If you are using Fedora 11 or 12, you can go to System, Preference and Network connection for very easy configuration of the modem.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_8LcwgvFLl94/SzaQPK4F0xI/AAAAAAAAAiw/REZJNHaa5ek/s1600-h/networkconn.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://2.bp.blogspot.com/_8LcwgvFLl94/SzaQPK4F0xI/AAAAAAAAAiw/REZJNHaa5ek/s400/networkconn.png" width="233" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/SzaQXPKHlwI/AAAAAAAAAi4/Ch78Hhm-I_0/s1600-h/addmodemsett.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="232" src="http://4.bp.blogspot.com/_8LcwgvFLl94/SzaQXPKHlwI/AAAAAAAAAi4/Ch78Hhm-I_0/s400/addmodemsett.png" width="400" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/SzaQhgIgKMI/AAAAAAAAAjA/E8bZzwItduA/s1600-h/Editing+MTN.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://3.bp.blogspot.com/_8LcwgvFLl94/SzaQhgIgKMI/AAAAAAAAAjA/E8bZzwItduA/s400/Editing+MTN.png" width="337" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;Just click on Mobile Broadband and Add.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_8LcwgvFLl94/SzaQnkuipSI/AAAAAAAAAjI/VRZgPdp314M/s1600-h/end+of+all.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://1.bp.blogspot.com/_8LcwgvFLl94/SzaQnkuipSI/AAAAAAAAAjI/VRZgPdp314M/s400/end+of+all.png" width="384" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&amp;nbsp;Enter the internet settings as given you by the network provider, in the PPP setting untick all the compression methods, and the allowed authentication method should be PAP alone (except if your provider specifies any additional one).&lt;br /&gt;
With this done, you are ready to go, just click on the network icon on the task bar and choose the network you just configured.&lt;br /&gt;
For Ubuntu, mandriva and other distros including fedora, you can use any PPP tool -- gnome-ppp, kppp and wvdial. Just specify the right device address.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-3234137677645285161?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YycGoPHlC_2JU8O1ejGEycy3kV0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YycGoPHlC_2JU8O1ejGEycy3kV0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YycGoPHlC_2JU8O1ejGEycy3kV0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YycGoPHlC_2JU8O1ejGEycy3kV0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/2bCh9LVO3pY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/3234137677645285161/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/12/how-to-use-zte-mf627-usb-modem-on-linux.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3234137677645285161?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3234137677645285161?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/2bCh9LVO3pY/how-to-use-zte-mf627-usb-modem-on-linux.html" title="How to use ZTE MF627 USB modem on linux" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_8LcwgvFLl94/SzaQPK4F0xI/AAAAAAAAAiw/REZJNHaa5ek/s72-c/networkconn.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/12/how-to-use-zte-mf627-usb-modem-on-linux.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0cCQnw4eSp7ImA9WxBSGEs.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-649323930867359193</id><published>2009-11-30T02:47:00.000-08:00</published><updated>2009-12-26T15:11:03.231-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-26T15:11:03.231-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>How to use dial up point-to-point protocol to connect to the internet via a GPRS mobile phone</title><content type="html">&lt;div style="margin-bottom: 0cm;"&gt;I am sorry the title looks clumsily long, but that is to show that I am going to very much explain how you can access the internet using dial up on a Linux OS through an application called KPPP.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;I assume that you already have the application installed, if you don't have you can view my previous post on installing software in linux.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;STEP 1&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Launch the kppp software, a user inteface like the one below will come up&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_8LcwgvFLl94/SxOfbRO3r3I/AAAAAAAAAhQ/gzsb1Lm96CI/s1600/kppp.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_8LcwgvFLl94/SxOfbRO3r3I/AAAAAAAAAhQ/gzsb1Lm96CI/s320/kppp.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Don't mind the entries in the login ID and password, in this tutorial I will create a new account.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;STEP 2&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Click on the configuration button below, a pop up dialogue box will come up as show below.&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/SxOgAC45IfI/AAAAAAAAAhY/fczLt3REPhc/s1600/kppp1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://3.bp.blogspot.com/_8LcwgvFLl94/SxOgAC45IfI/AAAAAAAAAhY/fczLt3REPhc/s320/kppp1.png" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Click on the new button at the middle right side, a popup box like the one shown below.&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/SxOgHcnFZxI/AAAAAAAAAho/cO2BMK-cmow/s1600/kppp3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://4.bp.blogspot.com/_8LcwgvFLl94/SxOgHcnFZxI/AAAAAAAAAho/cO2BMK-cmow/s320/kppp3.png" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Click on Manual Setup, another popup will replace this current one, as shown below&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/SxOha54-N1I/AAAAAAAAAio/QIjJNnUqm_0/s1600/kppp2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_8LcwgvFLl94/SxOha54-N1I/AAAAAAAAAio/QIjJNnUqm_0/s320/kppp2.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Enter the name you want to give this connection. Click on Add button, put *#99# as the phone number. Leave the other settings at the default.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Click on Modems right beside Accounts on the top menu bar, click on new .  &lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/SxOgLlCXXrI/AAAAAAAAAhw/vEgrKoF5QXI/s1600/kppp4.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_8LcwgvFLl94/SxOgLlCXXrI/AAAAAAAAAhw/vEgrKoF5QXI/s320/kppp4.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;In the new dialogue box shown below, enter the access point name as the modem name, enter the port of the phone connection and leave the other settings as they are.&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_8LcwgvFLl94/SxOgVtlGKjI/AAAAAAAAAiI/-th7-mEtXRo/s1600/kppp7.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://2.bp.blogspot.com/_8LcwgvFLl94/SxOgVtlGKjI/AAAAAAAAAiI/-th7-mEtXRo/s320/kppp7.png" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;STEP 3&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;If you want to use a bluetooth connection, plug the bluetooth dongle to the computer, go to the Konsole commandline tool and enter the folloswing commands&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;$ sudo su&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;# hcitool scan  &lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;(copy the device hardware address of the phone)&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;#rfcomm connect 2 00.00.00.11.AA.FF (replace with the copied address)&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Make sure you speciy /dev/rfcomm2 in the Modem device setting, actually you can use rfcomm1 or rfcomm3 just by replacing the 2 in “rfcomm connect 2” with the appropraite number.&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/SxOgWz4yH8I/AAAAAAAAAiQ/CZl6TNtX_44/s1600/kppp8.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_8LcwgvFLl94/SxOgWz4yH8I/AAAAAAAAAiQ/CZl6TNtX_44/s320/kppp8.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Now go back to the kppp, after saving the settings by selecting ok, in the main kppp dialogue box enter the login ID or username and password. If you conncetion doesn't need one just put “wap” for both as kppp will not connect without them since you will be connecting using PAP (Don't worry about understanding, just do it and you'll be alright).&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_8LcwgvFLl94/SxOgYN6EgtI/AAAAAAAAAiY/LciIiGu9bF8/s1600/kppp9.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_8LcwgvFLl94/SxOgYN6EgtI/AAAAAAAAAiY/LciIiGu9bF8/s320/kppp9.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0cm;"&gt;Click on connect and you will be prompted to enter bluetooth passkey, then the connection will be made.  &lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/SxOgaXp5LFI/AAAAAAAAAig/qKC0m7s6JCU/s1600/kppp10.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_8LcwgvFLl94/SxOgaXp5LFI/AAAAAAAAAig/qKC0m7s6JCU/s320/kppp10.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-649323930867359193?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YVyT2aghFUueTub6AF1eXAH1B6c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YVyT2aghFUueTub6AF1eXAH1B6c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YVyT2aghFUueTub6AF1eXAH1B6c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YVyT2aghFUueTub6AF1eXAH1B6c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/646X2xTYnw8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/649323930867359193/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/11/how-to-use-dial-up-point-to-point.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/649323930867359193?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/649323930867359193?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/646X2xTYnw8/how-to-use-dial-up-point-to-point.html" title="How to use dial up point-to-point protocol to connect to the internet via a GPRS mobile phone" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_8LcwgvFLl94/SxOfbRO3r3I/AAAAAAAAAhQ/gzsb1Lm96CI/s72-c/kppp.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/11/how-to-use-dial-up-point-to-point.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUUESHwyeSp7ImA9WxNXF0k.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-8174900192993489803</id><published>2009-09-15T06:41:00.000-07:00</published><updated>2009-10-05T05:53:29.291-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-05T05:53:29.291-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>How to install Windows XP on new Laptops that come with SATA harddisk and overcome the 'No harddisk detected' problem</title><content type="html">My Sony Vaio laptop came with Windows Vista, but in less than 1 year I was sick of using only Windows Vista, Kubuntu and Mandriva (the other two are Linux OS). I needed Windows XP badly, especially because of Windows Vista compatibility issues and XP had fewer problems connecting with most wireless hotspots. So in a nutshell, I got Windows XP SP3 from Microsoft and tried installing it. But something strange occurred during the installation process, I got a "No hard disk detected" complaint, this is because the SATA hard disk is a recent technology and they are not naturally detected by Windows XP. So, I have taken time to explain below in easy to follow steps, the procedure to install Windows XP on a SATA hard disk overcoming the no hard detected complaint. But, I must let you know that you need a Windows XP CD, an empty CD, nlite software and the SATA hard disk drive. We will later use the nlite to integrate the SATA hard disk drivers into the Windows XP installation files and reburn them on the empty CD using the same nlite software.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Step 1&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Copy the content of the Windows XP bootable CD into a folder on your computer, download the SATA hard disk drivers (usually named Intel_ICH7R_ICH8R_Floppy zip file), extract them and &lt;a href="http://www.nliteos.com/"&gt;nlite&lt;/a&gt; software (both are freewares). &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Step 2&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_8LcwgvFLl94/Sq-WcUMVe4I/AAAAAAAAAZ0/AjdNQXIylQo/s1600-h/nlite.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://4.bp.blogspot.com/_8LcwgvFLl94/Sq-WcUMVe4I/AAAAAAAAAZ0/AjdNQXIylQo/s400/nlite.PNG" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none;"&gt;Install the nlite and run the software, click next, then browse to the Windows XP folder (do not bother about the name you saved it with, the software is quite intelligent and will detect it). Click next, do not import anything here (it is for loading formally used or saved settings), just click next again. Under the Integrate section, choose drivers and click next. Click insert, choose multiple drivers, browse to the SATA drivers folder you extracted, add the folder, select all the drivers in the textmode and add . Click next, next and then finish. &lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none; clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_8LcwgvFLl94/Sq-WpZ6qAJI/AAAAAAAAAaE/10Hgv1eLqz8/s1600-h/nlite_insert.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://1.bp.blogspot.com/_8LcwgvFLl94/Sq-WpZ6qAJI/AAAAAAAAAaE/10Hgv1eLqz8/s400/nlite_insert.PNG" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_8LcwgvFLl94/Sq-XFXAraKI/AAAAAAAAAaU/Jt123DVPWyk/s1600-h/nlite_multipledrivers.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://2.bp.blogspot.com/_8LcwgvFLl94/Sq-XFXAraKI/AAAAAAAAAaU/Jt123DVPWyk/s400/nlite_multipledrivers.PNG" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-XUlCTqJI/AAAAAAAAAac/Uf1OnuSKgF4/s1600-h/nlite_ICH8R_Floppy.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-XUlCTqJI/AAAAAAAAAac/Uf1OnuSKgF4/s400/nlite_ICH8R_Floppy.PNG" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_8LcwgvFLl94/Sq-Xf4pEdlI/AAAAAAAAAas/7F78zMRMoQ8/s1600-h/nlite_textmodedrivers.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://1.bp.blogspot.com/_8LcwgvFLl94/Sq-Xf4pEdlI/AAAAAAAAAas/7F78zMRMoQ8/s400/nlite_textmodedrivers.PNG" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-XuIYN9pI/AAAAAAAAAa8/rHIaFsYi_3I/s1600-h/nlite_inserteddrivers.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-XuIYN9pI/AAAAAAAAAa8/rHIaFsYi_3I/s400/nlite_inserteddrivers.PNG" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_8LcwgvFLl94/Sq-YUjiauCI/AAAAAAAAAbU/YjQxq7RdzLs/s1600-h/nlite_processing.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://2.bp.blogspot.com/_8LcwgvFLl94/Sq-YUjiauCI/AAAAAAAAAbU/YjQxq7RdzLs/s400/nlite_processing.PNG" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-YuQmA-5I/AAAAAAAAAbs/8j9VN7L1lig/s1600-h/nlite_finish.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="317" mq="true" src="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-YuQmA-5I/AAAAAAAAAbs/8j9VN7L1lig/s320/nlite_finish.PNG" width="400" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none;"&gt;&lt;/div&gt;&lt;b&gt;Step 3&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
In the step 2, you have already created a new version of Windows XP that has the drivers for the SATA hard disk. Here you will now make the Windows XP folder back into a bootable CD. Rerun the nlite, choose the Windows Xp folder as before, click next (the last session changes are already added for you), click next again. Now under the create section, choose Bootable ISO, then next, insert the empty CD, set the burn speed to 10x and give it a label. Don't click next yet, just click on the Make ISO button. After this, click next and finish.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-ZIUBsaHI/AAAAAAAAAb8/SI-VL7E1fKM/s1600-h/xp3.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-ZIUBsaHI/AAAAAAAAAb8/SI-VL7E1fKM/s400/xp3.PNG" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-ZVnCveBI/AAAAAAAAAcM/j1-Ea0QTOiQ/s1600-h/nlite_create.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-ZVnCveBI/AAAAAAAAAcM/j1-Ea0QTOiQ/s400/nlite_create.PNG" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;Step 4&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Boot from the CD on the computer you want to install the Windows XP on and do the normal installation procedure. It will now no longer complaint of no hard disk found.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For any extra help, feel free to ask through the comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-8174900192993489803?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lYsIIX687QgFuv1DHZyfhbQngs4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lYsIIX687QgFuv1DHZyfhbQngs4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/lYsIIX687QgFuv1DHZyfhbQngs4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lYsIIX687QgFuv1DHZyfhbQngs4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/RkJpiTHp00A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/8174900192993489803/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/09/how-to-install-windows-xp-on-new.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/8174900192993489803?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/8174900192993489803?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/RkJpiTHp00A/how-to-install-windows-xp-on-new.html" title="How to install Windows XP on new Laptops that come with SATA harddisk and overcome the 'No harddisk detected' problem" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_8LcwgvFLl94/Sq-WcUMVe4I/AAAAAAAAAZ0/AjdNQXIylQo/s72-c/nlite.PNG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/09/how-to-install-windows-xp-on-new.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYBQnkyeSp7ImA9WxNQEE8.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-7632643469292246952</id><published>2009-09-15T06:22:00.000-07:00</published><updated>2009-09-15T06:42:33.791-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-15T06:42:33.791-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>How to reinstall a faulty windows XP,  Vista or even windows 7 without losing your valuable documents</title><content type="html">If for any reason (maybe the windows would not boot, it complains too much of lost or corrupted system files, it takes too much time to boot or like me, you need a fresh start) you want to reinstall Windows and not lose your vital documents, just follow me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you are able to boot into your computer, first back up your vital documents and insert the Windows bootable into your DVD drive, and when the setup screen comes on, choose &lt;strong&gt;upgrade&lt;/strong&gt;. This option is always there as long as the version you want to install is the same as the one you are currently using or higher. &lt;br /&gt;
&lt;br /&gt;
If you have been unable to boot into your windows to manually make a backup of those documents, do not worry. Insert the bootable windows XP, Vista or 7 into the DVD drive and boot from the disc, the computer will load the required system files first before prompting you on the type of installation. For Vista and 7, choose &lt;strong&gt;Upgrade&lt;/strong&gt;, but if this option is unavailable then choose &lt;strong&gt;Custom&lt;/strong&gt; and specify that it should leave your documents and folders untouched (you will see fresh installation and this option). For Windows XP, press Enter to install, choose the partition you want to install the Windows in and press Enter. In the next screen, you will see Leave the partition's folders and files (not exact words but very similar) and Format this partition. Choose the former and continue.&lt;br /&gt;
&lt;br /&gt;
After installation your documents and files will be intact, but you might need to claim ownership of the former user's folder to be able to access the documents in the Deskop, Music, Documents, Downloads and Video folders (this will happen if you have passworded your former user account, if you need special assistance in doing this ask in the comment).&lt;br /&gt;
&lt;br /&gt;
Now, if you were not allowed to install a fresh Windows without formatting and you need to get out your valuable documents, do not worry. Just boot from a linux CD ( &lt;a href="http://linuxforpro.blogspot.com/2009/08/live-booting-linux-from-cd-rom-dvd-rom.html"&gt;http://linuxforpro.blogspot.com/2009/08/live-booting-linux-from-cd-rom-dvd-rom.html&lt;/a&gt; ) and copy out all your valuable documents or even your entire hard disk. Then you can do the fresh Windows installation.&lt;br /&gt;
&lt;br /&gt;
For any extra help, feel free to comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-7632643469292246952?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dct-F2tNzdnRP50yPcQM-6VKR8g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dct-F2tNzdnRP50yPcQM-6VKR8g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/dct-F2tNzdnRP50yPcQM-6VKR8g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dct-F2tNzdnRP50yPcQM-6VKR8g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/b13peNCOMA4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/7632643469292246952/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/09/how-to-reinstall-faulty-windows-xp.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/7632643469292246952?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/7632643469292246952?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/b13peNCOMA4/how-to-reinstall-faulty-windows-xp.html" title="How to reinstall a faulty windows XP,  Vista or even windows 7 without losing your valuable documents" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/09/how-to-reinstall-faulty-windows-xp.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0QMQHo8cCp7ImA9WxNQF00.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-5314765310212265782</id><published>2009-09-15T06:17:00.000-07:00</published><updated>2009-09-23T05:36:21.478-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-23T05:36:21.478-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>How to repair your Windows Vista if it would not stop configuring update stage 3 of 3 0% complete...</title><content type="html">Personally, I have experienced so many things that happen during and after installing Windows update that I prefer to switch automatic updates off. There was a time a friend installed Windows Vista Ultimate SP1 and the audio went mute, many a time on Windows XP the computer will for any random reason show bluescreen and reboot. But on Windows Vista the most annoying is probably when you try shutting down and the computer installs automatic updates only to hang at "Configuring Update stage 3 of 3 0% complete..." and believe me it will remain at that stage forever! And when you power the computer down (cold boot) and power it up again, it would try to install the update again and go forever at the stage 3. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To repair this problem you will need to delete a pending.xml file in C:\Windows\winsxs folder. The major work is how to get there and delete it since you are unable to boot completely. There are probably more than 3 ways to do this. &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_8LcwgvFLl94/Sq-TjvmxShI/AAAAAAAAAZM/qhL-vo0op_4/s1600-h/winsxs.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="284" mq="true" src="http://1.bp.blogspot.com/_8LcwgvFLl94/Sq-TjvmxShI/AAAAAAAAAZM/qhL-vo0op_4/s320/winsxs.PNG" width="320" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-TuKAZdOI/AAAAAAAAAZU/PHwvw9b-ve4/s1600-h/pending.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mq="true" src="http://3.bp.blogspot.com/_8LcwgvFLl94/Sq-TuKAZdOI/AAAAAAAAAZU/PHwvw9b-ve4/s320/pending.PNG" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
1. You can slave your hard disk on another system, access your hard disk and perform the deletion.&lt;br /&gt;
&lt;br /&gt;
2. You can use the command prompt (System Console) in the repair tools after booting from the vista DVD to repair. Some laptops have this repair option availble without having to boot from the DVD, just press F8 as soon as you power on the laptop. When you are in the command prompt, change directory to the C:\Windows\winsxs folder and rename pending.xml to pending.xml.bad or simply delete it. The problem I have with this option is that the prompt refuses to change from the default X:\ (boot partition) to the C:\ partition. I got several tips online as to how to make the partition accessible but none worked.&lt;br /&gt;
&lt;br /&gt;
3. The surest and easiest means of carrying out this operation is to boot (hyperlink 'how to boot linux from CD or USB flash) from linux CD, browse to C:\Windows\winsxs folder using the lovely ever reliable Linux GUI folder browser and delete the culprit, pending.xml. Then restart the computer, remove the CD and boot straight into your Windows Vista. &lt;br /&gt;
&lt;br /&gt;
It is just as easy as that, I have done it before and if you would like to know more about the pending.xml file you can google it.&lt;br /&gt;
&lt;br /&gt;
If you are confused about anything, feel free to comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-5314765310212265782?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8cmLoWWqSXIfAZ_73jriYAA3S9w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8cmLoWWqSXIfAZ_73jriYAA3S9w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8cmLoWWqSXIfAZ_73jriYAA3S9w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8cmLoWWqSXIfAZ_73jriYAA3S9w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/CQpY1YVswgk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/5314765310212265782/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/09/how-to-repair-your-windows-vista-if-it.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/5314765310212265782?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/5314765310212265782?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/CQpY1YVswgk/how-to-repair-your-windows-vista-if-it.html" title="How to repair your Windows Vista if it would not stop configuring update stage 3 of 3 0% complete..." /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_8LcwgvFLl94/Sq-TjvmxShI/AAAAAAAAAZM/qhL-vo0op_4/s72-c/winsxs.PNG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/09/how-to-repair-your-windows-vista-if-it.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UEQXczeSp7ImA9Wx5WFk4.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-6947655323851982142</id><published>2009-08-13T03:10:00.000-07:00</published><updated>2010-09-27T19:00:00.981-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-27T19:00:00.981-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Safe Installation and Administration" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="Fedora" /><category scheme="http://www.blogger.com/atom/ns#" term="USB" /><category scheme="http://www.blogger.com/atom/ns#" term="LiveUsb" /><title>Live Booting Linux from CD-ROM, DVD-ROM and USB Flash</title><content type="html">&lt;span style="font-weight: bold;"&gt;Step 1&lt;/span&gt;&lt;br /&gt;
Download or copy from someone who has, the Linux OS image (always in .iso format)&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;Step 2&lt;/span&gt;&lt;br /&gt;
If you do not have a software that can burn CD or DVD image, then download active@ ISO Burner, it is free. (Most CD burning utilities can burn images, I know of Nero and Roxio)&lt;br /&gt;
To make USB flash images, dowload liveusb-creator-3.7 free utility.&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;Step 3&lt;/span&gt;&lt;br /&gt;
Install these softwares and run them. The liveusb-creator-3.7 does not need installation, just extract the zip file and run the application&lt;br /&gt;
&lt;table style="width: auto;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/HofT5U2_37EFiC9_eGlQ3Q?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_8LcwgvFLl94/Soqaa0LtEHI/AAAAAAAAAW8/EpLaU3Ojn4E/s400/Captureliveusb2.jpg" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/freemansh2000/DropBox?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;Drop Box&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;Step 4&lt;/span&gt;&lt;br /&gt;
Insert the empty CDor DVD into your drive and set the parameters on the active ISO burner to that shown below&lt;br /&gt;
&lt;br /&gt;
But if your CD or DVD drive is not very strong, set the Speed to 10x for CD and 4x for DVD. In fact, those settings are recommended even if your drive is new. This prevents error in the data burned since you will end up burning till the edge of the CD or DVD considering the size of the images which nearly equals the total capacity of the CD or DVD.&lt;br /&gt;
Then browse to the directory of the Linux OS image file and select it in the source box below.&lt;br /&gt;
&lt;table style="width: auto;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/U3LqoAR-KoXkXXMQphKUvQ?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_8LcwgvFLl94/SoqannqCc-I/AAAAAAAAAXc/J0eDUo_-4VA/s400/Captureisoburner.jpg" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/freemansh2000/DropBox?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;Drop Box&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
For the USB flash image,&lt;br /&gt;
&lt;br /&gt;
click the browse button and select the image file. Indicate the Target Device and create live USB.&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;Step 5&lt;/span&gt;&lt;br /&gt;
Reboot your computer and set the boot sequence to use DVD/CD drive and USB drive before Hard Disk.&lt;br /&gt;
Voila! Your computer will boot into the Linux OS, just make sure you do not install the Linux yet, and choose 'Boot without installing' or 'Run without any changes to your computer'. Now you can tryout the Linux OS without installing it on your hard disk.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-6947655323851982142?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9a_cFJHLIvn1tkpvqJazHLaTn7k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9a_cFJHLIvn1tkpvqJazHLaTn7k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9a_cFJHLIvn1tkpvqJazHLaTn7k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9a_cFJHLIvn1tkpvqJazHLaTn7k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/Z71H2CrUHVA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/6947655323851982142/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/08/live-booting-linux-from-cd-rom-dvd-rom.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/6947655323851982142?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/6947655323851982142?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/Z71H2CrUHVA/live-booting-linux-from-cd-rom-dvd-rom.html" title="Live Booting Linux from CD-ROM, DVD-ROM and USB Flash" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/_8LcwgvFLl94/Soqaa0LtEHI/AAAAAAAAAW8/EpLaU3Ojn4E/s72-c/Captureliveusb2.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/08/live-booting-linux-from-cd-rom-dvd-rom.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUYBQHg6fSp7ImA9WxNRGUk.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-4918441482506213842</id><published>2009-06-29T04:25:00.000-07:00</published><updated>2009-09-14T08:45:51.615-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-14T08:45:51.615-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Safe Installation and Administration" /><title>HOW TO INSTALL APPLICATION SOFTWARES IN LINUX</title><content type="html">Installing software on most linux distributions (K/Ubuntu, Mandriva, Fedora Core, OpenSuse etc.) is most times easier than for windows. It is just that we are so accustomed to windows that we expect things should be done in the same manner in linux.&lt;br /&gt;Linux comes with an automatic software finder and installer utility. In (K)Ubuntu, it could be Adept or Synaptic, in Mandriva it is simply named 'Install and Remove Software'. Whatever it is called in your linux distribution, they all function the same way&lt;table style="width:auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/niWgp9hncFHNZZ_EcKrSiw?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_8LcwgvFLl94/SlNhpKZZ1rI/AAAAAAAAAI8/JOTiCm6keDc/s400/softwaresources.jpg" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family:arial,sans-serif; font-size:11px; text-align:right"&gt;From &lt;a href="http://picasaweb.google.com/freemansh2000/DropBox?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;Drop Box&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Just run the utility, locate where the 'update from repositories' or something similar is and click it (you might be asked to select media sources, choose/tick all). This will through your internet connection download the most recent lists of available softwares for your linux and their descriptions. So you must be connected to the internet, but if you have no access to the internet there is an alternative. After the update is done, you will go through the list of softwares and check/tick the box beside the softwares you want to install, the click on 'Apply' to install them. (If you have a slow internet connection, do not check too many softwares).&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_8LcwgvFLl94/SkjlmlHHBQI/AAAAAAAAABs/_POlDxhpGPg/s1600-h/tux_soaring_md_blk.gif"&gt;&lt;img style="TEXT-ALIGN: center; MARGIN: 0px auto 10px; WIDTH: 120px; DISPLAY: block; HEIGHT: 102px; CURSOR: pointer" id="BLOGGER_PHOTO_ID_5352780608089556226" border="0" alt="" src="http://4.bp.blogspot.com/_8LcwgvFLl94/SkjlmlHHBQI/AAAAAAAAABs/_POlDxhpGPg/s4000/tux_soaring_md_blk.gif" /&gt;&lt;/a&gt;&lt;br /&gt;If you have no internet connection on the system running the linux, you will have to use another computer system with internet connection to download the software you want to install. Just google out the linux version of the software (e.g type in google search box 'download linux version of Opera 10). Most times you will end up downloading the source code (Opera10.tar.gz) or an executable bin file (Opera10.bin). You might also be a able to see a version that is specific for your linux distribution (e.g. .deb for K/Ubuntu or .rpm for Fedora/OpenSuse/Mandriva). You can install this by just double clicking on the file.&lt;br /&gt;For the Opera10.tar.gz -&lt;br /&gt;1. Copy it into a folder in your target system maybe the &lt;i&gt;/home/download&lt;/i&gt; folder or any other of your choice.&lt;br /&gt;2. Right click on the file and choose extract here (an Opera folder will be created in the &lt;i&gt;/home/download&lt;/i&gt; folder.&lt;br /&gt;3. Enter the new folder and copy the address location (maybe &lt;i&gt;/home/download/Opera10&lt;/i&gt;).&lt;br /&gt;4. Goto the Terminal or Konsole bash commandline.&lt;br /&gt;&lt;table style="width:auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/MajyCjvIr3PTLVabAg6QNQ?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_8LcwgvFLl94/SlNhpChWfvI/AAAAAAAAAI4/_lEg_kfa3bI/s400/konsole.jpg" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family:arial,sans-serif; font-size:11px; text-align:right"&gt;From &lt;a href="http://picasaweb.google.com/freemansh2000/DropBox?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;Drop Box&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;5. Change to the folder directory by typing cd and pressing Shift + Insert (to paste the already copied location) then Enter.&lt;br /&gt;6. Type&lt;i&gt; sudo ./configure&lt;/i&gt;&lt;br /&gt;&lt;i&gt;make&lt;br /&gt;sudo make install&lt;/i&gt;&lt;br /&gt;&lt;table style="width:auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/wa39iFYIGsF03evZHWQTeQ?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_8LcwgvFLl94/SlNhrGSBltI/AAAAAAAAAJA/-4X3RqpL-2w/s400/makeinstall.jpg" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family:arial,sans-serif; font-size:11px; text-align:right"&gt;From &lt;a href="http://picasaweb.google.com/freemansh2000/DropBox?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;Drop Box&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;These will compile and install the software.&lt;br /&gt;For Opera10.bin -&lt;br /&gt;1. Copy the Opera10.bin to say &lt;i&gt;/home/download&lt;/i&gt;.&lt;br /&gt;Goto the Terminal or Konsole bash commandline and change to the directory by typing&lt;i&gt; cd /home/download&lt;/i&gt;&lt;br /&gt;2. Type &lt;i&gt;sudo chmod a+x Opera10.bin&lt;/i&gt; to make the bin file executable&lt;br /&gt;&lt;table style="width:auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/z2C4ATAZQxchnEqNge78IQ?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_8LcwgvFLl94/SlNhlJlXG8I/AAAAAAAAAI0/g4reoXhsgUM/s400/chmod.jpg" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family:arial,sans-serif; font-size:11px; text-align:right"&gt;From &lt;a href="http://picasaweb.google.com/freemansh2000/DropBox?authkey=Gv1sRgCJHjr8rWkYjBJw&amp;amp;feat=embedwebsite"&gt;Drop Box&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;3. Type &lt;i&gt;./Opera10.bin&lt;/i&gt; to install the software.&lt;br /&gt;For further clarifications or any questions, feel free to enter them as a comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-4918441482506213842?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/o6RpRKNuVCbPaQXdTh0NDWT2-Fs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/o6RpRKNuVCbPaQXdTh0NDWT2-Fs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/o6RpRKNuVCbPaQXdTh0NDWT2-Fs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/o6RpRKNuVCbPaQXdTh0NDWT2-Fs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/vjOzyA7oaeU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/4918441482506213842/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/06/how-to-install-application-softwares-in.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/4918441482506213842?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/4918441482506213842?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/vjOzyA7oaeU/how-to-install-application-softwares-in.html" title="HOW TO INSTALL APPLICATION SOFTWARES IN LINUX" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/_8LcwgvFLl94/SlNhpKZZ1rI/AAAAAAAAAI8/JOTiCm6keDc/s72-c/softwaresources.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/06/how-to-install-application-softwares-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUBQX0-fyp7ImA9WxNRGUk.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-7599717910888157975</id><published>2009-06-29T03:52:00.000-07:00</published><updated>2009-09-14T08:47:30.357-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-14T08:47:30.357-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>OPEN SOURCE LINUX ALTERNATIVE TO WINDOWS POPULAR APPLICATION SOFTWARE</title><content type="html">1. MICROSOFT WORD - OpenOffice.org writer is a perfect alternative, it oftens come pre-installed on the Linux OS. I use it both on my Windows OS and Linux, there is both the linux and windows executable. I even used it for my technical reports in the University, it can read and write Microsoft word file format (.doc) but can only read word 2007 format (.docx).&lt;br /&gt;2. MICROSOFT VISIO - Dia can to some extent be an alternative to visio, just that you might have to save/export the page as an image for you to insert/import into another application like the openoffice.org writer, Kwrite etc.&lt;br /&gt;3. MICROSOFT WORDPAD - Kwrite is a very good alternative and it comes pre-installed on most kde linux version.&lt;br /&gt;4. MICROSOFT NOTEPAD - Gedit, Kedit and Kate are better alternatives to notepad, they allow you to save as a any file format you desire without putting a "  " quote. This makes them easily used as a programmer's notepad.&lt;br /&gt;5. INTERNET EXPLORER - There is Opera, Firefox and Konqueror which work just as well or even better that the latest Internet Explorer.&lt;br /&gt;6. WINDOWS MEDIA PLAYER - VLC player is a very perfect and better alternative and can play nearly all known popular music and video format. There is also Amarok and Kaffeine.&lt;br /&gt;7. ADOBE ACROBAT READER - There is Okular, Xpdf and linux version of acrobat reader.&lt;br /&gt;8. NERO BURNER - There is k3b and brasero on linux and in my opinion, k3b has been the most reliable burner I have ever used, especially for burning images.&lt;br /&gt;9. HYPERTERMINAL - CuteCom and Minicom works just as well.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-7599717910888157975?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bNOrDY260CXxj-r-jdljnEmw924/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bNOrDY260CXxj-r-jdljnEmw924/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/bNOrDY260CXxj-r-jdljnEmw924/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bNOrDY260CXxj-r-jdljnEmw924/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/0bVP63nEMqk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/7599717910888157975/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/06/open-source-linux-alternative-to.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/7599717910888157975?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/7599717910888157975?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/0bVP63nEMqk/open-source-linux-alternative-to.html" title="OPEN SOURCE LINUX ALTERNATIVE TO WINDOWS POPULAR APPLICATION SOFTWARE" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/06/open-source-linux-alternative-to.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkcMQnY-fyp7ImA9WhdTFUs.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-1659090461515181746</id><published>2009-06-10T08:21:00.000-07:00</published><updated>2011-07-13T06:34:43.857-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-13T06:34:43.857-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Safe Installation and Administration" /><title>The safest and most beneficial way to install Linux</title><content type="html">&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;You would probably have heard that installing linux as an apllication in windows or on a virtual system is the safest (no doubt about that), but if you really want to enjoy the linux operating software you will need to install it on another partition or disk and have it run as a real operating system.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;In this post I will teach you how to do this without endangering your windows partition and operating system in anyway. I must let you know that I have done this a couple of times with Kubuntu 8.04 , Ubuntu 8.04, Mandriva 2009 and Kubuntu 9.04, but I am very sure it will work same way for Fedora core 10 and later, OpenSuse 11 and later.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-weight: bold;"&gt;STEP 1&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;For Vista&lt;/b&gt;: If you do not have a partition you will like to install the linux in yet, you can shrink an already existing partition by right clicking on&amp;nbsp;&lt;b&gt;Computer&lt;/b&gt;, choose&amp;nbsp;&lt;b&gt;Manage&lt;/b&gt;, choose&amp;nbsp;&lt;b&gt;disk and volume management&lt;/b&gt;&amp;nbsp;and right click on the partition you want to shrink, choose&lt;b&gt;&amp;nbsp;shrink&lt;/b&gt;, and indicate the size of the new partition you want. Now do not format the unallocated space, it is better to leave it this way. And if you already have a formatted partition that you want to use, do not bother doing.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;For XP&lt;/b&gt;: I really do not know a safe way to create a new partition from an already existing one, so I will assume you already have a partition ready for the linux installation (I was told that Norton Partion magic works hassle free but I have no first-hand experience with it). A great workaround this is to let the linux resize the windows partition and use some of the free space, I have done this using Mandriva 2009 before and it worked hassle free. Just make sure you shutdown the Windows OS properly.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-weight: bold;"&gt;STEP 2&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Insert the linux bootable CD/DVD into the DVD drive (I will advice you to use live CD/DVD, it is more user friendly and very straight forward), then restart your computer, make sure it boots from the CD/DVD drive, choose '&lt;b&gt;Start the Linux OS without making any change to your system&lt;/b&gt;', though the exact text might differ from that, it always mean boot from the cd/dvd without installing the linux operating system on your computer, it will only use your RAM without touching your hard disk.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-weight: bold;"&gt;STEP 3&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;After the linux has finished starting up, click &lt;b&gt;Install &lt;/b&gt;on the&lt;b&gt;&amp;nbsp;Desktop&lt;/b&gt;&amp;nbsp;(you can explore the Linux OS before doing this). Answer the general step by step questions it asks you, but when it gets to the installation proper, choose the 'free space' ( if you have created an unallocated space in the step 1) or the free partition you prepared for the Linux. Enter ' / ' for the mount point ( where your root/default admin folder will be located), choose the ext3 filesystem and format. Complete the installation, if you see grub bootloader configuration, accept the default (except the time delay before it will automatically boot into linux, this is usually 10 seconds, change it to 30 preferably). The computer will automatically restart, remove the linux bootable and let the computer boot from hard disk. Do not be scared to see that there are three linux options and one windows option, the grub bootloader that came with the new release of linux automatically detects the windows, shows a normal mode linux, a safe mode linux and memory test linux boot mode. If you want to boot into Windows select Windows and press&amp;nbsp;&lt;b&gt;Enter&lt;/b&gt;.&lt;b&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;Voila! You now have linux installed on your computer. If in anyway confused, reply through the comment.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-weight: bold;"&gt;TIPS AND TRICKS&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Linux can access your windows partition but windows cannot access linux partition, this is very useful in case you have problem with your Windows, you can still access and copy your documents in the windows partition&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Linux is resistant to most viruses (in fact I do not know of any virus that affect linux, so I prefer browsing and collecting data from external storage devices via my linux OS)&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Linux oftentimes recognize and interact with most external devices like USB flash drive, bluetooth, serial devices etc without any addition drivers installation.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;If you have a Sony laptop, I will recommend Mandriva 2009 or Kubuntu 9.04 as it has the drivers for your wireless and screen brightness control (I had to install the drivers for my wireless from a source code on my Sony running Kubuntu 8.04, OpenSuse 11 also has the same problem).&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;If you use HP or Dell (especially Dell, HP can still use mandriva with its wireless detected and screen brightness control), I will recommend (K)Ubuntu 8.04 or later.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Never install linux before windows because windows bootloader cannot detect linux. But if you have no choice you can reinstall the grub bootloader.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;If you want any further clarification, you can ask via the comment.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-1659090461515181746?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/BXx1uTBOuIM1YWiQMRzGubS6ld8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BXx1uTBOuIM1YWiQMRzGubS6ld8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/BXx1uTBOuIM1YWiQMRzGubS6ld8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BXx1uTBOuIM1YWiQMRzGubS6ld8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/U3COkF3DbLA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/1659090461515181746/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/06/safest-and-most-beneficial-way-to.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/1659090461515181746?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/1659090461515181746?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/U3COkF3DbLA/safest-and-most-beneficial-way-to.html" title="The safest and most beneficial way to install Linux" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/06/safest-and-most-beneficial-way-to.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUBQX0-fyp7ImA9WxNRGUk.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-8698967195590021075</id><published>2009-06-10T07:11:00.001-07:00</published><updated>2009-09-14T08:47:30.357-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-14T08:47:30.357-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips" /><title>How to manually unlock the urpmi</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_8LcwgvFLl94/SjKRjg2cUOI/AAAAAAAAABU/4OrxoXeFXes/s1600-h/konsole"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 200px;" src="http://3.bp.blogspot.com/_8LcwgvFLl94/SjKRjg2cUOI/AAAAAAAAABU/4OrxoXeFXes/s320/konsole" alt="" id="BLOGGER_PHOTO_ID_5346495746941931746" border="0" /&gt;&lt;/a&gt;I got this solution from a forum and it worked.&lt;br /&gt;All you need do is to just save this as a script and call it in the bash terminal&lt;div&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;#!/bin/bash&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;echo "";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;echo "Only root can unlock the URPMI database.";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;echo "Starting with the removal of URPMI locks:";&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;rm -f "/var/lib/urpmi/.LOCK";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;echo "     rm -f '/var/lib/urpmi/.LOCK'...";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;rm -f "/var/lib/urpmi/.RPMLOCK";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;echo "     rm -f '/var/lib/urpmi/.RPMLOCK'..."&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;echo "URPMI DATABASE UNLOCKED!";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;echo "Happy installing!"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;echo ""&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-8698967195590021075?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kaX1aiIIDQaPV-exHmBwO_dw1QI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kaX1aiIIDQaPV-exHmBwO_dw1QI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kaX1aiIIDQaPV-exHmBwO_dw1QI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kaX1aiIIDQaPV-exHmBwO_dw1QI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/5ani8N5ax1s" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/8698967195590021075/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/06/how-to-manually-unlock-urpmi.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/8698967195590021075?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/8698967195590021075?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/5ani8N5ax1s/how-to-manually-unlock-urpmi.html" title="How to manually unlock the urpmi" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_8LcwgvFLl94/SjKRjg2cUOI/AAAAAAAAABU/4OrxoXeFXes/s72-c/konsole" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/06/how-to-manually-unlock-urpmi.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A04CRHk8eyp7ImA9WxNXF0g.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-3097965911226577456</id><published>2009-06-08T09:07:00.001-07:00</published><updated>2009-10-05T09:26:05.773-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-05T09:26:05.773-07:00</app:edited><title>Terms and Conditions</title><content type="html">Welcome to &lt;b&gt;linuxforpro&lt;/b&gt;. If you continue to browse and use this website you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern our relationship with you in relation to this website.&lt;br /&gt;
&lt;br /&gt;
The term&amp;nbsp;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;linuxforpro&lt;/span&gt;&amp;nbsp;or “us” or “we” refers to the owner of the website. The term “you” refers to the user or viewer of our website.&lt;br /&gt;
&lt;br /&gt;
The use of this website is subject to the following terms of use:&lt;br /&gt;
&lt;br /&gt;
· The content of the pages of this website is for your general information and use only. It is subject to change without notice.&lt;br /&gt;
&lt;br /&gt;
· Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.&lt;br /&gt;
&lt;br /&gt;
· Your use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services or information available through this website meet your specific requirements.&lt;br /&gt;
&lt;br /&gt;
· All trademarks reproduced in this website, which are not the property of, or licensed to the operator, are acknowledged on the website.&lt;br /&gt;
&lt;br /&gt;
· Unauthorised use of this website may give to a claim for damages and/or be a criminal offence.&lt;br /&gt;
&lt;br /&gt;
· From time to time this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s).&lt;br /&gt;
&lt;br /&gt;
· You may create a link to this website from another website or document without&amp;nbsp;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;linuxforpro&lt;/span&gt;’s prior written consent.&lt;br /&gt;
&lt;br /&gt;
· Your use of this website and any dispute arising out of such use of the website is subject to the laws of Nigeria.&lt;br /&gt;
&lt;br /&gt;
The information contained in this website is for general information purposes only. The information is provided by&amp;nbsp;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;linuxforpro&lt;/span&gt;&amp;nbsp;and whilst we endeavour to keep the information up-to-date and correct, we make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the website or the information, products, services, or related graphics contained on the website for any purpose. Any reliance you place on such information is therefore strictly at your own risk.&lt;br /&gt;
&lt;br /&gt;
In no event will we be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of or in connection with the use of this website.&lt;br /&gt;
&lt;br /&gt;
Through this website you are able to link to other websites which are not under the control of&amp;nbsp;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;linuxforpro&lt;/span&gt;. We have no control over the nature, content and availability of those sites. The inclusion of any links does not necessarily imply a recommendation or endorse the views expressed within them.&lt;br /&gt;
&lt;br /&gt;
Every effort is made to keep the website up and running smoothly. However,&amp;nbsp;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;linuxforpro&lt;/span&gt;&amp;nbsp;takes no responsibility for and will not be liable for the website being temporarily unavailable due to technical issues beyond our control.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;This website and its content is copyright of&amp;nbsp;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;linuxforpro&lt;/span&gt;&amp;nbsp;- ©&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;linuxforpro&lt;/span&gt;&amp;nbsp;2009. All rights reserved&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-3097965911226577456?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2m5NWAGimy0MVtH9v2c9M29PvDU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2m5NWAGimy0MVtH9v2c9M29PvDU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2m5NWAGimy0MVtH9v2c9M29PvDU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2m5NWAGimy0MVtH9v2c9M29PvDU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/_4wZAs58S14" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/3097965911226577456/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/06/terms-and-conditions.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3097965911226577456?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/3097965911226577456?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/_4wZAs58S14/terms-and-conditions.html" title="Terms and Conditions" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/06/terms-and-conditions.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4CQXo6cSp7ImA9WxNXF0s.&quot;"><id>tag:blogger.com,1999:blog-4961332562999353624.post-6313901220332113252</id><published>2009-06-08T09:06:00.000-07:00</published><updated>2009-10-05T09:42:40.419-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-05T09:42:40.419-07:00</app:edited><title>Privacy Policy</title><content type="html">&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;span style="font-family: 'Times New Roman';"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;What information do we collect?&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;We collect information from you when you register on our site or respond to a survey.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;When ordering or registering on our site, as appropriate, you may be asked to enter your: name or e-mail address. You may, however, visit our site anonymously.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Google, as a third party vendor, uses cookies to serve ads on your site.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Google's use of the DART cookie enables it to serve ads to your users based on their visit to your sites and other sites on the Internet.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy..&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;What do we use your information for?&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Any of the information we collect from you may be used in one of the following ways:&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;• To personalize your experience&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;(your information helps us to better respond to your individual needs)&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;• To improve our website&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;(we continually strive to improve our website offerings based on the information and feedback we receive from you)&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;How do we protect your information?&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;We do not in any way require any sensitive information from you beyond your name, e-mail and sex. These data will not be sent to any third party without your consent.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Do we use cookies?&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Yes (Cookies are small files that a site or its service provider transfers to your computers hard drive through your Web browser (if you allow) that enables the sites or service providers systems to recognize your browser and capture and remember certain information&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;We use cookies to keep track of advertisements and compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Do we disclose any information to outside parties?&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our website, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety. However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Third party links&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Occasionally, at our discretion, we may include or offer third party products or services on our website. These third party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;California Online Privacy Protection Act Compliance&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Because we value your privacy we have taken the necessary precautions to be in compliance with the California Online Privacy Protection Act. We therefore will not distribute your personal information to outside parties without your consent.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Childrens Online Privacy Protection Act Compliance&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;We are in compliance with the requirements of COPPA (Childrens Online Privacy Protection Act), we do not collect any information from anyone under 13 years of age. Our website, products and services are all directed to people who are at least 13 years old or older.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Online Privacy Policy Only&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;This online privacy policy applies only to information collected through our website and not to information collected offline.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Terms and Conditions&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Please also visit our Terms and Conditions section establishing the use, disclaimers, and limitations of liability governing the use of our website at&amp;nbsp;&lt;a href="http://linuxforpro.blogspot.com/2009/06/privacy-policy.html"&gt;Terms and conditions&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Your Consent&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;By using our site, you consent to our privacy policy.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Changes to our Privacy Policy&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;If we decide to change our privacy policy, we will update the Privacy Policy modification date below.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;This policy was last modified on 5-October-2009&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b&gt;Contacting Us&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;If there are any questions regarding this privacy policy you may contact us using the information below.&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;www.olafusimichael.com&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;1, Ogundare street&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Oke-odo, Lagos 23401&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Nigeria&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;michael@olafusimichael.com&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;+2348056562108&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4961332562999353624-6313901220332113252?l=linuxforpro.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/eCNdeMIb7EcRLfHQTTLyum5UhA0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eCNdeMIb7EcRLfHQTTLyum5UhA0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/eCNdeMIb7EcRLfHQTTLyum5UhA0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eCNdeMIb7EcRLfHQTTLyum5UhA0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AllYouWillNeedOnLinux/~4/U4jSyOjIzDo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://linuxforpro.blogspot.com/feeds/6313901220332113252/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://linuxforpro.blogspot.com/2009/06/privacy-policy.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/6313901220332113252?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4961332562999353624/posts/default/6313901220332113252?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AllYouWillNeedOnLinux/~3/U4jSyOjIzDo/privacy-policy.html" title="Privacy Policy" /><author><name>Olafusi Michael</name><uri>http://www.blogger.com/profile/14257193654134528961</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-99NEufmpLD4/TbkVnb6aaFI/AAAAAAAABA4/Af7-A9uJACM/s220/facebooknew.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://linuxforpro.blogspot.com/2009/06/privacy-policy.html</feedburner:origLink></entry></feed>

