Total Pageviews

Sunday, June 2, 2013

how to switch to indian store in iphone

While searchin for an app you accidentally switched the store to US in iphone and now you want to change it back to your Indian store for installing other apps?  Please follow the steps:

Open the Appstore


Go to Featured (You will have to scroll till bottom until you see apple ID)
Click on Apple ID


View Apple ID




Then Enter your Password

Once you login it will say your account is transferred to the original country.

Sunday, June 10, 2012

How to Upgrade Samsung Galaxy S2 to Android 4

1. It is pretty simple. Download Kies and install on your machine first(If you have not installed it already)

2. Once  the lates version  of Kies is installed connect your phone and Open Kies.

3. You will  get a pop window meantioning  that new  upgrade is available.


4. Click on upgrade, agree to terms and conditions.

5.Progress of  the  upgrade will be shown  on your  machine.

6. An android symbol will be shown on your phone until the  upgrade is completed.

7. Upgrade should finish in 30 minutes depending on your  internet speed.

Note: If you lose connection in between, and termincated the installation  do not worry much about it.

Just disconnect the cable, remove the battery of your phone, put it back and turn it on again :-).

#!/Sanil



Thursday, May 10, 2012

Samsung Galaxy S2 not recognized on Mac

I  had trouble in connecting Samsung Galaxy S2 in Mac as it was not detected as USB device. The phone was detected fine in Windows 7 but not in Mac.  If you are exeriencing the same problem here is the solution for you:

  • On your Samasung Galaxy S2 phone, go to Application->Settings
  • Go to Wirelessand Network and select USB Utilities
  • Click on Connect Storage to PC
  • A message should pop up: Connect USB cable to use mass storage (Please note that you have to connect the cable to your mac when the pop up come not before that)
      Now connect the USB cable to computer
  • A green android robot should be on display with an option of “Connect USB storage“, click on it
  • The green robot turns orange now and now you can access the files on the SD card of your phone

  

Tuesday, January 10, 2012

Network manager in disabled state for Ubuntu 10.04.3

Suddenly if your network manger has gone to disabled state in your Ubuntu 10.04.3 and you are not able to enable it or make any changes even after restarting, you can do the following to fix the problem:

rm -fv /var/lib/NetworkManager/NetworkManager.state

service network-manager start

reboot

This will re-enable network manger.

Wednesday, October 12, 2011

trouble Installing pidgin-guifications

If you are getting the following error while you are trying to installl gulifcation on pidgin:

--
checking for PIDGIN... configure: error: Package requirements (pidgin purple) were not met:

No package 'pidgin' found
No package 'purple' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables PIDGIN_CFLAGS
and PIDGIN_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

--

You cal solve this by installing pidgin devel.

yum install pidgin-devel

Will solve the problem.

Friday, June 17, 2011

How to disable Windows Update Restart Pop Up

1. You are in between some work and windows automatic update reboot prompt is bugging you always?

Even if you press reboot later option, the prompt will come after sometime and there is every chance that you click on reboot now button accidentally and end up in losing all your work. To stop this prompt till your next reboot do the following:

Login to command prompt and type

sc stop wuauserv



You are done!!

#!/Sanil

Wednesday, June 8, 2011

Downland manager for Ubuntu

The best download manager that can be used in any Linux OS is wget. If you are downloading a big file just use the option -c so that the download will resume from where it ended incase of any connection interuption.

wget -c file.tar.zg.

If you still need a GUI to manage your downloads you can either use kget or gwget. Installation of both is simple.

sudo apt-get install kget

or


sudo apt-get install gwget

#!/Sanil