<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>SOLUTION A TO Z</title><description>Learn Tips &amp;amp; tricks, Networking related topics, Troubleshooting software and Operating System related problems. Learn to handle Device configuration problems and much more</description><managingEditor>noreply@blogger.com (Anonymous)</managingEditor><pubDate>Mon, 7 Oct 2024 10:12:17 +0530</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">16</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://solutionatoz.blogspot.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:keywords>network,solution,windows,drive,open,regestry</itunes:keywords><itunes:subtitle>Learn Tips &amp;amp; tricks, Networking related topics, Troubleshooting software and Operating System related problems. Learn to handle Device configuration problems and much more</itunes:subtitle><itunes:category text="Technology"><itunes:category text="Tech News"/></itunes:category><itunes:owner><itunes:email>sandeep.rohilla@ymail.com</itunes:email></itunes:owner><xhtml:meta content="noindex" name="robots" xmlns:xhtml="http://www.w3.org/1999/xhtml"/><item><title>Script to Migrate Users with home directory in Linux </title><link>http://solutionatoz.blogspot.com/2013/07/script-to-migrate-users-with-home.html</link><category>Linux</category><category>scripting</category><pubDate>Tue, 16 Jul 2013 10:26:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-212782453112656908</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Generally&amp;nbsp;Scripting help us to save our lots of time, which we spend in our daily day to day activity. It is very easy to create a script if you have a good&amp;nbsp;understanding on command or if you know how to use your skill to make task automatic with shell scripting. But Good scripting not only include commands, it is the combination of logics, commands and your dedication to get the desire result from your script&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Lets comes to the main section, Below is the example of simple script which migrate &lt;b&gt;Users with their group&lt;/b&gt; &lt;b&gt;and home&amp;nbsp;Directory&lt;/b&gt;&amp;nbsp;and &amp;nbsp;move it on a temp&amp;nbsp;directory , i.e &lt;b&gt;move &lt;/b&gt;Then you can&amp;nbsp;easily&amp;nbsp;copy move directory and put it on your new Machine (New Linux Machine). or you can keep as a backup.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Please copy past below script in a file and named it as mig.sh,and give the executable&amp;nbsp;permission&amp;nbsp;to your script, I am&amp;nbsp;considering&amp;nbsp;here you know how to run scripts&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;Please use root user to run this script, becasue&amp;nbsp;normal user will not able to read the password file.&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
********************Script&amp;nbsp;begin&amp;nbsp;you can copy past after this line ********************&lt;br /&gt;
&lt;div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp;#!/bin/bash&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
#### This script will use to migrate the users login and Data &amp;nbsp;######&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
id=500&lt;/div&gt;
&lt;div&gt;
pasd=/etc/passwd&lt;/div&gt;
&lt;div&gt;
grp=/etc/group&lt;/div&gt;
&lt;div&gt;
shad=/etc/shadow&lt;/div&gt;
&lt;div&gt;
grpshad=/etc/gshadow&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
### Make a Dir to put the migration files #####&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
mkdir move&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
#### Getting Details of the users comes between &lt;b&gt;id&lt;/b&gt; and &lt;b&gt;65534&lt;/b&gt; and move it in a file#######&lt;/div&gt;
&lt;div&gt;
awk -v L=$id -F: '($3&amp;gt;=L) &amp;amp;&amp;amp; ($3!=65534)' $pasd &amp;gt;move/passwd.mig&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
#### Getting details of Groups between &lt;b&gt;&amp;nbsp;id&lt;/b&gt; and &lt;b&gt;65534&lt;/b&gt; and move it in a file #########&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
awk -v L=$id -F: '($3&amp;gt;=L) &amp;amp;&amp;amp; ($3!=65534)' $grp &amp;gt;move/group.mig&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
##### Now Copy Shadow File ##########&lt;/div&gt;
&lt;div&gt;
awk -v L=$id -F: '($3&amp;gt;=L) &amp;amp;&amp;amp; ($3!=65534) {print $1}' $pasd | tee - |egrep -f - $shad &amp;gt;move/shadow.mig&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
########## Copy group shadow &amp;nbsp;file ################&lt;/div&gt;
&lt;div&gt;
&amp;nbsp;cp $grpshad move/gshadow.mig&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp;###### Create a Backup of User Home Dir by compressing it with tar ############&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
awk -F: '{print $1}' move/passwd.mig &amp;gt;move/temp.file&lt;/div&gt;
&lt;div&gt;
awk -F: '{print $6}' move/passwd.mig &amp;gt;move/temp2.file&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
for user in `cat move/temp.file`&lt;/div&gt;
&lt;div&gt;
do&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;ho=`grep $user move/temp2.file`&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;tar -zcvpf move/$user.tar.gz --directory=`dirname $ho` $user&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;tar -zcvpf move/$user-mail.tar.gz --directory=/var/spool/mail $user&lt;/div&gt;
&lt;div&gt;
done&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
rm-rf /move/temp.file temp2.file&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
******************************Script End please don't copy this line **********************&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
Now login as root by executing command below&lt;i&gt;&amp;nbsp;&lt;br class="Apple-interchange-newline" /&gt;#su -l&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
and set&amp;nbsp;permission&amp;nbsp;to the mig.sh&lt;i&gt;&amp;nbsp;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#chmod a+x mig.sh&lt;/i&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
to run the above script you can use command&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#sh mig.sh&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;or&amp;nbsp;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#./mig.sh&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Once you get the output of your script in move folder copy it on new Linux machine and start moving the home dir of users on desired location.&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;&lt;b&gt;Please Note&amp;nbsp;&lt;/b&gt;default&amp;nbsp;location of user home dir is&lt;b&gt; /home&lt;/b&gt;, if you required any other location then you can manually change the &lt;b&gt;home&lt;/b&gt; with your &lt;b&gt;newhome &lt;/b&gt;or you can use sed &amp;nbsp;to change all at once in passwd.mig file&amp;nbsp;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;In New Linux machine&amp;nbsp;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
Login as a root in new machine, and go to move directory, now we are going to add the account's one by one.&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#cd move&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
untar all the migrated home dir present in the form of user.tar.gz &amp;nbsp;in /home by executing command one by one for all the users&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;Please note :- you can untar the dir after adding user entery in /etc/password which is mention in next line.&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#tar -zxvpf &amp;nbsp;user.tar.gz -C /home/&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Now copy passwd , shadow and group, gshadow files in case if anything goes wrong you can move to the&amp;nbsp;original&amp;nbsp;again &amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#cp /etc/passwd /etc/passwd.orig&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#cp /etc/shadow /etc/shadow.orig&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#cp /etc/group /etc/group.orig&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#mv&amp;nbsp;/etc/gshadow /etc/gshadow.orig&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
and append&amp;nbsp;the data&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;# cat passwd.mig &amp;gt;&amp;gt;/etc/passwd&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#cat shadow.mig &amp;gt;&amp;gt;/etc/shadow&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#cat group.mig &amp;gt;&amp;gt;/etc/group&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;#mv gshadow.mig &amp;nbsp;/etc/gshadow&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
Now restart or logout your machine to see the changes.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Thank you for Reading my full post&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Virtualize Your Application with VM ware Thin Apps</title><link>http://solutionatoz.blogspot.com/2010/03/virtualize-your-application-with-vm.html</link><category>Software</category><category>VM ware</category><category>windows</category><pubDate>Tue, 9 Mar 2010 04:04:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-2677536375373798552</guid><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;b&gt;Virtual&lt;/b&gt; means not &lt;b&gt;real&lt;/b&gt;, &lt;b&gt;Virtualization &lt;/b&gt;means doing somthing Virtualy, with sharing of common resources.&lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
Computer these days not meant only for calculation, most of our work depend on it. Most of us spent our valuable time in front of computer to make our work easy, we cant refuse if any body say our success is not possible without computer.&lt;br /&gt;
Well, if you want to make your work easier and somewhat more simpler, you will have to purchase a high speed and high processing Computer, which make your work very simple.&lt;br /&gt;
&lt;br /&gt;
Along with&amp;nbsp; good speed you always face a problem, of &lt;b&gt;Reinstalling Operating System &lt;/b&gt;with all&amp;nbsp; Applications, which always take a long time -- almost 2- 3 hours. So what you do if windows got corrupted. Well i will say, there is a way through which you can save almost 60% of your time during installation.&lt;br /&gt;
Now you thinking what Allahdin lamp i got, that i am&amp;nbsp; saying you can save your 60% time. Its nothing just a thin Application. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;VM ware&lt;/b&gt; is a common brand which always make their all software on&amp;nbsp; Virtulisation, means sharing of physical resources without harming physical system, only you have to require some good configuration of system, I remember its VM ware Machine&amp;nbsp; with it you can run a small network on an only a stand alone system, isn't it imaging.&lt;br /&gt;
&lt;br /&gt;
Lets us Talk&amp;nbsp; about its tool &lt;b&gt;THIN APP&lt;/b&gt;, Just like other application of VM ware (VM ware Machine, server, Esx server, Virtual Desktop ), Thin App is also&amp;nbsp; share a common platform of Virtulisation. It not only virtually&amp;nbsp; run your application, even&amp;nbsp; you can save there license and registration with in the application bundle. There is no need to insert the license again and again on every re-installation of OS, it just make a single Exe file which on click execute the program without installing it to the Hard disk&lt;br /&gt;
&lt;br /&gt;
Let us take a look how to make a Autorun application with the Thin App:--&lt;br /&gt;
&lt;br /&gt;
1.&amp;nbsp; Install the VM Ware Thin App, on frash system, before to install other Application, when Installation complete click on its Icon to run.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/1.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
2. Click on &lt;b&gt;NEXT&lt;/b&gt; to proceed.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/2.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;It actually scan your Installation directory (Program files)and registry to proceed further, If you think your system may take a diffrent path during installation then you may click on &lt;b&gt;Advanced Settings&lt;/b&gt;, to select other drive also&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="275" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/3.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
3.When you select your default drive click at &lt;b&gt;OK&lt;/b&gt; and then click at &lt;b&gt;NEXT,&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/4.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
It will start its process of&amp;nbsp; &lt;b&gt;Prescan, &lt;/b&gt;which scan the directory which you allowed it to scan for changes, it will take some time. Once it give you option to click on &lt;b&gt;NEXT&lt;/b&gt; then click at &lt;b&gt;NEXT&lt;/b&gt; .&lt;br /&gt;
&lt;br /&gt;
4. After a whole process, It will give you a option to &lt;b&gt;Minimize the Thin app window and Install the software&lt;/b&gt;.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/5.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;5. I am showing you a Example by just installing a &lt;b&gt;Adobe Acrobat Reader 8&lt;/b&gt;, Just Install the software application&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/6.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;Finish the installation.&lt;br /&gt;
&lt;br /&gt;
6. If your software require any product key, serial key &amp;nbsp; then you should apply it too on the same time before Maximizing the window of&amp;nbsp; Thin App, other wise Thin App capture only installed application without serial/ key.&lt;br /&gt;
After&amp;nbsp; you done, &lt;b&gt;Maximize&lt;/b&gt; the Thin App application, and click &lt;b&gt;Next&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/7.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;7. It take some time to capture the recently content installed at the system on "&lt;b&gt;Post Scan Process&lt;/b&gt;" Just click at Next once it highlight the option of &lt;b&gt;NEXT&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
8. Once you click at &lt;b&gt;Next&lt;/b&gt;, it will give you an option to select the installation files, it already selected by scanning, if you want a particular file out of all, then you can only choose that one and uncheck remaining.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/8.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/8.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
9. Click&lt;b&gt; Next &lt;/b&gt;To proceed, You see a window of project just like that.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/9.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/9.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Its nothing just for granting the right to open and execute the application. By default everyone have a right to execute it, you may select different user by clicking at &lt;b&gt;Add&lt;/b&gt;. Here you find one more option of &lt;b&gt;Sandbox Location&lt;/b&gt;, actually during Executing the program, it make some temp file to execute that, it has a collection of files needed it to execute, it automatically created when you click the application Icon to execute it. select anything as per your desire and click at &lt;b&gt;Next&lt;/b&gt; .&lt;br /&gt;
&lt;br /&gt;
10. It ask you to select the Isolation mode, its nothing just how to integrate with Operating system. Select any option and click &lt;b&gt;NEXT&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/10.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/10.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. You can save your project at your desired path once it create a directory you never need to follow whole path again you simple have a option to built your application through&amp;nbsp; only that project folder.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/11.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/11.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Along with the path, you will get some more options -- like installation of EXE ---you will get an option to built MSI, and Compression method.&lt;br /&gt;
One Excited thing I like about this software is that if you select Fast Compression, it never take too time to Execute&amp;nbsp; the application .&lt;br /&gt;
&lt;br /&gt;
12. Click on &lt;b&gt;Next&lt;/b&gt; to&amp;nbsp; Create the Object,&amp;nbsp; Finally you get a option to built your EXE, Click on &lt;b&gt;BUILT NOW&lt;/b&gt;, and click on &lt;b&gt;Finish.&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/12.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/12.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;13. Search the Path where you saved your project, locate the folder &lt;b&gt;BIN, &lt;/b&gt;and double click on it to open, you will find your whole EXE which you made.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/15.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="511" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/15.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;You can Rename Bin folder as the name of your software and save it some where else.&lt;br /&gt;
&lt;br /&gt;
14. double click on the icon of you application to open it.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/17.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="511" src="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/17.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As i already told you there is some limitation of Every software, it has also a limitation, if you trying to make EXE of your Drivers then you never do it, it has no effect on updates. If there is some requirement of your software, lets say if you install Office 2010 on windows XP it require XML 6.2, so if you make EXE of office 2010, then you must have a XML. 6.2 installed on the system which you trying to execute the office.&lt;br /&gt;
&lt;br /&gt;
But over all its a very Effective tool to make and share application without installing and without corrupting the registry, of windows.</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://i714.photobucket.com/albums/ww150/sandeep3300/Thin%20Apps/th_1.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>INSTALL WINDOWS FROM USB PEN DRIVE/FLASH DRIVE</title><link>http://solutionatoz.blogspot.com/2009/07/install-windows-from-usb-pen-driveflash.html</link><category>operating system</category><category>partition</category><category>windows</category><pubDate>Tue, 21 Jul 2009 17:57:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-92908989399119290</guid><description>Installation through floppy is very common on Windows 3.1 and Windows 95  then CD\DVD were become very common on Windows 2000 and XP Installation , and  still we are using the CD or DVD to Install our Operating system.Its sounds nice when you have a CDROM\DVDROM installed on your system, but whats that if you purchase a new branded PC or Laptop but it has no CD\DVD ROM. Don't eat your fingers its very simple, you can Install it with Flash drive I mean Pendrive.&lt;br /&gt;
Now your next question is How we can  Install Windows through Pen drive, as  we know it required a bootable media? well  my answer is very easily then you ask  How ? Just through this.&lt;br /&gt;
&lt;br /&gt;
1. First download a software program &lt;a href="http://www.sentire.co.uk/wp-content/uploads/2009/01/WinSetupFromUSB-0.1.1.exe"&gt;WINSETUPFROMUSB0.1.1&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
2. It require:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt; Windows XP CD&lt;/li&gt;
&lt;li&gt;USB DRIVE(Pen drive\ Flash drive)&lt;/li&gt;
&lt;li&gt;Windows PC having CD\DVD ROM&lt;/li&gt;
&lt;/ul&gt;3. After you get these things Install the software and you get then lunch it&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkqV9WOgivNiTZsPE1Bgsyov9B0f7nkk-VvU9pH4CYlLMiCmWNDav9wZKz4m-kYrUBPYmkPTJ_VAy798D9hpkcFS2HyG-klJQUsBWCYcoFK86tMMB16rFJ0TIT5zqRqSjYvA6Mam5TvP0/s1600-h/Win2+flash.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkqV9WOgivNiTZsPE1Bgsyov9B0f7nkk-VvU9pH4CYlLMiCmWNDav9wZKz4m-kYrUBPYmkPTJ_VAy798D9hpkcFS2HyG-klJQUsBWCYcoFK86tMMB16rFJ0TIT5zqRqSjYvA6Mam5TvP0/s400/Win2+flash.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;4. Browse the source of Windows like you inserted a CD of windows XP and in Drive R:&lt;br /&gt;
5. Then Browse the USB Drive if it not apear  autmatically then click on refresh buttone two three times.&lt;br /&gt;
6. after that click on HP format Tool and format it&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzbZIx0mx7pt_K58BWLe6c2Vwrz3ejjXaZuGYBEbyGGUvNFumWYsxs0cc-YJm-DwdcDkiFGoPphrlC43hyphenhyphen1IQTnLQRsRmxjPezIUtz7ql3rjibA88CBNTB1X50ab1B58mfj0mmdkSZJ50/s1600-h/hp+format+tool.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzbZIx0mx7pt_K58BWLe6c2Vwrz3ejjXaZuGYBEbyGGUvNFumWYsxs0cc-YJm-DwdcDkiFGoPphrlC43hyphenhyphen1IQTnLQRsRmxjPezIUtz7ql3rjibA88CBNTB1X50ab1B58mfj0mmdkSZJ50/s400/hp+format+tool.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
7. Only by FAT32 file system.&lt;br /&gt;
8. Then click on "Close", and on WinsetupfromUSB click on "GO", It take little bit time. Now USB BOOTABLE MEDIA is ready.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;INSTALL WINDOWS FROM USB PEN DRIVE &lt;/u&gt;&lt;br /&gt;
&lt;u&gt; &lt;/u&gt;&lt;br /&gt;
1. After it change the laptop BIOS boot sequence - Boot from USB ( Check the BIOS menual  at the Motherboard book)&lt;br /&gt;
2. Now it start booting from USB Pendrive and give the screen&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh96izYXtUWu2e2REWuCcsU8QDEQO1x2KJ-syHv_boptzePZmrUOhO_pdYHFSTmNa8YsyimKpzf22N8quiq2yjBu9Czqu9XgmcFM2HU9uzvkSmUKhJcqfxOrIbZNaDtO7gyLpwRj63vCHk/s1600-h/1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh96izYXtUWu2e2REWuCcsU8QDEQO1x2KJ-syHv_boptzePZmrUOhO_pdYHFSTmNa8YsyimKpzf22N8quiq2yjBu9Czqu9XgmcFM2HU9uzvkSmUKhJcqfxOrIbZNaDtO7gyLpwRj63vCHk/s400/1.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
press ' Enter '  you get next screen&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmUPg1_N9kbxtpd0DTPSdC0appbwEPM9PpCPeHeNp-Gm2CwwyyYW9zSGQ167h9CQrGiPs8tSBWBgzMF2zNlMhYRfcZxSNYdgmaR_b7Nwg2KF5rxdjzcRTsU2KPerHg79vAMZ2sp0zWXYI/s1600-h/3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmUPg1_N9kbxtpd0DTPSdC0appbwEPM9PpCPeHeNp-Gm2CwwyyYW9zSGQ167h9CQrGiPs8tSBWBgzMF2zNlMhYRfcZxSNYdgmaR_b7Nwg2KF5rxdjzcRTsU2KPerHg79vAMZ2sp0zWXYI/s400/3.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
3. On Hiting ENTER if you not get this screen then press 'e' for edit command line&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgu8v-0mfxwGd6s6qGJmUvwZ3BjtVY_ZPtwUm8eZ2KztH7mubpmBrytY2zgr88svzQUzCw0SYmc2V2Iv9waTm-67My3AvS7ncamZn_b7ezm5sVlyJDUO1MqHa-lXlDHQYW63a78KFaLgnw/s1600-h/2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgu8v-0mfxwGd6s6qGJmUvwZ3BjtVY_ZPtwUm8eZ2KztH7mubpmBrytY2zgr88svzQUzCw0SYmc2V2Iv9waTm-67My3AvS7ncamZn_b7ezm5sVlyJDUO1MqHa-lXlDHQYW63a78KFaLgnw/s400/2.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;and select option 2 configfile /winsetup.list and press ' b' to boot it&lt;br /&gt;
4. Press 'Enter' on screen First Part of Windows XP Prof.After it windows start Booting through Pendrive, then it give you same option as you get through booting CD.&lt;br /&gt;
&lt;br /&gt;
&lt;b style="color: red;"&gt;Note&lt;/b&gt;:- Just remember one thing when it show you the partition it display two drives, one is your HARD DISK and other one is your PEN DRIVE just check its size don't confuse on it, select the partition, or create the partition and follow the step, to know how to Install windows XP  see the post &lt;a href="http://www.petri.co.il/install_windows_xp_pro.htm"&gt;Install windows XP&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: red;"&gt;Remember It take lots of time to copy the files from pen drive to XP installation partition.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
5. After copying the Installation files Windows restart the windows, again boot from Pendrive, and select option 2 'Second part of windows Xp prof. setup+ first time windows Start'.&lt;br /&gt;
&lt;br /&gt;
6.  Then GUI mode of Installation start and it finish the Installation, it take normal time, again it restart and you also have to select 2nd option to start windows first time.&lt;br /&gt;
&lt;br /&gt;
7. When it start click on windows drive say it is D: drive (Remember you find two Removable  disk on your system C: and E: , C: is your pen drive REM drive, select your first partition of hard disk).&lt;br /&gt;
&lt;br /&gt;
8. Click on Tools - Folder Options -View - Show Hidden Files And Folder and also unchecked its two options 'Hide extentions for known file types and Hide protected operating system'&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMsCUHmdcey-1Ik6NysJ85OYvRDewH92qi-1mWZTs6by6CI6197L9E-9uBzIQ4UqUFBb9MBIiAcw7iWe4GrCigkIZUg6PmaKxS8iPsjsYF_sCmdJ4YsmCCa7Q9N-8xospzfnCiMbVF0ck/s1600-h/folder+options.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMsCUHmdcey-1Ik6NysJ85OYvRDewH92qi-1mWZTs6by6CI6197L9E-9uBzIQ4UqUFBb9MBIiAcw7iWe4GrCigkIZUg6PmaKxS8iPsjsYF_sCmdJ4YsmCCa7Q9N-8xospzfnCiMbVF0ck/s400/folder+options.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;9. Click on apply and OK, after it you see some more files appear on the Windows drive click on Boot.ini file to open it&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsPfZ9HJ6tO7mCHygS_UOT9X820axV0rmOzJQz1p59J8O8x25Ig6IX6muitGzfZRzzVr-ywovnny6MMEYHcgMVT4pv8FaF8Z3zUdS6q628khwy0nWRE8QmhKc4wHObxc-IMjcZqTb_02A/s1600-h/boot.in.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsPfZ9HJ6tO7mCHygS_UOT9X820axV0rmOzJQz1p59J8O8x25Ig6IX6muitGzfZRzzVr-ywovnny6MMEYHcgMVT4pv8FaF8Z3zUdS6q628khwy0nWRE8QmhKc4wHObxc-IMjcZqTb_02A/s400/boot.in.jpg" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;10. You find &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Timeout=1 change it 30&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;rdisk(1) on line 3 and 5. change 1 to  0 see the above file screen shoot.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;and click on save .&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;11. Then again go to Tools - folder option - view- and hide the hidden file and check its two options.now remove pen drive, restart the windows and enjoy the Operating system.&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;span style="color: red;"&gt;Note&lt;/span&gt;:- some time you get error &lt;/div&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijrhjWKTJV_lYHCrvWOgovvngbEiMoN9flWUNJfMBdLOkcph5d8TxAluv_-T63GbTmaceTCJin9i-4uPakacGCWuf6bDNoYK_p9JXcPVKdE66Tq-kzQ_91d3aIY-4bsOBI0dIJ-6X0cBk/s1600-h/5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijrhjWKTJV_lYHCrvWOgovvngbEiMoN9flWUNJfMBdLOkcph5d8TxAluv_-T63GbTmaceTCJin9i-4uPakacGCWuf6bDNoYK_p9JXcPVKdE66Tq-kzQ_91d3aIY-4bsOBI0dIJ-6X0cBk/s400/5.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
on step 2 screen 2 then restart computer and boot again and when you get the screen press 'e' to edit the option&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1Jep4xwxfJumvz8KJljp5O4N7wCdkuts107I5rIZd-oXmDOcDNKUC3jIdBvrASAkBeki_RXnMM7prC8NNyx-fpvdt6JL-aF_jlNoM8UCDsmp07g0OR8KmBvhhgSbuEKT-qz0n7BKuWD4/s1600-h/4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1Jep4xwxfJumvz8KJljp5O4N7wCdkuts107I5rIZd-oXmDOcDNKUC3jIdBvrASAkBeki_RXnMM7prC8NNyx-fpvdt6JL-aF_jlNoM8UCDsmp07g0OR8KmBvhhgSbuEKT-qz0n7BKuWD4/s400/4.jpg" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;select option 2 with arrow key 'chainloader (hd0,0/ntldr' and press ' b' to boot.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkqV9WOgivNiTZsPE1Bgsyov9B0f7nkk-VvU9pH4CYlLMiCmWNDav9wZKz4m-kYrUBPYmkPTJ_VAy798D9hpkcFS2HyG-klJQUsBWCYcoFK86tMMB16rFJ0TIT5zqRqSjYvA6Mam5TvP0/s72-c/Win2+flash.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Download Your Feverate Linux Destro (Operating system) free.</title><link>http://solutionatoz.blogspot.com/2009/07/download-your-feverate-linux-destro.html</link><category>Linux</category><category>operating system</category><category>Software</category><pubDate>Mon, 6 Jul 2009 12:31:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-1345419508664792731</guid><description>&lt;span style="font-family: georgia;"&gt;After a long search I found these Linux destro, some of them  are very common, and everyone knows them&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: georgia;"&gt;RED HAT, FEDORA, UBUNTU etc.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: georgia;"&gt;While I tried to give you a short description and a download link so that you can also use it on your PC.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: blue;"&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://fedoraproject.org/"&gt;&lt;b&gt;FEDORA&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTuPs3vNo-_aK9mvOqA63UaHJZU4_tOwdVaagwZOyeVLEtA-Omi0UqhOz7VTqzE4K9HmZvkGnKIM8i9d3a4P917_VFROAbi9zOc-kHtiW1KegNy5nWB-H8oFjY8TblxmGktheK7AxVPiU/s1600-h/fedora.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTuPs3vNo-_aK9mvOqA63UaHJZU4_tOwdVaagwZOyeVLEtA-Omi0UqhOz7VTqzE4K9HmZvkGnKIM8i9d3a4P917_VFROAbi9zOc-kHtiW1KegNy5nWB-H8oFjY8TblxmGktheK7AxVPiU/s320/fedora.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;
Fedora is a Linux-based operating system that showcases the latest in free and open source software. &lt;b&gt;&lt;/b&gt;It is Based on RED HAT Linux and release in every  6 to 9 month  period, actually it is a RED HAT BETA release. You can run all command which included in RED HAT.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://fedoraproject.org/get-fedora"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;DOWNLOAD FEDORA&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: #e69138;"&gt;&lt;/div&gt;&lt;div style="color: #e69138;"&gt;&lt;a href="http://www.ubuntu.com/"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;UBANTU&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDAQjuB1mNwlEGNrFMPpiW24V-c0y1K7ekIcZwCHevDFNAELcj5t-OxDVC4mN3LM6DXSQE0o7UYvV6gvzXsFckehlvOP9fjQNUUwBWYIprLYSetGasfksas9RUZhWNkY62lez2_Kt1Ax8/s1600-h/ubuntu.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDAQjuB1mNwlEGNrFMPpiW24V-c0y1K7ekIcZwCHevDFNAELcj5t-OxDVC4mN3LM6DXSQE0o7UYvV6gvzXsFckehlvOP9fjQNUUwBWYIprLYSetGasfksas9RUZhWNkY62lez2_Kt1Ax8/s320/ubuntu.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;Ubuntu is a community developed, Linux-based operating system that is perfect for laptops, desktops and servers. It contains all the applications you need - a web browser, presentation, document and spreadsheet software, instant messaging and much more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href="http://www.ubuntu.com/getubuntu/download"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;DOWNLOAD UBUNTU&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href="http://www.opensuse.org/en/"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;span style="color: #38761d; font-weight: normal;"&gt;OPEN SUSE &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWHA3aY56CLPUa5iT2Plqv3nCRtxkK7gkeuxgVbAHF8Cfs1Qla_wuMEO-aKqIWDazCPxwUnUq0Um8QU_nCpVSIUwc5-rvlsK3gcMRhRcTHNvUUgxOZb7FFxofyTnsxzLBxUgCZZItVC5g/s1600-h/suse'.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWHA3aY56CLPUa5iT2Plqv3nCRtxkK7gkeuxgVbAHF8Cfs1Qla_wuMEO-aKqIWDazCPxwUnUq0Um8QU_nCpVSIUwc5-rvlsK3gcMRhRcTHNvUUgxOZb7FFxofyTnsxzLBxUgCZZItVC5g/s320/suse'.JPG" /&gt;&lt;/a&gt;&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;span style="color: #38761d; font-weight: normal;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
It is a free and Linux-based             operating system for your PC, Laptop or Server.             You can surf the web, manage your e-mails and photos,             do office work, play videos or music.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;br /&gt;
&lt;b&gt;&lt;b&gt;&lt;a href="http://software.opensuse.org/"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;DOWNLOAD OPEN SUSE&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www2.mandriva.com/linux/powerpack/"&gt;&lt;span style="font-size: large;"&gt;&lt;b style="color: #6fa8dc;"&gt;Mandriva&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: black;"&gt;&lt;span style="font-size: small;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPTEDTRUfilT-AYEQUppNNFLlk4o3m3o3F-GNhgK1IRfx118i_0ipoxaoJPKgvAhUoAW9D_hVmEXFXRS5jFIxQxfQgnrNx2T1mImBGVh_oaJTJUbFlgjyKeSYbq0_o7rlWO5MNPn0ytBk/s1600-h/mandriva.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPTEDTRUfilT-AYEQUppNNFLlk4o3m3o3F-GNhgK1IRfx118i_0ipoxaoJPKgvAhUoAW9D_hVmEXFXRS5jFIxQxfQgnrNx2T1mImBGVh_oaJTJUbFlgjyKeSYbq0_o7rlWO5MNPn0ytBk/s320/mandriva.JPG" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size: small;"&gt; Mandriva is a developed linux, it include some free and trial software, one of them is WINE which can run windows applications on linux, or any exe file in linux.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;b&gt;&lt;b&gt;&lt;b&gt;&lt;a href="http://www.mandriva.com/en/download/free"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;DOWNLOAD MANDRIVA&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;/b&gt;&lt;a href="http://www.kubuntu.org/"&gt;&lt;span style="color: #073763; font-size: large;"&gt;&lt;b&gt;KUBUNTU&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;b&gt;&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj1_JA3EO4c3XTwNYYgH-8Ux1NfV6MHfuVdUlFQF-cr1RCG6MmS7euMRgixgS2gU0F6iW7dbFnf1s9lQlQCFzBPQ5OsOtOQBezaiZnw8ugHEUs2Dg5h3wThNohGmQlE8I2H_dS7vdPF8XA/s1600-h/kubuntu.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj1_JA3EO4c3XTwNYYgH-8Ux1NfV6MHfuVdUlFQF-cr1RCG6MmS7euMRgixgS2gU0F6iW7dbFnf1s9lQlQCFzBPQ5OsOtOQBezaiZnw8ugHEUs2Dg5h3wThNohGmQlE8I2H_dS7vdPF8XA/s320/kubuntu.JPG" /&gt;&lt;/a&gt;&lt;b&gt;&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;  &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;/b&gt;Kubuntu is a free, user-friendly operating system based on the K Desktop Environment and on the award winning Ubuntu operating system. With a biannual release cycle and at least 18 months of free security updates for each release, it is the secure, stable computing environment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div style="color: black;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;b&gt;&lt;b&gt;&lt;b&gt;&lt;a href="http://www.kubuntu.org/getkubuntu"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;DOWNLOAD KUBUNTU&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;/b&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: #134f5c;"&gt;&lt;a href="http://www.linpus.com/"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt; LINPUS&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="color: #134f5c;"&gt;&lt;/div&gt;&lt;div style="color: #134f5c;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYIWBR9kgORug-ejnt7ZvKWvFTJVKOIpO7Fj2UbuQkSNI0cEjqKTF1ynJ4D9N-5JSMvVi35M4LY-oa-jw3ZjaiI5paFBKWhCpoLWojrS5mRXB0gP7afvAIXEPvP_SzSdsdbRR9iG0sr88/s1600/linpus.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYIWBR9kgORug-ejnt7ZvKWvFTJVKOIpO7Fj2UbuQkSNI0cEjqKTF1ynJ4D9N-5JSMvVi35M4LY-oa-jw3ZjaiI5paFBKWhCpoLWojrS5mRXB0gP7afvAIXEPvP_SzSdsdbRR9iG0sr88/s320/linpus.JPG" /&gt;&lt;/a&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;/div&gt;Linpus is an innovator and a pioneer in bringing user friendly open source solutions to the mass consumer market.Set up more than 10 years ago, Linpus has worked on open source solutions across numerous platforms and products, building up a reputation for engineering excellence, and evolving into a world class software vendor. We stand out by excelling in key areas important to both consumers and manufacturers alike: creative, highly intuitive user interfaces that are customized on a customer-by-customer basis to add real value; hardware integration expertise ensuring a flawless out of-the-box experience; and, unprecedented &lt;span style="font-size: small;"&gt;&lt;span style="color: black;"&gt;levels of on-site support and service.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="color: blue;"&gt;&lt;span style="color: black;"&gt; It is one of my feverate Linux, because it include MPlayer to play media files of any formet and messenger, webcam, and many more great softwares. Many of Laptop companies include it in their machine ( Acer, Ban Q, Asus, Lenovo etc)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;b&gt;&lt;b&gt;&lt;a href="http://www.linpus.com/download_1.php"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;DOWNLOAD LINPUS&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/b&gt;&lt;/b&gt;&lt;span style="font-size: small;"&gt;&lt;span style="color: blue;"&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;span style="font-size: small;"&gt;&lt;span style="color: blue;"&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;span style="color: blue;"&gt;&lt;span style="color: black;"&gt; You can find many more free Linux Destro, but these are very common and you can enjoy it when you use them&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="color: blue;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/b&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTuPs3vNo-_aK9mvOqA63UaHJZU4_tOwdVaagwZOyeVLEtA-Omi0UqhOz7VTqzE4K9HmZvkGnKIM8i9d3a4P917_VFROAbi9zOc-kHtiW1KegNy5nWB-H8oFjY8TblxmGktheK7AxVPiU/s72-c/fedora.JPG" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Install Windows Over Linux</title><link>http://solutionatoz.blogspot.com/2009/04/install-windows-over-linux.html</link><category>Fedora</category><category>Linux</category><category>operating system</category><category>windows</category><pubDate>Sat, 25 Apr 2009 18:26:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-7896906430302251510</guid><description>Friends, as i already mention on my previous post that today laptops or Desktop of branded company&amp;nbsp; have preloaded Operating system, so&amp;nbsp; you must have to make some space or new partition on them&amp;nbsp; to save your data.&lt;br /&gt;
If&amp;nbsp; Linux is installed in your PC as a preloaded OS, and you don't want to delete that from your computer, but want windows to install over LINUX , then my post really help you.&lt;br /&gt;
Some one said its very difficult. and you have to install windows first then install linux like fedora, Red Hat over the windows. But nothing like that. just read my Posting&amp;nbsp; you will succide 100%.&lt;br /&gt;
&lt;br /&gt;
Lets take a example that Preloaded OS is Fedora Linux ,and you have 25GB Hard disk , It has two partitions like this&lt;br /&gt;
&lt;br /&gt;
1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 107M&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; /boot&lt;br /&gt;
2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 24.93G&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LogVol00&lt;br /&gt;
&lt;br /&gt;
logical volume is the default volume on fedora/redhat linux , beceause it is very easy to&amp;nbsp; manage ( You can easily add and remove partition/ or space within it ).&lt;br /&gt;
&lt;br /&gt;
To install&amp;nbsp; windows you must make some space out of&amp;nbsp; logical volume, Please&amp;nbsp; read my previous post to make some space or new partition in&amp;nbsp; Preloaded Environment&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://solutionatoz.blogspot.com/2009/04/shrink-lv-logical-volume-defualt.html"&gt;&lt;b&gt;&lt;span style="color: red;"&gt;Shrink LV (Logical Volume ) default Installation group of Fedora/ Red Hat linux&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and &amp;nbsp; &amp;nbsp; &lt;a href="http://solutionatoz.blogspot.com/2009/03/laptops-are-more-common-machine-these.html"&gt;&lt;b style="color: red;"&gt;Resize Pre loaded Operating system&amp;nbsp;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;b style="color: red;"&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
After reading it&amp;nbsp; you are able&amp;nbsp; make some space to install&amp;nbsp; windows over it .&lt;br /&gt;
If you are trying to install windows server 2003, Vista or any other latest OS of windows, then just boot the CD/DVD and find the free space, and make partition &amp;nbsp; on it and follow the online instruction, or its documentations&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;b&gt;&lt;span style="color: red;"&gt;Rember only choose&amp;nbsp; free space which you created, to install new OS, otherwise you lost your Linux.&amp;nbsp; after booting from windows CD, it will display&amp;nbsp; two partition one is around 100mb, other is&amp;nbsp; windows fault tolrence don't touch them. Just after these two you see free space, just click on that and make partition &lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;If you want to install 98, Windows 2000, or XP then may be it not show you any option directly&amp;nbsp; to create&amp;nbsp; partition or may be windows XP not boot from its CD then what to do.. don't worry. Just follow these steps, &lt;i&gt;you need windows Xp CD , and a 98 CD..&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Boot 98 CD with CD Rom Support. when you reach at A: promt then type "fdisk"&lt;/li&gt;
&lt;/ul&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A:&amp;gt;fdisk&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; click 'y' to go inside the fdisk when it ask to do so&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;After a screen appear like this&amp;nbsp; &lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/1.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="304" src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/1.jpg" width="488" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; just press 4 to display&amp;nbsp; the forth option"Display partition Information"&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;It will display&amp;nbsp; information of the partition of your hard disk, also display the status of partition ( active, dos / non dos and total space etc) .&lt;script&gt;
britepic_id="1047675";britepic_src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/2.jpg";britepic_show_ads=1;britepic_show_menu=0;britepic_href="http%3A//i714.photobucket.com/albums/ww150/sandeep3300/fdisk/2.jpg";britepic_width=420;britepic_height=262;
&lt;/script&gt;&lt;script src="http://www.britepic.com/britepic.js"&gt;
&lt;/script&gt;&lt;noscript&gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;img src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/2.jpg"" width="420" height="262"&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&lt;/noscript&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;see the partition which are active... it show&amp;nbsp; two partition which are active&amp;nbsp; then click "escape" button of&amp;nbsp; keyboard and press 1 to creat new partition&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/4.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="263" src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/4.jpg" width="452" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It will ask&amp;nbsp; "Do you want to give it full space to creat new partition........." press 'y' if you want to give it full space or 'n' to customize the partition size.&lt;script&gt;
britepic_id="1047675";britepic_src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/5.jpg";britepic_show_ads=1;britepic_show_menu=0;britepic_href="http%3A//i714.photobucket.com/albums/ww150/sandeep3300/fdisk/5.jpg";britepic_width=420;britepic_height=262;
&lt;/script&gt;&lt;script src="http://www.britepic.com/britepic.js"&gt;
&lt;/script&gt;&lt;noscript&gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;img src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/5.jpg"" width="420" height="262"&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&lt;/noscript&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Now it creat a new partition click&amp;nbsp; ok "may be it says it will need to restart the window to continue then press "ESC" and go at A:\&amp;gt; and write 'Restart' then restart the PC and boot again with 98 CD with above&amp;nbsp; step&amp;nbsp;&lt;/li&gt;
&lt;li&gt;At A:/&amp;gt;&amp;nbsp; type fdisk and now press 2 to make your partition active .&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/7.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="256" src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/7.jpg" width="450" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
and press '3' to make 3rd partition active which u created recently.&lt;br /&gt;
now click on "Esc" again "Esc" to come out from Fdisk wizard and write command format c: with switches /q and /s&lt;br /&gt;
/q for quick and /s for transfer system file.&lt;br /&gt;
A:/&amp;gt;formate c: /q/s &lt;script&gt;
britepic_id="1047675";britepic_src="&lt;span class="required_britepic_input"&gt;http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/10.jpg&lt;/span&gt;";britepic_show_ads=&lt;span class="optional_britepic_input"&gt;1&lt;/span&gt;;britepic_show_menu=&lt;span class="optional_britepic_input"&gt;0&lt;/span&gt;;britepic_href="&lt;span class="optional_britepic_input"&gt;http%3A//i714.photobucket.com/albums/ww150/sandeep3300/fdisk/10.jpg&lt;/span&gt;";britepic_width=&lt;span class="optional_britepic_input"&gt;420&lt;/span&gt;;britepic_height=&lt;span class="optional_britepic_input"&gt;262&lt;/span&gt;;
&lt;/script&gt;&lt;script src="http://www.britepic.com/britepic.js"&gt;
&lt;/script&gt;&lt;noscript&gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;img src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/10.jpg"" width="420" height="262"&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&lt;/noscript&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;It may say that quick format will not done, make it normal format, just press 'y' for yes, and&amp;nbsp; find your CD Rom drive for windows 98 other then C: like here its E: &lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;span style="color: red;"&gt;Note:- it will alocate a RAM drive after C: drive and after Ram drive you will find your CD ROM drive so don't confuse just check it by typing command 'dir' if it display the directory 'win98' that means it is your CD ROM drive.&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Now enter command "cd win98"&amp;nbsp; to change directory and "smartdrv" to install smartdrive&lt;/li&gt;
&lt;/ul&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E:\&amp;gt;cd win98&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E:\win98&amp;gt;smartdrv&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Half of your work is done, now remove CD and insert Windows XP CD,&amp;nbsp; find their Drive letter and write command 'cd i386' and 'winnt'&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E:\.&amp;gt;cd i386&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; E:\i386&amp;gt;winnt&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/12-1.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="290" src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/12-1.jpg" width="469" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;It will take some time to copy the files and after that it will restart and boot the system give it some time, now nothing to do just follow the steps&amp;nbsp; on the screen&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/13.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="285" src="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/13.jpg" width="501" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: red;"&gt;Note:- Don't format the partition, if it ask to format then just choose the option "Leave partition without format"&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
After windows Install then Insert your linux CD/DVD and click on Upgrade installation and just rebuilt the boot loader after that both linux and windows will work.&lt;br /&gt;
&lt;br /&gt;
Note:- to know how to get linux back read "&lt;a href="http://solutionatoz.blogspot.com/2008/07/recovering-grub-boot-loader.html"&gt; Recovering Grub Boot Loader&lt;/a&gt; "&lt;br /&gt;
&lt;br /&gt;
If you do step wise then you definetly Install windows over linux, without loosing your preloaded linux .</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://i714.photobucket.com/albums/ww150/sandeep3300/fdisk/th_1.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Shrink LV (Logical Volume ) default Installation group of Fedora/ Red Hat linux</title><link>http://solutionatoz.blogspot.com/2009/04/shrink-lv-logical-volume-defualt.html</link><category>Fedora</category><category>Linux</category><pubDate>Thu, 23 Apr 2009 16:17:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-3044081554961146072</guid><description>&lt;div style="font-family: inherit;"&gt;Hi, friends, as I mention on my earlier post that today Linux is also going to popular OS. So the Computer vender generally ships preloaded OS like Vista, LINUX etc to the laptop or Desktop,&amp;nbsp; and only give a single partition for work on which already system files are Installed &amp;nbsp;with it they generally hide one partition called recovery Installation . If you get any problem get attacked by virus then with a single button you get back to&amp;nbsp; your previous stat at which you purchased your PC. But what about your precious data , well it is lost.&lt;/div&gt;&lt;div style="font-family: inherit;"&gt;If you get Windows as a Preloaded OS then you are very Lucky because you get many stuff or software related to create /resize partition (on internet some are free) , which can make a room ( resize your existing partition and make new partition) to save your data. And by chance you get Linux like Fedora red hat SUSE etc&amp;nbsp; then you definitely suffer more&amp;nbsp; for that I already mention what to do,&amp;nbsp; for detail see my previous &lt;b&gt;&lt;a href="http://solutionatoz.blogspot.com/2009/03/laptops-are-more-common-machine-these.html" style="color: #e06666;"&gt;Resizing the Preloaded Operating system&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="font-family: inherit;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: inherit;"&gt;&lt;span style="font-size: small;"&gt;Now come to the point If you try to resize the &lt;st1:city w:st="on"&gt;&lt;st1:place w:st="on"&gt;LV&lt;/st1:place&gt;&lt;/st1:city&gt; partition (Logical Volume) on generally fedora/ red hat&amp;nbsp; then you has to do some extra command line steps. Don’t worry these are easy as GUI, but you have to do some labor.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;div style="font-family: inherit;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;follow these steps for easy configuration:--&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;span style="font-size-adjust: none; font-size: small; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif; font-size: small;"&gt;Boot Fedora Installation CD/DVD&amp;nbsp; at rescue mode&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/1.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="356" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/1.jpg" width="490" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It take some time to go to rescue mode after boot , select keyboard layout and language,&amp;nbsp;&lt;span style="font-size-adjust: none; font-size: 7pt; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;"&gt; &lt;/span&gt;After that it ask you to choose the “NETWORK SETUP” so just skip it because there is no need to setup Network&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;New&amp;nbsp; screen appear, which Inform you that&amp;nbsp; “ The rescue environment will now attempt to find your Linux installation and mount it under the directory&amp;nbsp; /mnt/sysimage” . Click “CONTINUE ” &lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/2.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="273" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/2.jpg" width="495" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;ul style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li&gt;If everything is Ok , then you get the screen like this&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/3.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="282" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/3.jpg" width="509" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
after clicking on “ok” you get Bash shell&lt;br /&gt;
Now type the “mount” command to see the file system mounted on mnt/sysimage, also use df –h to see the disk usage , write down the results because you really need that when you  take next steps like volume used etc&lt;br /&gt;
&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #mount&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #df –h&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;br /&gt;
&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;script&gt;
  britepic_id="1047675"; britepic_src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/4.jpg";britepic_show_ads=1;britepic_show_menu=0; britepic_href="http%3A//i714.photobucket.com/albums/ww150/sandeep3300/PV/4.jpg";
