Tuesday, November 27, 2012

How to Speed Up Windows XP in Seconds???

Maintenance and cleaning up of your PC should be part of a regular routine to ensure that you don’t have any long-term problems with the computer. Unfortunately most basic computer users may not understand the mechanics of a computer or may feel intimidated with the maintenance. Just follow the step by step to make your windows Faster as never before..
Speed Up Browsing
When you connect to a web site your computer sends information
back and forth. Some of this information deals with resolving the
site name to an IP address, the stuff that TCP/IP really deals with,
not words. This is DNS information and is used so that you will not
need to ask for the site location each and every time you visit the site.Although Windows XP and Windows XP have a pretty efficient DNS cache, you can increase its overall performance by increasing its size.You can do this with the registry entries below:Windows Registry Editor Version 5.00
 [HKEY_LOCAL_MACHINESYSTEM
CurrentControlSetServicesDnscacheParameters]
“CacheHashTableBucketSize”=dword:00000001
“CacheHashTableSize”=dword:00000180
“MaxCacheEntryTtlLimit”=dword:0000fa00
“MaxSOACacheEntryTtlLimit”=dword:0000012d
Make a new text file and rename it to dnscache.reg. Then copy and
paste the above into it and save it. Merge it into the registry.
Disable Indexing Services 

Indexing Services is a small little program that uses large amounts of RAM and can often make a computer endlessly loud and noisy. This system process indexes and updates lists of all the files that are on your computer. It does this so that when you do a search for something on your computer, it will search faster by scanning the index lists. If you don’t search your computer often, or even if you do search often, this system service is completely unnecessary. To disable do the following:
  • Go to Start
  • Click Settings
  • Click Control Panel
  • Double-click Add/Remove Programs
  • Click the Add/Remove Window Components
  • Uncheck the Indexing services
  • Click Next
Optimise Display Settings
Windows XP can look sexy but displaying all the visual items can waste system resources.
To optimize:
  • Go to Start
  • Click Settings
  • Click Control Panel
  • Click System
  • Click Advanced tab
  • In the Performance tab click SettingsLeave only the following ticked:
- Show shadows under menus
- Show shadows under mouse pointer
- Show translucent selection rectangle
- Use drop shadows for icons labels on the desktop
- Use visual styles on windows and buttons
Speed Up Folder Browsing

You may have noticed that every time you open my computer to
browse folders that there is a slight delay. This is because Windows XP automatically searches for network files and printers every time you open Windows Explorer.
To fix this and to increase browsing significantly:
  • Open My Computer
  • Click on Tools menu
  • Click on Folder Options
  • Click on the View tab.
  • Uncheck the Automatically search for network folders and
    printers check box
  • Click Apply
  • Click Ok
  • Reboot your computer
Remove The Desktop Picture

Your desktop background consumes a fair amount of memory
and can slow the loading time of your system.Removing 

 it will improve performance.
  • Right click on Desktop and select Properties
  • Select the Desktop tab
  • In theBackground windowselect None
  • Click Ok
Disable Unnecessary Services 
Because Windows XP has to be all things to all people it has many
services running that take up system resources that you will never
need.Below is a list of services that can be disabled on most
machines:
Alerter
Clipbook
Computer Browser
Distributed Link Tracking Client
Fast User Switching
Help and Support – (If you use Windows Help and Support leave
this enabled)
Human Interface Access Devices
Indexing Service
IPSEC Services
Messenger
Netmeeting Remote Desktop Sharing (disabled for extra security)
Portable Media Serial Number
Remote Desktop Help Session Manager (disabled for extra security)
Remote Procedure Call Locator
Remote Registry (disabled for extra security)
Remote Registry Service
Secondary Logon
Routing & Remote Access (disabled for extra security)
Server
SSDP Discovery Service – (Unplug n’ Pray will disable this)
Telnet
TCP/IP NetBIOS Helper
Upload Manager
Universal Plug and Play Device Host
Windows Time
Wireless Zero Configuration (Do not disable if you use a wireless
network)
Workstation
To disable these services:
Go to Start and then Run and type “services.msc”
Double click on the service you want to
change Change the startup type to ‘Disable”
Remove Annoying Delete Confirmation Messages
Although not strictly a performance tweak I love this fix as it
makes my machine ‘feel’ faster. I hate the annoying
‘are you sure?’ messages that XP displays, especially
if I have to use a laptop touchpad to close them.
To remove these messages:
  • Right-click on the ‘Recycle Bin’ on the desktop and then
    click ‘Properties’
  • Clear the ‘Display Delete Confirmation Dialog’ check
    box and click ‘Ok’!!