&lt;/script&gt; &lt;script src="http://www.britepic.com/britepic.js"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;noscript&gt;&amp;amp;amp;amp;amp;amp;amp;amp;lt;img src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/4.jpg"&amp;amp;amp;amp;amp;amp;amp;amp;gt;&lt;/noscript&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;/dev/VolGroup00/LogVol00 is the LV group partition which you have to shrink  so write down its size used space etc.Unmount everything under /mnt/sysimage and finally /mnt/sysimage itself. Use the "-l" option for umount if you get complaints about busy devices. &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;#umount  /mnt/sysimage/boot&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;#umaunt  /mnt/sysimage/dev&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;#umount /mnt/sysimage/proc  etc&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/5.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="178" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/5.jpg" width="420" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now execute command “e2fsck –f” (e2fsck is used to check a Linux &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;second extended file system (ext2fs))and “resize2fs” with the size till &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;you want your new LV&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;#e2fsck –f /dev/VolGroup00/LogVol00&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;#resize2fs /dev/VolGroup00/LogVol00 3G&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/6.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="179" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/6.jpg" width="607" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;script&gt;
 britepic_id="1047675";&amp;nbsp;britepic_src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/6.jpg";
&amp;nbsp;britepic_show_ads=1; britepic_show_menu=0;&amp;nbsp;britepic_href="http%3A//i714.photobucket.com/albums/ww150/sandeep3300/PV/6.jpg"; 
&lt;/script&gt; &lt;script src="http://www.britepic.com/britepic.js"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;noscript&gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;img src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/6.jpg"&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&lt;/noscript&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Remember one thing LVM allocates space in 32MB chunks by default, the new size must be a multiple of the LVM extent size. Leave 20% free space on the volume so that all the files work well. Don’t shrink full file system.&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Now type “lvm” and then execute the command “lvresize” &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Lvm&amp;gt;lvresize –-size 3G /dev/VolGroup00/LogVol00&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/7.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="122" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/7.jpg" width="611" /&gt;&lt;/a&gt;&lt;i&gt;&lt;span style="color: #e06666;"&gt;3G means you want to shrink the partition till it becom 3G, you can use your own value like 20G , 10G as you want.&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Now write "exit" and then again "exit". Here you done half of your work. At the LV group you created a free space. If you want only till that step then you leave it here, but if you want to make free space outside the LV group to install other OS then continue. &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;After writing “exit” at Bash shell system restart, so you have to&amp;nbsp; boot it into rescue modea gain&amp;nbsp; as mention above but now skip the step when it says it want to attempt to mount the system in mnt/sysimage directory.&lt;br /&gt;
&amp;nbsp; &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/8.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="305" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/8.jpg" width="550" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;br /&gt;
Now you get Bash shell again, activate the LVM by the command “lvm vgchange –a y”&lt;br /&gt;
&lt;ul style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/ul&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #lvm vgchange –a y&lt;/div&gt;&lt;ul style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li&gt;and execute command fsck –fc  on /dev/VolGroup00/LogVol00 to update /etc/fstab directory.&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #fsck –fc   /dev/VolGroup00/LogVol00&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;ul style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li&gt;If you have knowledge of Linux then there is a swap file system which is  created after VolGroup00/LogVol00 that is VolGroup00/LogVol01 , so to make new room you have to first remove it and then again make it after the new  LV. Don’t worry you just temporarily removing it&lt;/li&gt;
&lt;li&gt;Execute command  “lvm lvs”&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #lvm lvs&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; It shows you the exect size of your swap file say it is 1.59G&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Execute command “lvm lvremove” , “lvm lvcreate” on /dev/VolGroup00/LogVol01&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #lvm lvremove /dev/VolGroup00/LogVol01&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; #lvm lvcreat ---size 1.59G –name LogVol01 VolGroup00&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; #mkswap /dev/VolGroup00/LogVol01&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/9.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="111" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/9.jpg" width="543" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Now Check how much you can shrink it by executing the command “lvm pvs”&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #lvm pvs &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Write down the result&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/10.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="120" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/10.jpg" width="523" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Now you can resize your /dev/sda2 physical volume to final size in between anything 10G to anything between 24.88G .&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Execute command “lvm pvresize” &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #lvm pvresize /dev/sda2 --setphysicalvolumesize  16G &lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;If command fails then that means your shrinking size is too small because there are still allocated extents other then swap,  move it like this.&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Execute command “lvm pvs units s” ‘s’ for sectors it will display the partition size in sectors take note of PSIZE  and execute parted to display the partion size in sectors (starting and ending ) and make note of that&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif; text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/11.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="205" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/11.jpg" width="552" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;Now here you already free the space within LV group, and shrink the boundry of the lv group, so you have just take start sector of LVM and reduce the end sector to shrink it but make safty mark after 64MB (131072 sectors) .&lt;br /&gt;
&lt;ul style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li&gt; Execute command “parted”&lt;/li&gt;
&lt;/ul&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #parted /dev/sda rm 2         (2 is s/no of partition)&amp;nbsp;&amp;nbsp; &lt;/div&gt;&lt;ul style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li&gt;And recreat the partition like this&amp;nbsp; &lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #parted /dev/sda mkpart primary  208845s  40000000s&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #parted /dev/sda set 2 lvm on&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #parted /dev/sda print&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/12.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/12.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;/div&gt;&lt;div style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;span style="font-size-adjust: none; font-size: 7pt; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;"&gt; &lt;/span&gt;&lt;br /&gt;
Then execute the commands “fdisk –l /dev/sda” and finally fsck –fc to update /etc/fstab&lt;o:p&gt;&lt;/o:p&gt;  &lt;/div&gt;&lt;div class="ListParagraphCxSpMiddle" style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #fdisk –l /dev/sda&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class="ListParagraphCxSpMiddle" style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #fsck –fc /dev/VolGroup00/LogVol00&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class="ListParagraphCxSpLast" style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif; margin-left: 0in;"&gt;Now you got space as you desire, It’s a example you can put your own values to make your desire partition space .&lt;br /&gt;
&lt;br /&gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;I get reference&amp;nbsp; from these two posts so read these posts if&amp;nbsp; at any point you not understand &lt;br /&gt;
&lt;h1 class="documentFirstHeading" style="font-family: inherit; font-weight: normal;"&gt;&lt;a href="http://fedorasolved.org/Members/zcat/shrink-lvm-for-new-partition"&gt;&lt;span style="font-size: small;"&gt;&lt;span id="parent-fieldname-title"&gt;How to shrink a default install LVM PV to create another partition&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;&lt;h1 class="documentFirstHeading" style="font-family: inherit; font-weight: normal;"&gt;&lt;a href="http://forums.fedoraforum.org/showthread.php?t=154874"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;&lt;b&gt;How to shrink your LVM root volume using rescue mode&lt;/b&gt;&lt;span id="parent-fieldname-title"&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://i714.photobucket.com/albums/ww150/sandeep3300/PV/th_1.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Conficker.C Virus Truth or Rumor Spreading from 1 April</title><link>http://solutionatoz.blogspot.com/2009/03/confickerc-virus-truth-or-rumor.html</link><category>operating system</category><category>Restriction</category><category>Security</category><category>Update</category><category>Virus</category><pubDate>Sat, 28 Mar 2009 11:51:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-7489334162704247476</guid><description>&lt;span style="font-size: 85%;"&gt;&lt;/span&gt;&amp;nbsp; &lt;style&gt;
 st1\:*{behavior:url(#ieooui) } 
&lt;/style&gt;&lt;style&gt;
 &lt;!--  /* Font Definitions */  @font-face  {font-family:Wingdings;  panose-1:5 0 0 0 0 0 0 0 0 0;  mso-font-charset:2;  mso-generic-font-family:auto;  mso-font-pitch:variable;  mso-font-signature:0 268435456 0 0 -2147483648 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal  {mso-style-parent:"";  margin:0in;  margin-bottom:.0001pt;  mso-pagination:widow-orphan;  font-size:12.0pt;  font-family:"Times New Roman";  mso-fareast-font-family:"Times New Roman";} @page Section1  {size:8.5in 11.0in;  margin:1.0in 1.25in 1.0in 1.25in;  mso-header-margin:.5in;  mso-footer-margin:.5in;  mso-paper-source:0;} div.Section1  {page:Section1;}  /* List Definitions */  @list l0  {mso-list-id:377050524;  mso-list-type:hybrid;  mso-list-template-ids:-1124048050 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} @list l0:level1  {mso-level-number-format:bullet;  mso-level-text:;  mso-level-tab-stop:.5in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:Symbol;} @list l0:level2  {mso-level-number-format:bullet;  mso-level-text:o;  mso-level-tab-stop:1.0in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:"Courier New";} @list l0:level3  {mso-level-number-format:bullet;  mso-level-text:;  mso-level-tab-stop:1.5in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:Wingdings;} @list l0:level4  {mso-level-number-format:bullet;  mso-level-text:;  mso-level-tab-stop:2.0in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:Symbol;} @list l0:level5  {mso-level-number-format:bullet;  mso-level-text:o;  mso-level-tab-stop:2.5in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:"Courier New";} @list l0:level6  {mso-level-number-format:bullet;  mso-level-text:;  mso-level-tab-stop:3.0in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:Wingdings;} @list l0:level7  {mso-level-number-format:bullet;  mso-level-text:;  mso-level-tab-stop:3.5in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:Symbol;} @list l0:level8  {mso-level-number-format:bullet;  mso-level-text:o;  mso-level-tab-stop:4.0in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:"Courier New";} @list l0:level9  {mso-level-number-format:bullet;  mso-level-text:;  mso-level-tab-stop:4.5in;  mso-level-number-position:left;  text-indent:-.25in;  font-family:Wingdings;} @list l1  {mso-list-id:474030657;  mso-list-type:hybrid;  mso-list-template-ids:1793631716 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l1:level1  {mso-level-tab-stop:.5in;  mso-level-number-position:left;  text-indent:-.25in;} @list l1:level2  {mso-level-number-format:alpha-lower;  mso-level-tab-stop:1.0in;  mso-level-number-position:left;  text-indent:-.25in;} @list l2  {mso-list-id:498470981;  mso-list-type:hybrid;  mso-list-template-ids:-441818172 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l2:level1  {mso-level-tab-stop:.5in;  mso-level-number-position:left;  text-indent:-.25in;} @list l3  {mso-list-id:1164780285;  mso-list-type:hybrid;  mso-list-template-ids:31772244 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} @list l3:level1  {mso-level-number-format:bullet;  mso-level-text:;  mso-level-tab-stop:.75in;  mso-level-number-position:left;  margin-left:.75in;  text-indent:-.25in;  font-family:Symbol;} ol  {margin-bottom:0in;} ul  {margin-bottom:0in;} --&gt; 
&lt;/style&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;A new virus &lt;span style="color: #ff6666; font-weight: bold;"&gt;Conficker.C&lt;/span&gt; also named as &lt;span style="color: #cc0000; font-weight: bold;"&gt;Downadup&lt;/span&gt;, will Start spreading from 1April. Well Who knows it’s a rumor or a True news but if it is Exactly a News then it will be very pain full experience of this year, for corporate sector. Expert says it is much more dangerous, then its other two forms ( Conficker.A and Conficker.B ), Its main target is &lt;place st="on"&gt;&lt;/place&gt;&lt;placename st="on"&gt;&lt;/placename&gt;Security &lt;placetype st="on"&gt;&lt;/placetype&gt;Center of your System, its alone capable in blocking security update sites.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-size: 85%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;When it execute it will make its multiple copies to system folder in form of small dll files , which will randomly and independently execute itself, some time it drop a copy in Program Files, Documents and settings folders also. It will start automatically in startup, register itself as a service and start blocking to access the security sites, it block some services like &lt;span style="font-weight: bold;"&gt;Automatic Update (wuauserv), Background Intelligent Service(BITS), Windows Security Center(wscsvc), and Antivirus/Security services&lt;/span&gt;, so that it will do its work properly.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-size: 85%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;When it blocks all Security related websites, services then it start connecting with other threat, and malware websites and download updates from the sites, means it will invite more, virus, Worms, spyware to come on to your system and then also send information of your system, sperms mails from your system to other or on your system too. If in case you try to restore your system to back date then you unable to do so because it will already deleted all system restore points in your system after execute.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-size: 85%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;span style="font-weight: bold;"&gt;How you find that your system is infected with this virus?&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Well no one know how it infect the system but check these to find is really your system is infected or not .&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;ol style="margin-top: 0in;" type="1"&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Check the services are disable itself :&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%; font-weight: bold;"&gt;wscsvc - &lt;place st="on"&gt;&lt;/place&gt;&lt;placename st="on"&gt;&lt;/placename&gt;Security &lt;placetype st="on"&gt;&lt;/placetype&gt;Center&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;WinDefend Windows Defender ( In windows Xp and &lt;span style="font-weight: normal;"&gt;&lt;/span&gt;&lt;span style="font-weight: normal;"&gt;available already in &lt;/span&gt;&lt;place st="on" style="font-weight: normal;"&gt;&lt;/place&gt;Vista)&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;wuauserv - Automatic Updates&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;BITS - Background Intelligent Transfer Service&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;ERSvc - Error Reporting Service&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;span style="font-weight: bold;"&gt;WerSvc - Windows Error Reporting Service (&lt;/span&gt;available in &lt;place st="on"&gt;&lt;/place&gt;Vista&lt;span style="font-weight: bold;"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="MsoNormal"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal" style="margin-left: 0.25in;"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;2. Check system restore point is created daily on your system or not&lt;/span&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal" style="margin-left: 0.25in;"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&amp;nbsp;Click START--- RUN--- and type without quota “msconfig” and then click on LAUNCH SYTEM RESTORE --- and then RESTORE MY COMPUTER TO EARLIER POINT and click NEXT and see at right side is it showing you restore point or not .&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal" style="margin-left: 0.25in;"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;You also reach at Restore settings through START--- ALL PROGRAMS --- ACCESSORIES--- SYSTEM TOOLS --- SYSTEM RESTORE &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal" style="margin-left: 0.25in;"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Or try START—RUN and type “rstrui.exe” without quota.&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;ol start="2" type="1"&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Check the registry value available if not then your system is infected. &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;div class="MsoNormal" style="margin-left: 0.5in; text-indent: 2.25pt;"&gt;&lt;span style="font-size: 85%;"&gt;&lt;i&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style="font-weight: bold;"&gt;HKLM\Software\Microsoft\Windows\CurrentVersion\explorer\ShellServiceObjects\{FD6905CE-952F-41F1-9A6F-135D9C6622CC}&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;ol start="3" type="1"&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Check Your antivirus software is updating automatically or not and check all the services of your antivirus is on and working or not.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;div class="MsoNormal"&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;If you found any of the issue that means your system is infected with the Conficker.C worm.&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;&lt;span style="font-weight: bold;"&gt;How to stop it to spread &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;and make less impact of Conficker.C virus ?&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;To stops the impacts of the virus to spread just follow some steps:&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;ol type="1"&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;First of all if it is connected with Network, Internet, Domain then disconnect it. &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Try to install Some updated and newer version of antivirus software and then full scan your system . &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Scan USB drive before backup data and transferring date because it start automatically after just insert in system &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Try to start the disable services (RUN--- START--- type “services.exe” ) mention already. &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;If you suicide then update your system with &lt;a href="http://www.microsoft.com/technet/security/Bulletin/MS08-067.mspx"&gt;&lt;b&gt;MS08-067 patch&lt;/b&gt;&lt;/a&gt; and critical updates by manually download them. &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;If you not suicide then first format whole computer and scan it with Antivirus software(try to scan with bootable antivirus software cd then apply MS08-067 patch. &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;Install latest antivirus software and Change the weak system password with stronger and encrypted password which is harder to crack. &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li class="MsoNormal"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;It will try to contact one or more of the following domains in order to download further (and, presumably, malicious) updates – &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;div class="MsoNormal" style="margin-left: 39pt;"&gt;&lt;span style="font-family: Arial; font-size: 85%;"&gt;btddc.com, d34ft.com, 23drf.com, cscs7.com, mgaazz.com, hhgg3.com, trafficconverter.biz so make them block completely&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: 85%;"&gt;Check the system periodically . to ensure it will not infected again. &lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-style: italic; font-weight: bold;"&gt;For further reading see the posting ::::::&lt;/span&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://msmvps.com/blogs/harrywaldron/archive/2009/01/27/conficker-cleaning-tips-for-corporate-users.aspx"&gt;post 1,&lt;/a&gt;&lt;a href="http://techfragments.com/news/629/Software/Downadup_Win32Conficker-C_Worm_Revving_Up_to_Spread.html"&gt; Post:2 &lt;/a&gt;&lt;a href="http://www.crn.com.au/News/99562,confiker-worm-no-april-fools-day-joke.aspx"&gt;Post 3&lt;/a&gt;&lt;a href="http://www.scamtypes.com/do-you-know-the-4-ways-of-stopping-the-confiker-virus.html"&gt; Post 4&lt;/a&gt; &lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: &amp;quot;; font-size: 85%;"&gt;&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Resizing Preloaded Operating System</title><link>http://solutionatoz.blogspot.com/2009/03/laptops-are-more-common-machine-these.html</link><category>Linux</category><category>operating system</category><category>partition</category><category>Resize</category><category>windows</category><pubDate>Sat, 14 Mar 2009 11:40:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-4438173867707866738</guid><description>Laptops are more common machine these days, people spent huge amount to buy  their desire dream machine. But most of the company sale their product with preloaded Operating System (Windows XP, Windows Vista, SUSE, Ubantu etc) and consume almost all the hard disk space on it, with no extra drive for the backup of their important data on his/her machine. That means if your OS corrupt everything on it will lost (your documents, files, images, video etc). They provide recovery drive, but that will only provide your operating system back not your whole data. One more problem I want to highlight, if you have Windows Vista or any Linux Version installed in your laptop then you are not able to install Windows over Linux and Windows XP on Windows Vista and not even duel boot them together then what to do to solve it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Well every problem has a solution but to do it you have to search for it, but some time you have to pay for that, don't be surprise I am not saying to pay me, I am just saying those tools require money.. here I will explain how to RESIZE THE PRELOADED OPERATING SYSTEM DRIVE  with&lt;b&gt;&lt;span style="color: #674ea7;"&gt; Gnome Partition Editor(gparted)&lt;/span&gt;&lt;/b&gt; its a freeware tool, so don't worry for its payment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To use it follow the steps:-&lt;br /&gt;
&lt;br /&gt;
1. Download the &lt;a href="http://gparted.sourceforge.net/download.php"&gt;GParted (Genome Partition Editor)&lt;/a&gt; Live cd.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://gparted.sourceforge.net/images/gnome-64.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://gparted.sourceforge.net/images/gnome-64.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
2. Then Burn it with Nero or any ISO burner software on a blank disk.&lt;br /&gt;
3. Boot the GParted CD&lt;br /&gt;
4. &lt;script&gt;
 britepic_id="1047675";britepic_src="http://i714.photobucket.com/albums/ww150/sandeep3300/1.jpg";britepic_keywords="Gparted,%20Boot,%20options";britepic_show_ads=1;britepic_show_menu=1;britepic_href="http%3A//www.solutionatoz.blogspot.com";britepic_width=420;britepic_height=264;
&lt;/script&gt;&lt;script src="http://www.britepic.com/britepic.js"&gt;
&lt;/script&gt; &lt;noscript&gt;&amp;amp;amp;amp;lt;img src="http://i714.photobucket.com/albums/ww150/sandeep3300/1.jpg" /&amp;amp;amp;amp;gt;&lt;/noscript&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;5.Select the basic settings like keyboard, language etc.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/2.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/2.jpg" style="cursor: pointer; float: left; height: 264px; margin: 0pt 10px 10px 0pt; width: 420px;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. After it it show you your hard disk partition&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i714.photobucket.com/albums/ww150/sandeep3300/3.jpg" style="height: 264px; width: 420px;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;7. Select your partition which you want to resize, right click on it and choose resize.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;script&gt;
 britepic_id="1047675";britepic_src="http://i714.photobucket.com/albums/ww150/sandeep3300/4.jpg";britepic_keywords="Gparted,%20Boot,%20options";britepic_show_ads=1;britepic_show_menu=1;britepic_href="http%3A//www.solutionatoz.blogspot.com";britepic_width=420;britepic_height=264 
&lt;/script&gt;&lt;script src="http://www.britepic.com/britepic.js"&gt;
&lt;/script&gt; &lt;noscript&gt;&amp;amp;amp;amp;lt;img src="http://i714.photobucket.com/albums/ww150/sandeep3300/4.jpg" /&amp;amp;amp;amp;gt;&lt;/noscript&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;8.  Enter the space you require or can pulls it to decrise the size &lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/5.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="262" src="http://i714.photobucket.com/albums/ww150/sandeep3300/5.jpg" width="420" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;9. click on apply &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://i714.photobucket.com/albums/ww150/sandeep3300/6.jpg" style="cursor: move;" width="420" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;br /&gt;
10. Now some unlocated space is created, just select it to make new partion and right click on, click on NEW tab&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="275" src="http://i714.photobucket.com/albums/ww150/sandeep3300/7.jpg" style="cursor: move;" width="420" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
11. Format it with any desire partition table NTFS, FAT, ext2, ext3.. etc&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;a href="http://i714.photobucket.com/albums/ww150/sandeep3300/8.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="264" src="http://i714.photobucket.com/albums/ww150/sandeep3300/8.jpg" width="420" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
12. Click apply it take some time to complete the process..&lt;br /&gt;
&lt;br /&gt;
&lt;script&gt;
 britepic_id="1047675";britepic_src="http://i714.photobucket.com/albums/ww150/sandeep3300/10.jpg";britepic_keywords="Gparted,%20Boot,%20options";britepic_show_ads=1;britepic_show_menu=1;britepic_href="http%3A//www.solutionatoz.blogspot.com";britepic_width=420;britepic_height=264 
&lt;/script&gt;&lt;script src="http://www.britepic.com/britepic.js"&gt;
&lt;/script&gt; &lt;noscript&gt;&amp;amp;amp;amp;lt;img src="http://i714.photobucket.com/albums/ww150/sandeep3300/10.jpg" /&amp;amp;amp;amp;gt;&lt;/noscript&gt;&lt;br /&gt;
&lt;br /&gt;
13.Then shutdown it and use as usual your window new partion start showing on you mycomputer (in Windows) and new partition on desktop( in Linux).</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>3G Technology &gt;&gt; NEW BOOMING</title><link>http://solutionatoz.blogspot.com/2009/01/3g-technology-new-booming.html</link><category>Telicomunication</category><category>windows</category><pubDate>Fri, 30 Jan 2009 13:10:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-2759492561973243097</guid><description>&lt;span style="color: #663333;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;&lt;span style="color: #663333;"&gt;&lt;i&gt;Hi, friends as we know India is launching the 3G Technology.. May be from the next year we start talking  with 3G phones on 3G style . But what is 3G, this question come in your mind when you start using the Technology, well 3G is third Generation Technology.. thru this you can watch online Movies without buffer, play high resolution game, download Movies with high speed Wireless Internet, you can chat with video, you can send big files in few minutes, you can say enjoy every thing through your 6- 7 inch Mobil phone.. Well it is not a dream. This will come to true in some month or you can say some days.&lt;/i&gt; &lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5296997789828584978" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYWv67mqEpfir8ddPtCrabkP8z4j7KevoHdLdNtcB8XfWUxelf2FyElAYI7-ARF8gK-2_AkQOtlA10LKawzRjsmvqImbHdReKy8Px-iQLTBfTcReCaxFWiMtlCU8hArqbOtrvRlnsuGAQ/s400/1398846596_f85d7e7dbe.jpg" style="display: block; height: 267px; margin: 0px auto 10px; text-align: center; width: 400px;" /&gt;&lt;br /&gt;
&lt;i&gt;Well after reading my above lines you are eager &lt;/i&gt;&lt;i&gt;to know about this Technology, so after a long study I made a Word Document in which i mention some of keys, terms, and Explanation of this Technology &lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;i&gt;&lt;span style="color: #663333;"&gt;&lt;/span&gt;&lt;a href="http://www.hotshare.net/file/109453-42692147a4.html"&gt;&lt;span style="color: #663333;"&gt;Download 3G India&lt;/span&gt;&lt;/a&gt; &lt;/i&gt;&lt;br /&gt;
&lt;span style="font-size: 85%;"&gt;Please Note it :- all the information i get on this Article thru Internet and many company sites.&lt;/span&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;/div&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYWv67mqEpfir8ddPtCrabkP8z4j7KevoHdLdNtcB8XfWUxelf2FyElAYI7-ARF8gK-2_AkQOtlA10LKawzRjsmvqImbHdReKy8Px-iQLTBfTcReCaxFWiMtlCU8hArqbOtrvRlnsuGAQ/s72-c/1398846596_f85d7e7dbe.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Sify Broadband Internet in Linux</title><link>http://solutionatoz.blogspot.com/2008/10/sify-broadband-internet-in-linux.html</link><category>Internet</category><category>Linux</category><pubDate>Fri, 10 Oct 2008 12:01:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-6777058192272118476</guid><description>&lt;span id="SPELLING_ERROR_0"&gt;Sify&lt;/span&gt; is the one of popular broadband Internet company, it clam to be high speed Internet connectivity to the Clint, they are using different technique to provide Internet connectivity. To do so you have to download there connectivity Clint software which is free of cost but you have to do some settings in your windows PC for connectivity ( you have to add &lt;span id="SPELLING_ERROR_1"&gt;ip&lt;/span&gt; , &lt;span id="SPELLING_ERROR_2"&gt;subnet&lt;/span&gt; mask etc.). at windows level, it is very easy but you fails to do so at Linux, because at Linux nothing is install and run on one click.&lt;br /&gt;
&lt;div&gt;But if you think it is very hard then you also not correct, it is easy if you can do it step wise.&lt;/div&gt;&lt;div&gt;Note:- &lt;i&gt;&lt;span style="color: #666600;"&gt;I am telling you the procedure to install the &lt;span id="SPELLING_ERROR_3"&gt;sify&lt;/span&gt; Linux Clint on fedora Linux, you can done on other Linux too.&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;span style="color: black;"&gt;To install the &lt;span id="SPELLING_ERROR_4"&gt;sify&lt;/span&gt; Internet Clint on the Linux see the steps&lt;/span&gt;&lt;/div&gt;&lt;ol&gt;&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;First you have to add static &lt;span id="SPELLING_ERROR_5"&gt;ip&lt;/span&gt; address on your Ethernet card to make basic connectivity with the &lt;span id="SPELLING_ERROR_6"&gt;sify&lt;/span&gt; server to do that click at &lt;b&gt;System&lt;/b&gt; , &lt;b&gt;Administration menu&lt;/b&gt; , &lt;b&gt;Network &lt;/b&gt;or simply right "system-&lt;span id="SPELLING_ERROR_7"&gt;config&lt;/span&gt;-network" at the &lt;b&gt;terminal window&lt;/b&gt; it will display the screen like this &lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5255424221814474130" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhuS20WTe_IFK0Wqgkrf3y20nbrloom566S4eG4kMWrIqhAibTT1rbc9u5vP5Fnr4GTbUbdfhk0hus_1dDCjbouK6NXse0hyYGAUFDxiXgIIlRF9-_HLT8fBu0sUAVdcjGkXOHqwbwBISs/s400/1.JPG" style="display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;After that double click on &lt;span id="SPELLING_ERROR_8"&gt;eth&lt;/span&gt;0 and you got this type of screen&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5255429531377646818" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtGEWlqQKftUnRDyhLbKdhEaLVNOc6TpBri2BeOwyrkVUu0D4cwoONM6WubPl9XHczDNCR8m9adJ9M2LiNJz5kmoqWjfU6Y73apncORorNU3tCAc2kynyqz_b_LZW6KkzbMPvXqqRVzVM/s400/2.JPG" style="display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;Make some changes on it like first click on statically "set &lt;span id="SPELLING_ERROR_9"&gt;ip&lt;/span&gt; addresses" and enter the &lt;span id="SPELLING_ERROR_10"&gt;ip&lt;/span&gt; address which is given by the &lt;span id="SPELLING_ERROR_11"&gt;sify&lt;/span&gt; at the time of connection installation.&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;please check the option "Activate device when computer start" so that it will update it after rebooting (remember Linux show effects after rebooting).&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;after all these settings, reboot the system. After rebooting click on "Mozilla &lt;span id="SPELLING_ERROR_12"&gt;Firefox&lt;/span&gt; Browser" and write the site which is given by your &lt;span id="SPELLING_ERROR_13"&gt;sify&lt;/span&gt; &lt;span id="SPELLING_ERROR_14"&gt;isp&lt;/span&gt; to download the Clint software. for example " &lt;a href="http://203.144.134.10:8080/"&gt;http://203.144.134.10:8080/&lt;/a&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;it will display a page of &lt;span id="SPELLING_ERROR_15"&gt;sify&lt;/span&gt; ftp on which you can download the Clint.&lt;img alt="" border="0" height="220" id="BLOGGER_PHOTO_ID_5255448759671814850" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFxOtdhzwkB-wqyB_gmmBF0VRjzxHCev2WBM5QMAxh2QH8tkZAxHufEtVfMgjIAKNiPulIfB5-42WoplIAj7uByo5ZOqcL201x60OO8bZp49C43X8QLJLNx7-97dl-4NpsMZYphmsBZTI/s400/3.JPG" style="display: block; margin: 0px auto 10px; text-align: center;" width="494" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;Know click on the "&lt;a href="javascript:linuxclient()"&gt;GNU/Linux users click here to download the &lt;span id="SPELLING_ERROR_16"&gt;Sify&lt;/span&gt; Broadband client"&lt;/a&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;it will display u other window on which you see two thing some &lt;span id="SPELLING_ERROR_17"&gt;ssl&lt;/span&gt; certification and a &lt;span id="SPELLING_ERROR_18"&gt;sifyclint&lt;/span&gt;.rpm(something like package) download it and copy/cut them and past it in any folder like in root, in home any folder.&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;now open the terminal window in graphical &lt;span id="SPELLING_ERROR_19"&gt;login&lt;/span&gt; in Linux, go to that folder for example &lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;# &lt;span id="SPELLING_ERROR_20"&gt;cd&lt;/span&gt; \root&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;now check that all the packages are on that folder or not by "&lt;span id="SPELLING_ERROR_21"&gt;dir&lt;/span&gt;" command or "ls -&lt;span id="SPELLING_ERROR_22"&gt;al&lt;/span&gt;" command. when you sure that all the packages are present on that folder write the command &lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #000066;"&gt;#rpm -&lt;span id="SPELLING_ERROR_23"&gt;ivh&lt;/span&gt; *.rpm&lt;/span&gt;&lt;/i&gt; &lt;/li&gt;
&lt;li&gt;&lt;i&gt;remember one thing download the rpm packages because it easily install. it start installing after completing installation. write command &lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;#&lt;span id="SPELLING_ERROR_24"&gt;sifyconnect&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;it will display a small dialogue box, asking &lt;span id="SPELLING_ERROR_25"&gt;username&lt;/span&gt; password, &lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;just type your password, &lt;span id="SPELLING_ERROR_26"&gt;username&lt;/span&gt; and enjoy the Internet &lt;/i&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;div&gt;&lt;a class="adHeadline" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=879233&amp;amp;afsid=1" target="_top"&gt;Your Ad Here&lt;/a&gt;&lt;/div&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhuS20WTe_IFK0Wqgkrf3y20nbrloom566S4eG4kMWrIqhAibTT1rbc9u5vP5Fnr4GTbUbdfhk0hus_1dDCjbouK6NXse0hyYGAUFDxiXgIIlRF9-_HLT8fBu0sUAVdcjGkXOHqwbwBISs/s72-c/1.JPG" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Play And Get Codes Of Games At MY Site</title><link>http://solutionatoz.blogspot.com/2008/09/play-game-free-on-my-site.html</link><category>Game</category><pubDate>Sat, 20 Sep 2008 13:25:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-2434337954809192210</guid><description>&lt;div align="center"&gt;&lt;span style="font-size: 180%;"&gt;GAMES &lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size: 180%;"&gt;Enjoy the games here, play and make higher score.&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size: 0px;"&gt;&lt;span style="font-size: 0px;"&gt;&lt;i&gt;Sky Patrol&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size: 130%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&amp;nbsp;&lt;i&gt;&lt;b&gt;Sonic Adventures&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/i&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" height="400" width="500"&gt;&lt;param name="_cx" value="13229"&gt;&lt;param name="_cy" value="10583"&gt;&lt;param name="FlashVars" value=""&gt;&lt;param name="Movie" value="http://www.gamereign.net/flash/sonic.swf"&gt;&lt;param name="Src" value="http://www.gamereign.net/flash/sonic.swf"&gt;&lt;param name="WMode" value="Window"&gt;&lt;param name="Play" value="0"&gt;&lt;param name="Loop" value="-1"&gt;&lt;param name="Quality" value="High"&gt;&lt;param name="SAlign" value=""&gt;&lt;param name="Menu" value="-1"&gt;&lt;param name="Base" value=""&gt;&lt;param name="AllowScriptAccess" value=""&gt;&lt;param name="Scale" value="ShowAll"&gt;&lt;param name="DeviceFont" value="0"&gt;&lt;param name="EmbedMovie" value="0"&gt;&lt;param name="BGColor" value="000000"&gt;&lt;param name="SWRemote" value=""&gt;&lt;param name="MovieData" value=""&gt;&lt;param name="SeamlessTabbing" value="1"&gt;&lt;param name="Profile" value="0"&gt;&lt;param name="ProfileAddress" value=""&gt;&lt;param name="ProfilePort" value="0"&gt;&lt;param name="AllowNetworking" value="all"&gt;&lt;param name="AllowFullScreen" value="false"&gt;&lt;embed src="http://www.gamereign.net/flash/sonic.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="550" height="400"&gt;&lt;/embed&gt; &lt;/object&gt;&lt;/div&gt;&lt;div align="center"&gt;Get these game codes by sending the comment don't forget to send you mail id and enjoy the games&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Play Commando 2 &lt;br /&gt;
&lt;br /&gt;
&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" height="230" width="549"&gt;
&lt;param name="movie" value="http://www.miniclip.com/swfcontent/gamesroom.swf"&gt;
&lt;param name="quality" value="high"&gt;&lt;/param&gt;
&lt;param name="menu" value="false"&gt;&lt;/param&gt;
&lt;embed src="http://www.miniclip.com/swfcontent/gamesroom.swf" width="549" height="230" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false"&gt;&lt;/embed&gt;
&lt;/object&gt;&lt;/div&gt;&lt;style type="text/css"&gt;
   
.adHeadline {font: bold 10pt Arial; text-decoration: underline; color: #0000FF;}   .adText {font: normal 10pt Arial; text-decoration: none; color: #000000;}
&lt;/style&gt;&lt;br /&gt;
&lt;style type="text/css"&gt;
   .adHeadline {font: bold 10pt Arial; text-decoration: underline; color: #0000FF;}   .adText {font: normal 10pt Arial; text-decoration: none; color: #000000;}
&lt;/style&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="&lt;a href="http://ads.adbrite.com/mb/text_group.php?sid=879233&amp;amp;br=1&amp;amp;ifr=" ref="+AdBrite_Referrer+"&gt;http://ads.adbrite.com/mb/text_group.php?sid=879233&amp;amp;br=1&amp;amp;ifr='+AdBrite_Iframe+'&amp;amp;ref='+AdBrite_Referrer+'&lt;/a&gt;" type="text/javascript"&gt;');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));
&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;style type="text/css"&gt;
.adHeadline {font: bold 10pt Arial; text-decoration: underline; color: #0000FF;}
.adText {font: normal 10pt Arial; text-decoration: none; color: #000000;}
&lt;/style&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Add/ Remove Software Problem In Fedora or Redhat Linux</title><link>http://solutionatoz.blogspot.com/2008/09/add-remove-software-problem-in-fedora.html</link><category>Linux</category><category>operating system</category><category>Software</category><pubDate>Wed, 17 Sep 2008 10:07:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-6131222791977499719</guid><description>Friends, I wanted to share something with you. I have fedora 9 in my home system. I select its complete packages during Installation. But after installation I am unable to find the DHCP server package in it. I tries to install it from my Fedora Linux DVD. but I get some repomd.xml file is missing.&lt;br /&gt;
Repomd.xml file is nothing it is a repository file which is store in "&lt;span style="color: #6600cc;"&gt;&lt;i&gt;/etc/yum.repos.d&lt;/i&gt;&lt;/span&gt;" directory, you are thinking what is its work, actually this directory is the collocations of some repository files&lt;br /&gt;
like &lt;i&gt;fedora.rep, fedora-update.repo, livna.repo etc&lt;/i&gt;, these file is useful when you try to update or install software through Internet, every &lt;i&gt;repo &lt;/i&gt;file have a specific function, if you open them then you see their is some Internet( ftp ) link. whenever you try the software through the command&lt;br /&gt;
&lt;span style="color: #6600cc;"&gt;&lt;i&gt;#yum install &lt;package&gt;&lt;/package&gt;&lt;/i&gt;{ for example #yum install dhcp}&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: black;"&gt;it connect through the Internet and start installing the package. Yum command help to install compile , remove and give its dependencies file needed for the packages and make it ready to use. &lt;/span&gt;&lt;br /&gt;
But if you are trying to use through the Linux DVD then it fails and give the error that &lt;i&gt;&lt;span style="color: #cc33cc;"&gt;repomd.xml file is not found&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;span style="color: black;"&gt;Nothing to worry friends now i find its solution and it is very easy , just follow some simple steps &lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;first go to the &lt;i&gt;/etc/yum.repo.d&lt;/i&gt; directory and open it by double click on the directory (remember i am telling you the graphical method of doing this, you can also use it through command line)&lt;/li&gt;
&lt;li&gt;then make a repo file and name it cdrom.repo&lt;/li&gt;
&lt;li&gt;copy the following content to that file (without the line space) &lt;/li&gt;
&lt;/ul&gt;[CDROM]&lt;br /&gt;
name=cdrom&lt;br /&gt;
baseurl=file:///media/dvd-rom/&lt;br /&gt;
enabled=1&lt;br /&gt;
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora&lt;br /&gt;
gpgcheck=0&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;line after line and save it . after that open your terminal window and write the commands &lt;/li&gt;
&lt;li&gt;[root@fedora ~]# mkdir /media/dvd-rom&lt;br /&gt;
[root@fedora ~]#&lt;br /&gt;
[root@fedora ~]# mount /dev/cdrom /media/dvd-rom/&lt;/li&gt;
&lt;li&gt;remember insert Linux Installation DVD on the DVD rom before these commands &lt;/li&gt;
&lt;li&gt;after that disable all other repository files (repo files ) only make enable cdrom.repo (Write &lt;span style="color: #6600cc;"&gt;&lt;i&gt;#yum --disablerepo=&lt;repo&gt;&amp;gt;&lt;/repo&gt;&lt;/i&gt; &lt;/span&gt;or just click on the &lt;span id="SPELLING_ERROR_0"&gt;repo&lt;/span&gt; and at the &lt;i&gt;"enable=1" &lt;/i&gt;change it to &lt;i&gt;"0" )&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;and save file then close it &lt;/li&gt;
&lt;li&gt;Now click at "ADD/ REMOVE SOFTWARE" and click on any software package, try it to remove and install &lt;/li&gt;
&lt;li&gt;Some time it not &lt;span id="SPELLING_ERROR_1"&gt;directly&lt;/span&gt; remove or install from add remove that time you just check which package you want to remove or install &lt;/li&gt;
&lt;li&gt;then click on the &lt;span id="SPELLING_ERROR_2"&gt;DVD&lt;/span&gt; and click on &lt;span id="SPELLING_ERROR_3"&gt;packages&lt;/span&gt; and find the name of the &lt;span id="SPELLING_ERROR_4"&gt;package&lt;/span&gt; after that copy it and past it in any directory&lt;/li&gt;
&lt;li&gt;open terminal window &lt;/li&gt;
&lt;li&gt;and write command "&lt;span style="color: #6600cc;"&gt;&lt;i&gt;#&lt;span id="SPELLING_ERROR_5"&gt;cd&lt;/span&gt; &lt;path&gt;at which package is store for example ( &lt;span id="SPELLING_ERROR_6"&gt;cd&lt;/span&gt; /etc/home )&lt;/path&gt;&lt;/i&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="color: #6633ff;"&gt;&lt;i&gt;#rpm -&lt;span id="SPELLING_ERROR_7"&gt;ivh&lt;/span&gt; *.rpm&lt;/i&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="color: black;"&gt;it automatically start installing . You can also do this to reach the &lt;span id="SPELLING_ERROR_8"&gt;DVD&lt;/span&gt;/package/ and write command " &lt;/span&gt;&lt;span style="color: #6600cc;"&gt;#&lt;i&gt;rpm -&lt;span id="SPELLING_ERROR_9"&gt;ivh&lt;/span&gt; &lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;span style="color: #6600cc;"&gt; &lt;/span&gt;and enjoy the packages. To install the software &lt;span id="SPELLING_ERROR_10"&gt;through&lt;/span&gt; &lt;span id="SPELLING_ERROR_11"&gt;Internet&lt;/span&gt; you have to disable the &lt;span id="SPELLING_ERROR_12"&gt;cdrom&lt;/span&gt; &lt;span id="SPELLING_ERROR_13"&gt;repo&lt;/span&gt; and enable all other &lt;span id="SPELLING_ERROR_14"&gt;repos&lt;/span&gt; like &lt;span id="SPELLING_ERROR_15"&gt;livina&lt;/span&gt;, fedora , fedora update etc (only change enable=0 to enable=1 )&lt;/li&gt;
&lt;/ul&gt;For More details click at &lt;a href="http://fedoraproject.org/"&gt;http://fedoraproject.org/&lt;/a&gt; or &lt;a href="http://fedoraforum.org/"&gt;http://fedoraforum.org/&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Recovering The Root Password</title><link>http://solutionatoz.blogspot.com/2008/08/recovering-root-password.html</link><pubDate>Thu, 21 Aug 2008 14:45:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-8973744679805874631</guid><description>What to do, when we forget the password of root user in Linux , root is the administrator in &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;linux&lt;/span&gt;, if any one forget its password then nothing to worry. Yes I am right you can easily recover it for that just follow the steps:-&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Boot the computer with Linux Installation CD.&lt;/li&gt;&lt;li&gt;Enter into Linux Rescue mode by entering the command in boot screen&lt;span style="color:#ff0000;"&gt;" &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;linux&lt;/span&gt; rescue"&lt;/span&gt; remember one thing many new Linux have a option at first booting screen for LINUX RESCUE command, and also don't forget that Linux is case sensitive. So try the command in lower case.&lt;/li&gt;&lt;li&gt;When the "sh" prompt is reached, enter the following commands to change root password. after &lt;span style="color:#ff0000;"&gt;# "&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;chroot&lt;/span&gt; /&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;mnt&lt;/span&gt;/&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;sysimage&lt;/span&gt;&lt;/span&gt; "&lt;/li&gt;&lt;li&gt;after that &lt;span style="color:#ff0000;"&gt;"&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;passwd&lt;/span&gt;"&lt;/span&gt; The above steps will prompt you to enter your new password.&lt;/li&gt;&lt;li&gt;enter the new password and enjoy again the Linux OS &lt;/li&gt;&lt;/ol&gt;THIS IS MY PERSONAL REQUEST DON'T TRY THESE STEPS FOR FUN IN YOUR COMPANY OR IN YOUR ORGANISATION IF YOU HAVE NO LEGAL RIGHTS</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Enable and Disable the Internet Content Adviser in windows</title><link>http://solutionatoz.blogspot.com/2008/08/enable-and-disable-internet-content.html</link><category>Internet</category><category>Recovery of Password</category><category>Restriction</category><category>windows</category><pubDate>Thu, 7 Aug 2008 10:33:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-2528674017144571370</guid><description>&lt;i&gt;Some time we think that we not allow people to open Internet through our PC. Also due to some Adult sites we tries to block the Internet sites to display, for our Children. But we are unable to do that.&lt;br /&gt;
Actually this is very easy task, their is an option in Windows which facilitate this task, and you can do this yourself. Just read the article this will help you to do that...&lt;br /&gt;
&lt;/i&gt;&lt;span style="color: #339999;"&gt;&lt;i&gt;Follow the steps to unable the password, which prompt you before &lt;span id="SPELLING_ERROR_0"&gt;open&lt;/span&gt; any site at Internet:-&lt;br /&gt;
1) Go to Internet Explorer and click on "Tools" at File Menu, then click at "Internet Options".&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/i&gt;&lt;/span&gt;&lt;span style="color: #339999;"&gt;&lt;i&gt;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #339999;"&gt;&lt;span style="color: #339999;"&gt;&lt;i&gt;&lt;/i&gt;&lt;/span&gt;&lt;span style="color: #339999;"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5231660035671913890" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_mN6pMNGutV0ZR9n_EzlHXTaF80fTFZYsK2cwSYXxcPSRtwzVXcf0RwHs2AxtkGVC_H8KyRMDkjYbfNnwzlF6zaUWffGXbeB91z_Siz_OH2lp2_UounwmqQAzPZx7kR0h6qFP-GkQtOU/s320/1.JPG" style="display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/span&gt;&lt;span style="color: #339999;"&gt;&lt;i&gt;&lt;br /&gt;
2) Now click on "Content" tab, and at the 'CONTENT ADVISER' click at ”Enable/ Disable"  button.&lt;br /&gt;
3) Now click at "General" tab and set the " SUPERVISOR PASSWORD" (actually, whenever any one tries to open the site at Internet explorer then it asks for the password).&lt;br /&gt;
4) Above the supervisor password click at the box "Supervisor can type password a password to allow users to view restricted content" ( box should be checked ). &lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #339999;"&gt;&lt;span style="color: #339999;"&gt;&lt;i&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5231660209532573266" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPmoi_POekx6nYWPnTaJeYBCzgSH9gZHHp-CHwvitm3sD0RLzibFcNaB8lQRyt0u4dYpgGCoNeizca3JR0sY_6KfCAI0lnt4I3W3Tjy0cKT9GbZ5NRmzdQyKHOfeL6j85jLtMsDbkzQf0/s320/2.JPG" style="display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;br /&gt;
5) Now click at the "Ratings" tab and adjust the level of restriction to "0" (most restricted) if it is 4(lest restricted).&lt;br /&gt;
5) Click at "OK" and now go to "Internet options" at "Tools" in file menu --- then at "Content" tab and click at "Enable Button" for Content Adviser, It asks Password, Supply the Password and click at "OK"&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #339999;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;i&gt;After this , whenever a person tries to open the Internet then a pop up box appear which ask the password to open it, you can Disable it, just click at disable button at content adviser .&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;&lt;span style="color: #333333; font-family: arial; font-size: 180%;"&gt;Recovering the Forgotten password of Content Adviser&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style="color: #333333;"&gt; By chance you forget the Password of Content Adviser (Supervisor Password), Then...&lt;/span&gt;&lt;br /&gt;
&lt;i&gt;&lt;span style="color: #006600;"&gt;Nothing to Worry just follow the steps to Retrieve it :&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;&lt;i&gt;&lt;span style="color: #006600;"&gt;Click at "START-- RUN" and write " &lt;span id="SPELLING_ERROR_1"&gt;Regedit&lt;/span&gt;"&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #006600;"&gt;Find "&lt;span id="SPELLING_ERROR_2"&gt;HKEY&lt;/span&gt;_LOCAL_MACHINE"&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #006600;"&gt;then click at "SOFTWARE"--- "MICROSOFT"----"WINDOWS"----"&lt;span id="SPELLING_ERROR_3"&gt;CURRENTVERSION&lt;/span&gt;"----"POLICIES"&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #006600;"&gt;at policies click at "RATINGS" and at the right panel, find "KEY" and delete it .&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&lt;span style="color: #006600;"&gt;Now go to explorer and click at "TOOLS " --- "INTERNET OPTIONS"---"CONTENTS" and do the same steps as above to setup "supervisor password".&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" border="0" height="298" id="BLOGGER_PHOTO_ID_5231669668173964658" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3Zhyl7686Psr5trILaMR85t3NDDDRTe1IAkkToeGm_guLyoiTlsHjvCdJxnbUbxeBEGZynSH1eVfIJkc6El2IZ9CQ7A4bTgmybJ6mMCRkbOdphnWJqLXPGqLLtCg-j4j2dg4IiEDiXTI/s400/3.JPG" style="display: block; height: 433px; margin: 0px auto 10px; text-align: center; width: 525px;" width="436" /&gt;&lt;br /&gt;
&lt;span style="color: #339999;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #339999;"&gt;&lt;/span&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_mN6pMNGutV0ZR9n_EzlHXTaF80fTFZYsK2cwSYXxcPSRtwzVXcf0RwHs2AxtkGVC_H8KyRMDkjYbfNnwzlF6zaUWffGXbeB91z_Siz_OH2lp2_UounwmqQAzPZx7kR0h6qFP-GkQtOU/s72-c/1.JPG" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Recovering Grub Boot Loader</title><link>http://solutionatoz.blogspot.com/2008/07/recovering-grub-boot-loader.html</link><category>Linux</category><category>operating system</category><pubDate>Mon, 28 Jul 2008 12:03:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-1114348089688635492</guid><description>&lt;span style="font-family: times new roman;"&gt;&lt;span style="font-family: lucida grande;"&gt;Just think you have 3 OS(operating systems ) in your computer (WINDOWS XP, WINDOWS SERVER and LINUX) &lt;br /&gt;
and you need to format or Need to repair your Windows XP or any other OS ... &lt;br /&gt;
I know you lost your all other two OS. ... Now it is very easy to recover ... just read these steps carefully... its quite easy any one can do this who know to install the windows or any OS&lt;/span&gt; &lt;/span&gt; &lt;br /&gt;
&lt;span style="font-family: times new roman;"&gt; &lt;br /&gt;
&lt;span style="color: #660000;"&gt;&lt;b&gt;#&lt;/b&gt; &lt;/span&gt;&lt;span style="color: #660000;"&gt;&lt;i&gt;first if you wanted to repair or Reinstall the XP then install it but don’t try to format other OS drive in which WINDOWS SERVER and LINUX installed. &lt;/i&gt;&lt;/span&gt; &lt;br /&gt;
&lt;span style="color: #660000;"&gt;&lt;i&gt; &lt;br /&gt;
# Then insert the Windows Server CD and restart the computer .. Make sure that the boot from CD\DVD option at the BIOS is on. &lt;br /&gt;
&lt;br /&gt;
# After booting from CD it search the other windows and show the drives in which your XP and server installed but it not show Linux partition. &lt;br /&gt;
&lt;br /&gt;
# After it don’t try to Install any thing just restart the Computer and see that u see all your xp and server chooses or not ... Mostly 98% it will show you again. &lt;br /&gt;
&lt;br /&gt;
# After all its Linux turn... The recovery of Grub Boot loader is little bit hard but that not means you have to be expert for that .... just do these steps... &lt;/i&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt;
&lt;span style="font-family: times new roman;"&gt;&lt;span style="color: #660000;"&gt;&lt;i&gt; &lt;br /&gt;
#Insert the Bootable Linux DVD or first CD of your Linux(any like fedora, red hat, SUSE , any) &lt;br /&gt;
&lt;br /&gt;
# boot it from the Media after that it ask you to install &amp;amp; Upgrade the Existing Linux.., just click at Upgrade the existing &lt;br /&gt;
&lt;br /&gt;
# It take little bit time and after that it show a screen in which it ask to make boot loader. Just think and select insert boot loader at MBR .. and click on ok &lt;/i&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt;
&lt;span style="font-family: times new roman;"&gt;&lt;span style="color: #660000;"&gt;&lt;i&gt; &lt;br /&gt;
# It reinsert the Boot loader and after that it automatically restart the computer .. and you get your all three OS..&lt;/i&gt; &lt;br /&gt;
&lt;/span&gt;but remember one thing during this process.. u have to insert that Linux cd which Linux is already installed otherwise ... if it is latest one then it upgrade it or if it is older then may be it not work..&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">4</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item><item><title>Drive not Open on Double Click to their Icon</title><link>http://solutionatoz.blogspot.com/2008/07/to-solve-problem-related-with-unhidding.html</link><category>Restriction</category><category>Virus</category><category>windows</category><pubDate>Tue, 15 Jul 2008 17:00:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-4640083495737002436.post-6123565326785928320</guid><description>Hi,&lt;br /&gt;
I know some time you are not able to get hiden files and folder when you click on Tools - in file menu- in that folder option - show hide files and also when you click on any drives to open it ask to open with other programm. This is very common problem due to some virus. So to solve this you just follow some simple steps ....&lt;br /&gt;
1) click on &lt;i&gt;Start -- Run - &lt;/i&gt;and write -&lt;i&gt; Regedit.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
2)&lt;i&gt; &lt;/i&gt;then Click on &lt;i&gt;HKEY-LOCAL-MACHINE.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
3) and then &lt;i&gt;Software -- Microsoft -- Windows-- Current version--Explorer--Advanced--Folder---Hidden--SHOWALL&lt;/i&gt;.&lt;br /&gt;
&lt;br /&gt;
4) duble click at &lt;i&gt;checkvalue (at right side window) and change its value 0 or 2 to 1&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
5) now close it and click at &lt;i&gt;Start-- Run--&lt;/i&gt; Write Drive Name (like c:) and click on &lt;i&gt;ok&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
6) click at &lt;i&gt;Tools&lt;/i&gt; at File Menu--- then &lt;i&gt;Folder Options&lt;/i&gt;-- then &lt;i&gt;View&lt;/i&gt;, click at "&lt;i&gt;Show Hidden files and folders&lt;/i&gt;" along with it also click (to uncheck) at its options "&lt;i&gt;Hide extensions for known file types&lt;/i&gt;" and at "&lt;i&gt;Hide protected operating system files&lt;/i&gt;"&lt;br /&gt;
&lt;br /&gt;
7) and click on&lt;i&gt; ok&lt;/i&gt;.  Now find the file &lt;i&gt;Autorun.INX&lt;/i&gt; or somthing like same name and delete it, Restart the system it will open the drive on duble click again</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><author>sandeep.rohilla@ymail.com (Anonymous)</author></item></channel></rss>