Thanks for visiting my blog plz comment if you like my post
Share it.......

Shut Down And Restart Windows PC In Seconds



What do you do to shutdown or restart your windows XP? Of course you will do the following,
  • Click Start Menu  ->
  • Then click Turn Off Computer  -> 
  • Then you get a window with three icons saying,Stand byTurn Off and Restart  -> 
  • Then you click on Turn Off button to shutdown windows and Restart button to restart your system
All this process will take 6-7 seconds and if your computer has some programs running in the background, you will get a End Now window, which will further take 4-5 Seconds. What if you do the same thing in a fraction of a second with a Click of a mouse?
You can surely do that by creating a Shutdown and Restart Icon on your Desktop. To do that follow the steps below,
 
Create A Shutdown Icon

To create a shutdown icon on your desktop do the following, 
  • Right click anywhere on your desktop and select New Shortcut
Create-New-Shortcut
  • In the new window that opens Copy paste this command,
C:\Windows\System32\shutdown.exe -s -f -t 00
PasteShutdown-Command
  • Click Next and Name it Shutdown as shown below
Name it Shutdown
       4.  You will get an icon as shown below,
Shutdown-icon

Clicking this Icon will Shutdown your Windows Instantly. If you don’t like the Icon Image, you can customize it too. Do the following
  • Right Click on the shutdown Icon and select Properties a window will open as shown below,
Customize-Shutdown-Icon
  • Click Change Icon button and choose an Icon from those available,
choose-shutdown-icon
You can also download an icon of your choice and save it to your local drive. To use an icon of your choice simply click the browse button and specify the path where you have saved the icon.

  • Your new Shutdown Icon will look like this,
REd-Shutdown-Icon
Create A Restart Icon


Follow exactly all the steps discussed above to create a Restart Icon. You only need to add a different command for your Restart Icon. Here is the code for your Restart Icon,
C:\Windows\System32\shutdown.exe -r -f -t 00
After selecting an icon image you will get this,
TNT-Restart-Icon
Thanks for visiting my blog plz comment if you like my post
Share it.......

Eject cd/dvd rom

We can do many funny things with VBS scripts and one of the most famous trick is ejecting a cd/dvd drive infinitely.This type of funny(some what prank) vbs script. So lets see how to do it.
  • Open up your notepad and copy paste the following code 
Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
loop
End If
  • Now name it as you wish with .vbs extection EX: openup.vbs
  • That’s it your done, to activate it just double click the file you just created. If you wish stop it open task manager by pressing ctrl+alt+del > click on process tab > find the process wscript.exe > highlight it and click End process.

Thanks for visiting my blog plz comment if you like my post
Share it.......

Unlock any password protected PDF

Unlock PDF

Nowadays PDF's(portable document format files) are most widely used format for Ebooks or related. This PDF's are some times password protected and gives access to user just to view or read, that means they will not give you the ability to copy the content like text or images. So if you want to copy the content you need password.
However there are several Portable Document files that needs password to read and get viewed. This time you will be in chain because you don’t have the password to open it.
So what to do now, don't worry guys their is an easy way to crack any password protected PDF.
There is an Online tool called unlock-pdf which unlocks any password protected PDF with in no time. This Utility is very user friendly and very straight forward.
 
nofollow

Instructions
  • Click “Browse” and select the PDF file you would like to unlock.
  • Agree to the Terms of Service by checking the appropriate check box.
  • Click “Unlock File!” – and you’re done!
 Thanks for visiting my blog plz comment if you like my post
Share it.......

Monday, November 26, 2012

How to uninstall or Remove Softwares in safe Mode???

 If you have installed software on your computer and for any reason it gives you issues, the best thing to do is to uninstall it. Period. But what happen if such a piece of software keeps restarting your Windows operating system or worst, disables certain services so that you won’t be able to performs some important operation anymore ? In this case Windows will help you with a special feature called Safe Mode. Basically, in Safe Mode you will be able to troubleshoot your computer in order to fix issues. However, if you need to uninstall and remove some software, you have to know that this kind of “limited state” Mode has the Windows Installer Service completely disabled. Let’s see how to turn it on and uninstall everything… even in the Safe Mode configuration. Windows Installation Service is responsible for the installation and uninstallation procedure. If you try to access it in Safe Mode you will get the following message: “The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your Support Personnel for assistance”. The following tutorial will teach you how to turn the Windows Installation Service in Safe Mode:
Lets Start:
  • Click Start
  • In run, type regedit and press Enter.
  • Locate the following registry key: 
HKLM\ SYSTEM\CurrentControlSet\ Control\SafeBoot\ Minimal\
  • Right-click on the Mininal key and from the menu select New – Key. Now name the new key MSIService and change the value to Service by double-clicking it.
  • If you are in the Safe Mode with Network Mode, repeat the above steps for the following registry key:
 HKLM\ SYSTEM#92;CurrentControlSet\ Control\ SafeBoot\Network\
  • The newly created MSIService will make available the Windows Installation Service in Safe Mode. However, I want to remind you that it is necessary to turn the new service on.
  • To do it, exit regedit, click Start and in the Search field type: services.msc and press Enter.
  • From the list, locate Windows Installer. Right-click it and select Start.
  • If the procedure to turn on Windows Installer doesn’t work try this one:
  • Click Start.
  • In the search field, type cmd. Do not press Enter.
  • Right click the Command DOS icon and click the Run it as Administrator link.
  • In the command prompt, type net start msiserver.

At the end of the whole procedure do not forget to restart your computer for the changes to take effect.

Thanks for visiting my blog plz comment if you like my post
Share it.......

CHANGE YOUR DRIVES BACK GROUND


Hello To All friend today i am going to show you how can you change your drive background color .Which always white .You can change it to more live with your own picture Or Your photo.

Just Follow Some Few Steps For Do this .
  • First your open your notepad.
  • Just put this code in your notepad

[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image=name.jpg
 IconArea_Text=1000x000f00001
[.ShellClassInfo]
ConfirmFileOp=0
  • Now save it as desktop.ini and save in your drive you like example drive E Or D .
  • Now copy your image(Change the name of image as "name" without qoutes)file to same location .
  • Open your drive from explorer or just open it from My computer
  • What You Find ?

Thanks for visiting my blog plz comment if you like my post
Share it.......

How to Hide Drive With Cmd???

To hide a drive:
  • Click Start -> Run option.
  • Type cmd in Run window and press Enter key or click Ok button. (It opens a prompt command on your screen within 5 seconds.)
  • Type diskpart in command prompt against C:\Documents and Settings\Administrator> to display the DISKPART> session.
  • Type list volume in command prompt against DISKPART>. (It will display drive information of your computer. It provides details of volume, letter that indicates a drive, label (if any) drive type and size it captures.)
  • Select a volume, for instance, type select volume 2 and press Enter key. You will see a message that volume 2 is selected. (You need to select a drive by putting the volume number that indicates a specific drive. In this example, volume 0, volume 1, volume 2 and volume 3 indicate the drives F, C, D and E respectively.)
  • Now type remove letter D in command prompt against DISKPART> and press Enter key. It will show a message successfully removed the drive letter or mount type. (Note that volume 2 indicates the letter D in this case that means you arehiding drive D.)
Now open My Computer window, you will notice the drive d disappeared. Now restart your computer.
To show drive again:
  • If you want to retrieve the drive again and show it on the list, follow the above steps till step 6.
  • Type assign letter D and click Enter key. Now restart your computer. Your hidden drive is rolled back.
 Thanks for visiting my blog plz comment if you like my post
Share it.......

Wondershare Data Recovery 4.0.1 + Key

Quick, Complete Recovery of Over 500 File Formats

  • Recover over 550 unique file formats.
  • Fully recover documents, emails, photos, videos, audio files and more.
  • Read-only, risk-free, and cost-effective Windows data recovery software.
  • An easy-to-use wizard, no prior recovery skills needed.
Supported OS:

Deleted, Formatted, or Inaccessible? Get it all back now.

Wondershare Data Recovery provides safe, fast and total recovery.
Wondershare Data Recovery, safe and effective Windows data recovery software, retrieves your lost videos, photos, music, documents, emails, etc. from your PC’s hard drive as well as from USB drives, external hard drives, mobile phones, digital cameras, iPods, MP3/MP4 players, and other storage media. Four unique recovery options guarantee to find everything you’re missing quickly and easily:
  • Wizard Mode Recovery - Find lost files by answering security questions.
  • Lost File Recovery - Recover formatted and deleted files with original file name and path.
  • Partition Recovery - Retrieve corrupted or lost partitions, with all data intact.
  • Raw Recovery - Deep scan and recover data even when the file system is corrupted.

Safe, Effective Recovery

Safe, Effective Recovery  
  • 550+ File Formats: Photos, videos, music, docs, emails, .zip, etc.
  • Any Data Loss Situation: Recover deleted, formatted, or otherwise inaccessible files. 
  • Not Just for Hard Drives: Recover from USBs, external hard drives, mobile phones, digital cameras, iPod, MP3/MP4 players and more. 
  • 100% safe. This Windows data recovery program works without any damage to your data.

Flexible & Precise

Flexible & Precise  
  • Pause and restart the scanning process later when you have time.
  • Save and import the previous scan results to resume recovery without rescanning. 
  • Filter your search by file name, size and date to find files quickly and save time. 
Preview before Recovery
Preview before Recovery
  • Preview Common file formats, including BMP, GIF, PNG, JPEG, JPG, TIF, DOC, DOCX, HTM, PDF, PPT, PPTX, RAR, XLS, XLSX, ZIP, etc.
  • Image Preview helps you find your target files and check their properties and quality before you decide to recover them.
  • Preview of documents and archives lets you confirm in advance whether each file is indeed one you want to recover, or not. 
Easy to Use

Easy to Use
  • Retrieve data within only 3 simple steps, just as easy as 1-2-3. Follow the clear and brief instructions on the interface, and no prior recovery experience required.
  • The friendly Wizard Mode recovery enables beginners to recover lost files by answering only two questions.
 Thanks for visiting my blog plz comment if you like my post
Share it.......

How to protect eyes while using Computer or Laptop???


Today I am going to tell you the heights of computing technologies. Previously, we used anti-glare screens to protect our eyes while working on computer and laptop; but now, we have got some fantastic software which are capable of protecting our eyes and we even get rid of that screens.Today I am going to tell you the heights of computing technologies. Previously, we used anti-glare screens to protect our eyes while working on computer and laptop; but now, we have got some fantastic software which are capable of protecting our eyes and we even get rid of that screens.

 How is it useful: We have busy life now-a-days. We get free time mostly in night and usinglaptop and computer at night is tiresome job, if not for us then for our eyes, surely it is a tiresome work. Our eyes get tired due to looking on screen for long hours. It also causes eye problems in long run. But talking about the absolute problems, we sleep till late and after waking up, we feel sleepy and have less concentration on work.

I am going to tell you solution.
Solution is to use flux - a software to protect eyes. "it makes the color of your computer's display adapt to the time of day, warm at night and like sunlight during the day."
 
Flux actually maintain the color balance of your screen automatically according to the time of day. After installing it, you just have to set your position on globe (latitude and longitude). It is required as f.lux uses this data to get sunrise and sunset timing for your location. And use these timings to balance the color. This all happens automatically and you need not even know this. Just download software and install it and then set your location. And you are set to protect your eyes and concentrate more on your work even if you watched a movie late night on your laptop.
Does it really work: Of course, it really works. I am using it from some time and I mustadmit, my eyes have stopped paining even if I work whole night. Try it yourself!
                                Download F.LUX Free Here
 Thanks for visiting my blog plz comment if you like my post
Share it.......
 

Transfer Data to your Android Device without any Cable

gravatar

Software Data Cable for Android simply lets you enjoy your Android Device transfers wirelessly. It simply installs on your device as a normal app and than gives you an ip address and a port number which you can insert in your browser URL field and than it will simply display all the contents of your media card right in your browsers screen from where you can simply transfer any kind of stuff.  


How to use Software Data Cable:
If you are interested in this app than you can get it from here and after you have installed on your device simply fire it up and you will be given a simply IP Address and a Port Number just enter that in your browser URL field as instructed in the app and that it you will have the whole interface right in front of you.

Now just enjoy transferring media wirelessly and have fun :)

 

Thanks for visiting my blog plz comment if you like my post Share it.......

iQuran Pro v2.3.3 Apk App


gravatar

iQuran Pro v2.3.3 Apk App



Requirements: Android OS 1.6 +
Overview: Read the Holy Quran in Arabic alongside its Translation. Provides verse by verse audio playback, repeat functions, unlimited bookmarks, search, excellent navigational controls, several translations and reciters and much more.

 With iQuran Pro you enjoy:
  •  Full landscape support.
  •  Unlimited bookmarks.
  •  Several translations.
  •  A powerful full-text search engine.
  •  Several downloadable recitations for verse by verse recital.
 iQuran Pro provides the following translations:
  •   English & Transliteration
  •   German
  •   French
  •   Indonesian
  •   Melayu
  •   Spanish
  •   Turkish
  •   Russian
  •   Bosnian
  •   Dutch
  •   Italian
  •   Albanian
  •   Romanian
  •   Japanese
 Included reciters are:
  •   Sheikh Husary
  •   Mishary Al-Afasy
  •   Saood & Shuraim
  •   Abu Bakr Ash-Shatree
  •   Abdul Basit
  •   Ghamdi
What's in this version:
  • [NEW] Added new Tajweed rule: Idgham without  ghunna.
  • Changed color of normal Idgham to Purple whilst Grey is now reserved for Idgham without ghunna.
  • Improved coloring of 'Ikhfa' Tajweed rule. Coloring now begins from the affected noon sakin or tanween.
Download iQuran Pro Free Here

Thanks for visiting my blog plz comment if you like my post.......Share it.......

Sunday, November 25, 2012

Camtasia Studio 7 Full Version Plus Serial Key Download

Camtasia Studio 7 has the right tools for creating professional screen video without formal training. With Camtasia, you can easily generate effective videos that help you train, teach, sell, and more.
Use Camtasia to:
Record PowerPoint presentations, websites, webcams, and software demos easily.

Edit screencasts to perfection by cutting, splicing, adding transitions, and captions.

Produce your video in many formats, or share to YouTube or Screencast.com.

Windows System Requirements
  • Microsoft Windows XP SP3, Windows Vista, or Windows 7
  • Microsoft DirectX 9 or later version
  • Microsoft .NET 4.0 Client Profile (included, except with MSI installer)
  • Dual-Core Processor minimum, Quad-Core Processor or better recommended
  • 2GB RAM minimum, 4GB RAM or greater recommended
  • 2GB of hard-disk space for program installation
  • Display dimensions of 1024x768 or greater
  • Dedicated Windows-compatible sound card, microphone and speakers recommended
  • Camtasia Studio Add-in for PowerPoint requires PowerPoint 2007 or 2010 (32 bit)
  • Import of .mov and production to .mov and .m4v requires Apple QuickTime 7.2 or later
  • Camera video recording requires a USB Web camera. Recording live from a DV camera is not supported
  • Integration with Camtasia Relay requires Camtasia Relay Client Recorder
  • GPU acceleration requires DirectX 9 compatible video adapter with 128 MB of video memory or greater and Pixel Shader 2.0 or later..
Mac OS X System Requirements
  • Mac computer with an Intel processor ~ Recommended: dual core 2.0GHz or faster
  • Mac OS X v10.6.3 or later
  • Quartz Extreme support
  • 2GB of RAM ~ Recommended: 4GB of RAM or greater
  • 4GB of available disk space (minimum)
  • QuickTime X or later
  Serial Key: ACUFF-ZNWAC-PANMB-CC7NG-TM377
 
 
Thanks for visiting my blog plz comment if you like my post.......Share it.......


 

Delete Autorun.inf Virus Without Any Software


There are Numerous softwares available that exclusively deal with Autorun.inf and other Autorun viruses, for example ‘USB Disk Security‘. But Inspite of installing such kind of software, Sometimes you might accidentally open your USB disk Drive (Pen-drive) without looking at the warning by your Antivirus Software and thus Affecting your System with Autorun.inf virus. Once Autorun.inf gets control on your System, it will repeatedly Block any USB Scanning Software preventing it from deleting. It also Restricts you from opening hard drives on a double click.
In such cases, the Traditional Method of deleting Suspicious Programs Using Command Prompt is quite Useful. 
So Lets start with the Steps:
  • Open command prompt. Go to start > Run, and type “cmd” . Press enter.
  • Type “cd\” and press enter to get to the root directory of your System.
  • Type “attrib -h -r -s autorun.inf” and press enter. This will look for autorun.inf in the selected Drive.
  • Type “del autorun.inf” and press enter. This will delete autorun.inf virus from the selected Drive.
How to Delete Autorun.inf Virus from pendrive without any Software
  • Repeat the above Steps for other drives. To navigate to other Drives, First type “cls” to clear your ‘command prompt’ then type “d:” . Repeat the Steps for all the Drives including your USB Disk Drive.
  • Restart your System.
  Thanks for visiting my blog plz comment if you like my post.......
Share it.......

Change The Background Image Of Windows 7 Logon Screen

How would you like to change the logon screen background in Windows 7 so as to give your Windows a customized look and feel? With a small tweak it is possible to customize the Windows 7 logon screen and set your own picture/wallpaper as the background. Changing logon screen background in Windows 7 is as simple as changing your desktop wallpaper. Well here is a step by step instruction to customize the logon screen background.
Let we start: 
  •  The image you need to set as the background should be a .jpg file and it’s size should not exceed 245KB.
  • The image resolution can be anything of your choice. However I prefer 1440 x 900 or1024 x 768. You can use any of the photo editing software such as Photoshop to compress and set the resolution for your image. Once you’re done, save this image as backgroundDefault.jpg.
  • You will need to copy this image to
C:\Windows\system32\oobe\info\backgrounds
  • You will need to create that path if it does not already exist on your computer.
  • Now open the Registry Editor (Start -> Run -> Type regedit) and navigate to the following key
HKLM\Software\Microsoft\Windows\CurrentVersion    
            \Authentication\LogonUI\Background
  • If Background does not exist rightclick LogonUI, select New and then Key, and then name it Background. Now locate OEMBackground (listed on the right side). If it does not exist, right-click Background and select New and then DWORD and name it OEMBackground.
  • Double-click on OEMBackground and set the Value Data to 1.
  • Now log-off to see the new logon screen background. If you would like to revert back to the default background, just set the Value Data back to 0.

 Thanks for visiting my blog plz comment if you like my post.......
Share it.......

Saturday, November 24, 2012

Install Ubuntu on Andriod


We will be running Ubuntu “chrooted” under Android OS, which just means that we will be running a “virtual” Ubuntu OS that runs on top of the Android OS.  Your Android OS will work fully (e.g. your phone will keep working normally) while the Ubuntu runs on top of it.First of all, you should have your Android device “rooted” because you need root access to run Ubuntu off your Android.
Second, your Android OS must support loop devices.  Most newer Android smartphones/tablets come with this support so we can mount our Ubuntu image as a loop device.  If not, you will either have to build your own kernel with support for loop devices or you can try an aftermarket ROM for your phone as most aftermarket ROMs come with support for it.For example, G2 Phone and Nexus One both come with loop device support so there’s no need for us to compile a new kernel for it but for others, you may have to.
Download Ubuntu from:-Download ubuntu.zip
Steps:-
  • Turn USB storage ON then copy over the Ubuntu folder to the root directory of your SD card.
  • make sure you have your Android smartphone/tablet “rooted”
  • You must have Android SDK installed or have access to adb.exe.
  • Make sure your Android phone/tablet is in debugging mode.[Go to Settings->Applications->Development and make sure USB Debugging is checked ON.]
  •  Connect your Android device to your computer via USB cable and set the USB mode to “Just Charge”.
  • Your Android device should be recognized as “ADB Device” under Device Manager.  If not, install appropriate drivers.
  • Open up a command prompt by typing “cmd” under Start->Search programs and files.
  • Browse to your SDK directory where you installed the Android SDK:

Then go into platform-tools directory: 
  • Type “adb devices” to double-check your Android device is recognized.
  • Type “adb shell” to enter the Android shell.
  • Then type “su” to enter super user mode, then type “cd /sdcard” and “cd ubuntu” to enter the ubuntu directory in your SD card of your Android device.
  •  Next, type “sh ubuntu.sh” to run the script which will basically get your Ubuntu image ready to run on your Android smartphone/tablet.
  • Type “bootubuntu” to enter Ubuntu.  (Next time you enter Ubuntu, you just need to type “bootubuntu” from your/sdcard/ubuntu directory, no need to run ubuntu.sh again.
If you got “root@localhost” at this point, congratulations!  This means your Android OS comes with loop device support and Ubuntu is now running “chrooted” on top of your Android OS!!!However, if you failed at this point, your Android OS probably doesn’t support loop devices, try installing another ROM or compiling your own kernel with loop device support.
 
 Thanks for visiting my blog plz comment if you like my post.......
Share it.......

How to root Windows Phone device???



WP7 Root tools lets you to control your phone. Always fun to be a superuser! With this tool you can root a device running on stock ROM/OS, and the ones running custom ROMs.
How to make use of this tool ???
On devices with stock ROM, WP7 Root Tools need to be installed with Root Access.
  • The first time a 2-phase-installation will start.
  • The app will inform you to start the first install-phase.
  • Then the device will reboot after a few seconds.
  • After the reboot you need to start WP7 Root Tools again immediately!
  • Then the second phase of the installation will start and your device will be rebooted again.
  • After the second reboot you are ready to use WP7 Root Tools. You can use the Policy Editor to give other homebrew app a “trusted” status. With this you will give the app Root Access privileges.

 Thanks for visiting my blog plz comment if you like my post.......
Share it.......