Friday, May 31, 2013

Error messages explained

Some people are scared of Linux because the error messages it produces seem to imply the coming of the apocalypse. 
The biggest difficulty for these users isn't the number of error messages; it's trying to get something useful out of them. What does 'Kernel Oops' mean, for example, or 'PCI Can't Allocate'? Linux error messages are obtuse, difficult to understand and rarely helpful. Which is a pity, because the vast majority of problems can be solved quite easily, and a considerable number involve the same problems recurring again and again. In business speak, these are low-hanging fruit. And it's these problems we want to target.
You shouldn't need to be a Linux expert to get your machine to boot, or a programmer to play a movie file. Yet it's this level of expertise that most error messages seem to assume of their users. We want to demystify these common errors, and provide solutions that should help ordinary Linux users side-step the problem and get their machine back on track. We've chosen areas we think are the most problematic. These include booting problems, general software usage, the filesystem, networking and distro installation.
We've picked a few of the most common errors from each, and explained what's happening along with the solution. The intention is that even if the problems don't apply to you, you can get an idea of how and why Linux error messages might seem arcane and a little intimidating. And hopefully, this will leave you with the knowledge to find a better solution that might help you to solve your own problems.

Distro installation

Every Linux distribution has a different installation routine, and each creates problems. Ubuntu might work for one machine and not for another. A machine with a working Ubuntu installation may not work with Fedora, or OpenSUSE, or Linux Mint, or Mandriva...

ERROR Can't boot from CD/DVD

If you're new to Linux, this is often your first experience of the operating system: you insert your new disc into the drive and restart the machine, only to be greeted by the same operating system you were using before. The problem is that your hard drive has a higher boot priority than your optical drive. Many modern BIOSes include a boot menu from where you can change the priority of your devices on the fly - try pressing the 'Escape' key or F12 when you first see something on the screen. From there, you can simply choose to boot from the optical drive.
Older machines might not have the same facility. You will then need to press either the F2 or 'Del' key at boot time to enter the system BIOS, and change the boot order from there. You can usually find the option under the 'Boot' menu, and you will need to save these changes to be able to boot from the optical drive. This is the same procedure you would use if you needed to boot from an external drive or USB stick, which can be just as useful if you find yourself in an internet cafe or in front of a corporate machine.
Occasionally you will need to change the device boot priority to be able to boot a live Linux distro from your optical drive

ERROR PCI: cannot allocate

There are many errors like this, and they mostly occur at boot time. They all share the same cause - badly behaved power management. The culprit is something called ACPI, the Advanced Configuration and Power Interface. Despite being a standard for power management, it has been causing problems for over ten years. The trouble is that hardware drivers have a habit of not fully implementing the specification.
Whenever your machine's power management spins into action, such as when you turn on your machine, or resume from sleep, certain devices cause problems. Live CD installations make this problem worse, because they don't have the luxury of probing for exact hardware matches when they boot, or including every possible driver for every device, which is why this problem often occurs when installing off a Live CD.
There's only one thing you can do - turn off ACPI. You can sometimes do this from your system BIOS, but if not, you'll need to disable ACPI at boot time. Press Escape when booting to enter the Grub menu and select the option you normally use. Go down to the line that starts with kernel and press E to edit the line. At the end of this line add acpi=off noapic, press return and B to start the boot process. You should find that your machine boots without problems, and if you go on to install Linux, your distro should make a better job of choosing the correct drivers for the installation.

Booting problems

There's nothing worse than an error that stops your system booting - mainly because you're now without your primary problem solving tool. Yet booting problems are common. This is because we all like to install distributions, and we often run more than one on a single machine, as well as share a hard drive with Windows. Any one of these installations can mess up the boot routine, and getting a working installation back isn't always so easy.

ERROR Grub...

If this is all you see when you turn on your machine, the Grub boot menu has been corrupted. This is the part of your Linux installation that's responsible for booting the operating system. And the only thing you can do is boot Linux off some other media, preferably a Live Linux CD. When you get to the desktop, open a command line terminal, switch to the administrator account and type grub. This next step will also work if your Grub menu entries no longer point to your Linux partition.
Type find /boot/grub/stage1. This is searching for the location of the original boot drive, and it should return something along the lines of (hd0,0) - this is Grub's own syntax for the location of the hard drive, and this is dependent on your own installation, so don't assume it's going to be (hd0,0). You should now type root (hd0,0) (or your equivalent) to tell Grub which partition is being used to boot from, followed by setup (hd0) to reinstall the boot loader into the disk's master boot record. You should then be able to restart your machine and boot normally.
Knowing how to install the Grub bootloader onto your main hard drive can get you out of all sorts of tricky problems.
Knowing how to install the Grub bootloader onto your main hard drive can get you out of all sorts of tricky problems.

ERROR Out of range, ERROR Fatal server error: no screens found

These occur when the preconfigured screen mode is incompatible with your monitor. Press Ctrl+Alt+F1 to switch to a console view, and log in as root (or use sudo from your normal user account in Ubuntu). Users of Debian-based distros can type dpkg-reconfigure xserver-xorg to reconfigure the screen.
Other users will have to fix their settings manually as follows. First, type cd /etc/X11 followed by cp xorg.conf xorg.lxf to make a backup of your configuration file. Now open this file with whichever command line editor you're most comfortable with. Type nano xorg.conf if you're not sure. If you know your screen's specification, scroll down the configuration file and look for 'Section Monitor'. You then need to hand-edit the horizontal and vertical refresh rates.
If you don't know your screen's resolution, scroll even further down the file until you find the Screen section. You need to delete all the high screen resolutions here, as we're looking for the lowest common denominator (we'd suggest removing any resolution larger than 1024x768). You'll be able to increase the resolution from the desktop when you get your screen working. If neither of these methods work, the last failsafe option is to change the 'Device' driver to "vesa", sidestepping your graphics drivers entirely.

ERROR Kernel panic!

A 'Kernel panic' or 'Kernel oops!' message is the closest us Linux users get to the Blue Screen Of Death that still haunts Windows users. And like the Windows equivalent, there's very little you can do when one occurs other than hold down the power button. The kernel is at the heart of your Linux system, and a panic is usually caused by misbehaving hardware forcing the kernel into uncharted areas of your system's memory.
The best solution is a kernel upgrade, as the hardware problem may have been solved in a newer version. But you may need to revert to an older version of the kernel from your boot menu to be able to use Linux, to then install the upgrade.
The other option is to identify the offending hardware. If you've just made a hardware change or installed a new driver, this is likely to be the culprit. Otherwise, you might have to resort to removing each piece of hardware in turn and seeing if your machine boots. Despite the reams of output from a kernel panic error, there's usually very little the average user can understand, as the original error has sent the kernel in a completely random direction.

ERROR Incorrect username or password

You'd be surprised at just how many readers phone us to say they've forgotten their password, or even worse, promise they've never been asked for one. Fortunately, all is not lost. You need to boot your machine into single-user or recover mode. To do this, press the Escape key as soon as your computer leaves the BIOS screen on startup. This will show the Grub boot menu.
If there isn't the option to boot into either a single user or recovery mode, choose the kernel that normally boots (usually top of the list), and press E to edit the boot parameters. Move to the line that begins kernel, then press E again to edit the text on that line. Make sure the cursor is at the end of the line and add the following: rw init=/bin/bash. Press Enter, followed by B to boot. We've just changed the default boot option to open a Bash terminal rather than the normal session.
As with the safe and recovery modes, all you now need to do is type passwd followed by the name of the user whose password you need to change. Without a username, the passwd command will change the root password. Just restart the machine to use your new password.
If you've got physical access to a machine, you can easily change any user passwords by booting into recovery mode.
If you've got physical access to a machine, you can easily change any user passwords by booting into recovery mode.

Filesystem

The filesystem is the part of your Linux installation responsible for reading and writing files, including those on external devices. It's usually quite robust, but power cuts and badly behaved hardware can occasionally cause problems. And problems with your filesystem are usually tricky to solve. For this reason, the solutions we list normally use the command line.

ERROR Run fsck manually

There are dozens of variations on the basic filesystem error. These errors commonly occur while booting your machine, and often result in a 'Read only' warning for your root filesystem. This means that if your machine manages to boot, you won't be able to do anything. The solution is to boot from a Live CD, as this ensures your damaged drive isn't touched by the boot process and a filesystem repair tool will be able to make the necessary changes to fix any problems.
The command you need to run is fsck -f /dev/drive, but you need to replace drive with your root partition device. This is dependent on your installation. The first partition on the primary drive will be sda1, for example. The original error should contain this information. You also need to run fsck as the system administrator, which means Ubuntu users need to create an account from the Ubuntu Live CD by typing sudo passwd root, followed by sudo bash.

ERROR Device is busy

Many of us use USB sticks and external hard drives, but sometimes these devices refuse to dismount themselves from the filesystem. And you can't simply disconnect them either, as there's a possibility you'll lose locally cached data that hasn't yet been written to the device. You can solve this problem by typing sync on the command line, forcing any cached data to be immediately written to the device, but this won't solve the unmountable problem.
To solve this, you need to use a command called lsof, which may need to be installed separately. Typing lsof mountpoint will list the system processes currently accessing files on the device, and these will need to be killed before the system can unmount the drive.
This is also a handy thing to know if you're having trouble unmounting a CD or DVD drive, as the technique is the same (only without the sync issues, as they're read-only devices). Here's an example session:
> umount /mnt/content
umount: /mnt/content: device is busy
> lsof /mnt/content
COMMAND  PID USER  FD  TYPE DEVICE SIZE NODE NAME
smbd  23222 root cwd  DIR  8,33 4096  2 /mnt/content
> kill -9 23222
> umount /mnt/content

Networking

Very few people enjoy troubleshooting network connections. But in our wired world, they're unavoidable. Fortunately, there are a handful of errors that account for a significant proportion of problems, and we've solved them for you.

ERROR Server not found

This is the classic network error. You turn on your machine, wait a minute for it to boot, and click on the link that loads your favourite web page. Except it doesn't load, and you're greeted with a server error instead. The problem is that there is no connection to the internet, and there are many probably causes. The best way to solve this problem is to work back from main connection. Is your router powered on and working? Is your broadband connection working on the router?
If you're using wireless, you obviously need to check the wireless connection on your Linux machine. If you're using wired Ethernet, you need to check that both LED indicators that surround the cable are lit. An illuminated orange LED indicates a working connection, while the green LED flickers with any activity.
If all these are working, the problem is with your Linux box. If you've checked your distribution's network configuration panel, and everything seems to be working as it should, you need to try a couple of command line tools. ifconfig generates a lot of output, but it's the quickest way of making sure your network connection has been assigned an IP address. Look for either eth0 for a wired connection, or either ath0 or wlan0 for wireless, and make sure there's a sensible inet address for your network.
If not, try ifconfig eth0 down followed by ifconfig eth0 up. You might also want to try the route command to make sure there's only a single defined gateway address. If you find two, remove one by typing route del gateway_address.
This kind of error message can be caused by a virtually limitless number of problems.
This kind of error message can be caused by a virtually limitless number of problems.

ERROR MSN won't connect

It doesn't matter which messenger client you're using - Pidgin, Kopete, KMess and AMSN will all occasionally refuse to connect to the server. This problem is usually down to a change in the server protocol, which means that each client needs to be updated. But it could also be down your local network. MSN is sensitive when it comes to firewalls and port forwarding. The solution is to use HTTP, which is normally an option in your account window. As HTTP is the same protocol used by web traffic, you shouldn't have any difficulty making the connection.
If the connection options for MSN aren't working, switch to HTTP in the account settings page.
If the connection options for MSN aren't working, switch to HTTP in the account settings page.

Software

This is one area of Linux use we all get frustrated with. OS X and Windows users are often amazed when they find Linux users can't simply download a package from the internet, double-click on it and install the application without any further problem. They can get the latest versions of applications like Gimp, Inkscape and OpenOffice.org by simply downloading a file and running it. Linux users have no such luck, and the problem is compounded by the way most distributions use a different installation method.

ERROR Permission denied

This error is a result of system security, and is a common problem when trying to execute applications on the command line and edit certain files. Linux locks down certain files and directories so that even if a user account is compromised, that user can't run system critical applications. This system is far more practical on a server, or a Linux box hosting hundreds of user accounts. And while it's also important on a single-user system, there's nothing wrong with side-stepping the precaution and giving yourself permission to run or open the file in question.
You can do this from either your desktop or the command line, but you need to be using the system administrator's account to be able to change the required permissions. From the command line, this means typing sudo bash, or just su on non-Debian systems. You can change ownership of a file by typing chown username filename; adding the -R argument will recursively change file ownership in a directory. But this won't help other users of your computer, as they'll still encounter the permission problem.
The answer is to change the executable permission on the file so that anyone can run it. This is achieved using the chmod command. Type chmod +x filename to grant every user on your machine permission to execute the file. Similarly, chmod +rw filename should also grant everyone read and write access to the file.

ERROR Downloads won't run!

A couple of months ago, we included a Runes of Avalon 2 demo on our DVD. It was tucked away inside a tar.gz file. Most of us, hardened to the eccentricities of Linux, don't even notice. But we received a few calls from new Linux users (the people we need to win over!), asking why the tar.gz file didn't run. The answer, of course, is that .tar.gz is an archive. We explained that it's like a zip file, so it needs to be decompressed into a directory, and the demo run from there.
You can do this from most desktops with a right-click, or you can do the same thing on the command line by typing tar xvf filename.tar.gz, but there's no need for newbies to know this. You then need to look for either a .bin or .sh file, and click on this to execute the demo. If you're unlucky, you might need to type ./install.sh on the command line from within the newly created directory. On behalf of Linux advocates everywhere, we apologise for this inconvenience.



ERROR Flash movies don't move

Pity those new Linux users who boot up their fresh installation, only to find they can't waste the day on YouTube. Yes, very few Linux distributions include Flash playback support by default. What's worse is that your browser's hopelessly optimistic claim that installation is only a few clicks away is usually a lie. However, here's a failsafe way to get Flash support to work.
Search for 'adobe flash download' in Google and click on the top hit. From the 'version to download' drop-down menu on the new page, choose 'tar.gz for linux' and click on the agreement. The file will now be saved, and you need to remember the location where the browser has stored the resulting file. Next, open up a command line terminal and type cd followed by a space and the destination directory of the file you've just downloaded (this is normally going to be ~/Desktop for your desktop.
When you get there, type tar xvf install_flash* to uncompress the download and cd into the new directory. You now need to execute the installer by typing ./flashplayer-installer and follow the on-screen prompts. A browser restart later, you will have a working Adobe Flash installation.

Linux Could not find kernel image



The Could not find kernel image: linux error typically occurs on USB flash drive Linux installations if syslinux could not find the configuration file syslinux.cfg. This configuration file is used to tell syslinux where your kernel image and initrd files are located. In the following section we will cover some of the basic things to look for if you are encountering this boot error.
Use the following troubleshooting guide to assist in fixing the error.
  1. Make sure that the syslinux.cfg file exists on the USB flash drive. Depending on which version of linux you have installed to your flash drive, the syslinux.cfg file should be found at the root of the drive or within the /boot/syslinux or /syslinux directory
  2. If a file named isolinux.cfg exists and syslinux.cfg does not, rename isolinux.cfg to syslinux.cfg
  3. If the syslinux.cfg file does exist and your still encountering the error, open the syslinux.cfg file with a text editor and make sure that the paths to your kernel and initrd files are correct.

Thursday, May 30, 2013

Android Market error




 clicking download or update and it says "download error -101". I've wiped market cache, data, and i've downloaded the latest market.apk and installed it and it's made no difference. When i use my other gmail account it works every time though, which isn't much use when i want to update my paid apps and games :/

Solving steps

*********************************************
1. Settings
2. Personal: Accounts and Sync
3. Selected my Google account
4. Once within my Google account, clicking on the context menu/settings menu I selected "Remove Account"
5. Once the account was removed it prompted and asked for a new account, I entered the credentials for the same account and then rebooted
6. Once it rebooted I went to the Market, accepted the EULA and downloaded Google Gesture (I wanted to try a free app first) without any issues!

Tuesday, May 28, 2013

Laptop turns on but wont go to log in menu


an HP pavillion dv6t. Recently it will turn on but will not go to the log in menu. I can run system restore but when it goes to start up again it does the same thing. I have run all of the testson the computer and they all pass

try getting it on in the safe mode using F8. then if it opens...back up all your files and do a clean install of windows again

1.Restart your computer.

2.When the computer starts you will see your computer's hardware being listed. When you see this information start to gently tap the F8 key repeatedly until you are presented with the Windows Vista Advanced Boot Options.

3.Select the Safe Mode option using the arrow keys.

4.Then press the enter key on your keyboard to boot into Vista Safe Mode
.
5. When Windows starts you will be at a typical logon screen. Logon to your computer and Vista will enter Safe mode.

6.Do whatever tasks you require, and when you are done, reboot to go back into normal mode.

Sunday, May 26, 2013

Windows Phone 8 is no substitute for Android or iOS



Android and iOS have many advantages over Windows Phone 8, but perhaps the biggest is the length of time they’ve been available. The first Android-powered handset – the T-Mobile G1 – came out in 2008 and Apple’s first 2G iPhone landed in 2007. Since then both platforms have evolved significantly.

Windows Phone, by comparison, is a newbie and is still very much finding its feet within the space. That’s not necessarily a bad thing as it’s always good to have new ways of doing things. But it does pose problems for certain types of users invested in other platforms.

Coming from Android 4.2 to Windows Phone 8 was an odd experience, almost like stepping back in time. On the surface Windows Phone 8 looks ultra-modern and fresh. The UI is snappy and navigating around the phone is simple. I also really liked having the ability to re-size live tiles.

Microsoft’s vision for how you interact with a mobile device is also very bold, it dares to try something new – and that’s highly commendable. But in a world where most people are used to Android or iOS’s way of doing things, switching to Windows Phone presents quite a few problems.

My main gripe with Windows Phone is the lack of applications. It’s way behind iOS and Android. And it’s not just big name games and mobile specific apps I’m talking about here, it’s things like Dropbox, Google Drive, Chrome, Google Reader – stuff you take for granted on iOS, Android and even desktops.

Apps like these, particularly Dropbox, Drive, Chrome and Reader, are integral to my day-to-day working life. Windows Phone 8 supports none, which causes all sorts of problems for a user like me. I need these things. And if they’re not available, I'll go elsewhere.

Microsoft’s SkyDrive is thoroughly excellent, offering all the functionality of Dropbox and top-notch syncing between mobile, desktop, and tablet, which is great. Thing is – I don’t use SkyDrive because I'm committed to Google and Dropbox’s way of doing things years ago,


This is great news for Android and iOS users, potentially bad news for Apple and Google’s business models, and a stupid move by Microsoft as it’s effectively offering over its platform’s USPs to its two biggest competitors. God knows who signed off on that one.

I also struggled getting basic things done with Windows Phone. During the week I had the Lumia 920 I tweeted less, hardly went on Facebook, and barely browsed the web.

The reason? I don’t like using aggregated services for things like Twitter and Facebook. Dedicated apps work better for me, despite the inventive nature of Windows Phone’s People Hub. I’ve also lovingly maintained an extensive collection of bookmarks in Chrome, which, of course, isn't available for Windows Phone and the bookmarks aren’t supported in IE10.

But the thing that really annoys me about Windows Phone is the waiting. It just goes on and on and on. Open an application, it doesn't matter if it’s native or third party, and you have to wait a few seconds too long for it to do anything. This irked me when using Windows Phone 7 and I’m disappointed that Microsoft hasn’t sorted it out in Windows Phone 8.

By the end of the week I’d grown so tired of staring at Microsoft’s loading-beads that I switched back to my Note 2 a day early. I’d like to say a lot of the above can be put down to the learning curve associated with Windows Phone, but it can’t – I used Windows Phone 7 for months, I know Windows Phone quite well.

And I think the fact that Microsoft is launching a lot of its services – SmartGlass, Xbox Music, Xbox Live – cross-platform shows that it doesn't have total faith in its operating system either.

In fact, I’d argue that Microsoft doesn’t even need a mobile phone operating system. Just do Windows 8/RT-powered hybrid devices instead, focus on further developing services like SmartGlass and Xbox Music, and leave the phone space to Google and Apple.

I wanted to like Windows Phone 8, and I do love certain aspects of it, like the way it looks and the built in Xbox services. But in practice, as an every day phone, it lacks so much of what’s now taken for granted inside Android and iOS, So much so that anyone switching from an iPhone or, say, a Galaxy S3 will be horribly disappointed.

Perhaps Windows Phone is best viewed by someone who's never used iOS or Android? At least that way you wouldn’t miss either platform. It’ll be interesting to see how Windows Phone stacks up against RIM’s BlackBerry 10 platform,

Friday, May 24, 2013

Cant download apps on android 2.3 tablet.



Can't download apps on android 2.3 tablet. Error due to insufficient disk space

Please go to Settings
Select Applications
Select Manage Applications
Select All
Select Market Updater and Clear Data
Go back to ALL and select Google Play Store
Select Clear Data.
Turn your device off and back on.
Go back to Google Play and try to download apps again.

Wednesday, May 22, 2013

Notebook display assembly diagram.

Here is a simple diagram that will help you to understand how a notebook display assembly works and how an image appears on the screen. I’m not an artist and I tried my best drawing this diagram, so if you cannot see a laptop in this picture, don’t be mad

A generic display assembly includes a very few parts and knowing them will help you to understand witch part can cause a problem if you laptop video not working properly.
Video cable. A video signal from the motherboard goes to the LCD screen through the video cable. The video cable connects to the motherboard (or video card) through the connector 1. The video cable connects to the LCD screen through the connector 2. The video cable (in most cases) is also responsible for supplying a necessary voltage for the FL inverter board. The video cable connects to the FL inverter board at the point 3.
FL inverter board. This board is responsible for converting low voltage DC power (point 3) to high voltage AC (point 4), necessary to light up the backlight bulb. If the FL inverter board is bad, the LCD screen (backlight bulb) will not light up when you turn on the laptop, but you still should be able to see a very dim image on the screen.

CCFL (backlight bulb). When the backlight bulb lights up, you can see an images on the LCD screen. In most cases the backlight bulb is a part of the LCD screen and if it’s bad, the entire screen has to be replaced. By the way, some specialized repair shops can replace the backlight bulb itself.
Lid close switch. The lid close switch is a small button that locates close to the display hinges. On some newer models there is no button, because the switch is magnetic. You can set up your laptop to go to a hibernation mode or to a standby mode when the LCD is closed. It’s done through power management software. These modes are triggered when the display is closed and the lid close switch is pressed down. If the LCD screen on your laptop will not light up when you open the display assembly, check the lid close switch is stuck inside (it might happen because the switch is dirty).

Tuesday, May 21, 2013

SYSTEM_SERVICE_EXCEPTION STOP: 0x0000003B



If you are unable successfully boot into Windows because of the fatal error, Windows has an option to reload registry information from the last successful boot. To revert to the last successful boot:



    1.     Reboot the computer.
    2.     Near the end of the BIOS messages or graphic, but well before anything appears from Windows, press the F8 key. You may only have a few seconds to get the right spot to press F8 before it attempts to go into Windows. If the BIOS complains about a pressed key or asks you to go into BIOS setup, you've pressed F8 too soon (Don't go into BIOS setup).
    3.     When successful, you should see a black screen with white text "Windows Advanced Options". Use the up or down arrow keys to highlight Last Known Good Configuration and press Enter.
For this case, update the video driver.
An exception happened while executing a routine that transitions from non-privileged code to privileged code.
After the Stop code will be 4 hex values: {Parameter 1, Parameter 2, Parameter 3, Parameter 4}.
Parameter 1 specifies the exception that caused the error.
Parameter 2 specifies the address of the exception record for the exception that caused the error.
Parameter 3 specifies the address of the context record for the exception that caused the error.
Parameter 4 is not defined.

Sunday, May 19, 2013

Android process stops unexpectedly



Possible causes

Apps or system processes may force close or stop unexpectedly. This may display an error message or may not. There are several possible causes for this:

  • App cache or data is corrupted
  • Third-party applications with software problems
  • Programs running in background
  • Incompatibility with app settings

These problems can occur even on properly working Android devices from all carriers and manufacturers. The most common cause of the problems are listed above and can be fixed with the steps below.

Resolution Steps

App previously worked

If the app that is showing errors has previously worked and not been updated, follow these steps:

  1. Think about the pattern of what you were doing when the device froze, and what programs were open in the background. Use the answers to focus on device functions or apps that are not working correctly.
  2. Check the docs for your device  to see if there are any specific instructions for it
  3. If the problem is related to contacts or an 'android.process.acore', back up your contacts:
    1. From the Home screen, press the Menu key.
    2. Touch Settings.
    3. Touch Accounts & sync.
    4. Turn off all synchronization to Google accounts and T-Mobile Contacts Backup.
    5. Return to the Home screen.
    6. Open the App menu.
    7. Touch Contacts or People.
    8. If there are any contacts listed, they are stored on your phone (because you turned off the ones synced). From the menu, export them to the SD card to save them.
  4. Clear the app cache and data:
    1. From the Home screen, press the Menu key.
    2. Touch Settings.
    3. Touch Applications.
    4. Touch Manage Applications.
    5. Touch All.
    6. Select the application that is having issues.
           
      Note: For the following errors:
      • android.process.acore: Select Contacts storage.
      • android.process.mms: Select Messages.
      • com.google.process.gapps: Select Download Manager or Downloads. Make sure the Downloads Manager is Enabled. If it isn't, enable it before proceeding.
      • TWlauncher process com.sec.android.app: Select TWLauncher.   
    7. Touch Clear data and Clear cache if they are available. This resets the app as if it was new, and may delete personal data stored in the app.
  5. If you turned off sync, return to Accounts & sync and turn it back on. If necessary, import any contacts you exported to the SD card.
  6. Uninstall all third-party party task managers, battery saver, or apps that close programs.
  7. Restart the device.
  8. Open the app to test if the problem happens again.
  9. If the problem recurs, uninstall the app (if possible).
  10. Wipe the cache partition to clear system memory.
    Note: To find steps for your device, search Support Community for: wipe cache [device name]
  11. Open Play Store, and re-install or update the app.
  12. Open the app to test if the problem happens again.

Tuesday, May 14, 2013

Toshiba SatelliteM35X

Power connector before repair
Inside the yellow circle is the main power connection from the connector to the board – note that you can see a dark circle completely around it, indicating that there is no solid metal connection.
Also note that it looks somewhat ‘burnt’ – this is indicative of sparking taking place. This connection carries 3 amps of current. The current then passes through the component labeled PF1 ( literally ‘Power Fuse 1’). It then is supposed to connect to this side of the part circled in red (‘PL1’) – but notice that flexing of the board as the connector was wiggled caused a crack you can see running horizontally under this end of this part.
Same view, after the repair:
Same view after repair
The green coating covering the metal leading up to the power connector was scraped off down to the bare copper of the board, in three places – the center pin, circled in yellow here, and the connector pins on both sides (see below). All were resoldered – on the top side of the board first, then touched up on the bottom (which is not where the primary electrical contact is made). The new broader, smoothly-tapered connection will be both physically stronger, and a better electrical connection.
Inside the red circle, you can see this was done for other part (PL1), as well.
Bottom view of connector, before the repair:
Bottom view of connector before repair
Again note that inside the circled areas, you can see dark circles where there should be solid metal, indicating that the original physical connection has been broken, and the parts are only transferring power due to the fact that they are touching . In fact, the only thing even holding the connector to the board is the connection in the bottom middle (between the two lower yellow circles) and it has a crack in it, as well.
Notice, also, the dried flux residue, indicating that this bottom-side soldering was done entirely, or touched up, by hand – and not cleaned afterwards.
The actual metal that conducts the power is actually of the top side of the board, where the connector is mounted, but the fact that the solder that flowed through mounting holes has cracked indicates is was not properly soldered in the first place.
As you can see in the two views below, all solder joints between the connector and the top side copper on the board now look much better. Increasing the size and coverage of the solder joints to the metal sides of the connector will make its mounting to the board physically much stronger as well, and better able to resist any side-to-side or up-and-down forces.
Power connector soldered
Power connector top view
Inside the red circles, you can see that both sides of that part PL1 have been well resoldered.
This bottom view of the board after the repair shows good flow of solder through to the bottom side at the time the joints were resoldered.
Connector resoldered bottom view

Monday, May 13, 2013

Internet Explorer crashes or stops working


If Internet Explorer crashes, stops working, or closes immediately after being opened, you might get an error message about Internet Explorer not working or that it encountered a problem and needs to close. First make sure that you have a good connection to the Internet. If you can't open Internet Explorer or if it opens briefly and then closes, the problem might be caused by low memory, or corrupted or missing system files. Restart your computer to clear the memory and then open Internet Explorer by itself.
If your Internet connection is good and you've restarted your computer but Internet Explorer is still having problems

Disable all add-ons

While browser add-ons can enhance your online experience, they can occasionally interfere or conflict with other software on your computer. Try starting Internet Explorer without add-ons to see if the problem goes away. Here's how:
  • Click the Start button Picture of the Start button, click All Programs, click Accessories, click System Tools, and then click Internet Explorer (No Add-ons).
If disabling all add-ons solves the problem, you might want to disable all add-ons and then turn on add-ons only as you need them. This will allow you to figure out which add-on is causing the problem. For more information about add-ons,
To automatically disable add-ons, run the Internet Explorer Add-on Fix It.

To run the Internet Explorer Add-on Fix It

  1. Click this button:
  2. When asked whether you want to run or save the file, click Run, and then follow the steps in the wizard.

To manually disable add-ons

  1. Open Internet Explorer by clicking the Start button Picture of the Start button, and then clicking Internet Explorer.
  2. Click the Tools button, and then click Manage Add-ons.

Reset Internet Explorer settings

If disabling add-ons doesn't solve the problem, try resetting Internet Explorer back to its default settings. This removes all changes that have been made to Internet Explorer since it was installed, but it does not delete your favorites or feeds
To automatically reset Internet Explorer settings, run the Reset Internet Explorer Settings Fix It.

To run the Reset Internet Explorer Settings Fix It

  1. Click this button:
  2. When asked whether you want to run or save the file, click Run, and then follow the steps in the wizard.

To manually reset Internet Explorer settings

  1. Close all Internet Explorer or Windows Explorer windows.
  2. Open Internet Explorer by clicking the Start button Picture of the Start button, and then clicking Internet Explorer.
  3. Click the Tools button, and then click Internet Options.
  4. Click the Advanced tab, and then click Reset.
  5. Click Reset.
  6. When you are done, click Close, and then click OK.
  7. Close Internet Explorer and reopen it for the changes to take effect.

Scan for malware

Malicious software (malware) and viruses can often cause Internet Explorer to slow down or stop working.

Sunday, May 12, 2013

Sony Tablet S is showing error message, "Error (0x00050001, 0x00020006)

Follow these steps to initiate a forced External Data Reset (Android Reset) procedure.
IMPORTANT:
  • Unfortunately, because it is being reset to the condition it was in when it was first purchased, all of the data and settings will be erased from the tablet.
  • Before starting this procedure, make sure the AC adapter is connected to the tablet charge connector and is plugged into a working wall outlet.
  1. Press and hold the Power button.
  2. At the Power off prompt, tap OK .
    Power off
    IMPORTANT: The tablet cannot be asleep and successfully perform this operation. It must be completely off.
  3. With the tablet completely off, press and hold the Volume Up (+) button, and while continuing to hold that button, press and hold the Power for several seconds.
  4. Once the Sony logo appears, let go of the Power button. NOTE:   Continue to hold the Volume Up (+) button until the Android system recovery screen is displayed. Once that screen is displayed, release the Volume Up (+) button.
  5. In the Android system recovery screen, use the Volume Down (-) button to highlight the Reset to factory settings option.
    Android system recovery
  6. Quickly press the Power button.
  7. In the Reset to factory settings: Confirm reset screen, use the Volume Down (-) button to highlight the Yes -- delete all user data option.
    Confirm reset
  8. Quickly press the Power button.

Tuesday, May 7, 2013

Fix error 0x80073cf9 when install store apps in Windows 8



When I try to install apps and games from Windows store in Surface Pro Windows 8, especially bing/weather app by Microsoft corp, then system displays a error message “Something happened and this app couldn’t be installed. Please try again. Error Code: 0x80073cf9″ Selecting “try again” or “Cancel install” option is not working. The issues also happen while I do update.
You can try these methods to solve the error code 0x80073cf9 in Windows 8 OS:
* Turn off Antivirus software and Firewall temporarily.
* Reset store cache: Press Win + R, type WSReset.exe and hit enter.
* Use File explorer to open C:\Windows folder, and re-create an “AUInstallAgent” folder if it is missing.
* Open command prompt (Admin), type the “sfc /scannow” command and press Enter to run System File Checker.
* Open Registry Editor and delete the whole OLE folder in HKEY_CURRENT_USER\Software\Microsoft\

Sunday, May 5, 2013

Samsung Galaxy S3 Most Common Problems and Errors





this is going to be the ultimate list of the most common problems and most pressing errors of the Samsung Galaxy S3. We’ve aggregated every possible problem users reported online and we are not planning on stopping.


We know that the Samsung Galaxy S3 is a great phone with lots of features and we love it. But let’s face it, it’s not perfect and since it is the most popular Android device in 2012, millions of users also reported having been able to experience a problem or two.
We did an extensive research about those problems for months now and here we are publishing a very, very long article dealing with many Samsung Galaxy S3 problems and issues users reported online.
You will see that there are numbered recommendations; each item is actually a recommendation and not a continuation of the other.
Important Note: This is an ultimate list of problems users have reported to have experienced while using the Samsung Galaxy S3 and we will update it every time we discover a new problem. So, you better bookmark this page to avoid losing it.


Scenario: The loud speaker sounds off even if a headphone is inserted.
Recommendations:
Try to use a different headphone and see if it works. If it does, the problem is with your headphones. You better buy another set.
Try to pull the headphone jack a bit, it could just be a loose contact.
Try to install SoundAbout and see if it can help resolve the issue. It is known to resolve a lot of Galaxy S3-specific headphone problems.
. Wi-Fi connection drops more often

Scenario: Galaxy S3 Wi-Fi connection suddenly drops without apparent reason.
Recommendations:
For a Wi-Fi connection that keeps on dropping in your Galaxy S3, you need to first check whether your router doesn’t have a problem.
Check if you can connect with other devices just fine without being dropped off.
Connect to a network you often get internet connection from and let your device “Forget” it. Reboot your phone and let it detect the same network and reconnect. See if that works.
. Touchwiz keeps on freezing

Scenario: Galaxy S3 becomes so slow because the Samsung TouchWiz UI keeps on freezing.
Recommendations:
Go to Settings => Application Manager => TW => Clear Data.
If the first recommendation doesn’t work, you need to backup all your data and do a Factory Reset.
#4. Insufficient Internal Memory error

Scenario: You can’t download or install an app because you’re getting “Insufficient Internal Memory” error popping.
Recommendations:
Transfer some of your files to your computer including music, movies, etc. Or, using your computer, you can cut them from the internal memory to the external memory (microSD card).
Uninstall apps you don’t use anymore.
. Running low on RAM

Scenario: The Galaxy S3 is running very slow because the RAM is too low.
Recommendations:
Press and hold the Home button from your home screen so the list of the running apps shows up. Swipe each app left or right to close them.
Go to Settings => Application Manager => Choose Running Tab => Close Unnecessary Services.
Uninstall heavy apps like games especially when you’re not playing with them anymore.
Do a Factory Reset.
. No SIM Card error

Scenario: The phone says it doesn’t have a SIM card even if you’re sure there’s one in it.
Recommendations:
Turn off your phone, open the back panel and check if the SIM card is properly inserted.
Take the SIM card out and gently wipe it with a clean, dry cloth.
Insert a small piece of paper between the holder and the SIM card. It’s not really an orthodox way to fixing this problem  but if the issue is with the connection, this will greatly help.
. Wi-Fi authentication fails

Scenario: Cannot connect to a Wi-Fi network because authentication fails.
Recommendations:
If you’re not the one who made the network, ask the administrator for the password or WEP key.
Check if you’ve entered the correct credentials, i.e. password or WEP key.
Check if the signal is stable from where you stand. There are times with the signal drops during authentication so the process cannot go through.
If you’re the one making the network, try to use an open connection first and see if you could connect just fine.
Try to use WEP, it is always known to be stable than other network types.
Reboot phone to refresh everything.
Try connecting to other networks to see if you could connect with them.
. Google Play Store server error

Scenario: Every time a user downloads an app from the Google Play Store, the server error pops up.
Recommendations:
Check if you have a good internet connection. The server error message may be caused by interrupted connection.
Update the Google Play Store app.
Try downloading a different app to see if it would go through. If it does, then the problem is with the app you’re downloading.
. USB Hardware ID error

Scenario: Every time a user connects the phone to a computer, the USB Hardware ID error shows up and the device couldn’t be detected by the computer.
Recommendations:
Download and install necessary USB drivers.
Better yet, download and install the Samsung KIES application. The USB Hardware ID error is actually all about drivers.
. Music pauses more often

Scenario: Users experience having the music paused midway through the track, or the player pauses in between tracks.
Recommendations:
The Voice Command feature may be getting in the way for the music player to function well. So disable it to see if it works well after that. Go to Settings => Language and Input => Voice cmd for apps => uncheck Music.
While this issue may be minor, if you can’t live with it, backup all your data and do a Factory Reset.
. Galaxy S3 shuts down automatically

Scenario: For no apparent reason, the Galaxy S3 reboots automatically.
Recommendations:
Try to discover what’s keeping the phone reboots. If they are apps, then find what apps are causing the problem then disable or uninstall them.
For this problem, perhaps the best thing to do is Factory Reset.
. Cannot play Flash videos anymore

Scenario: Users complaining not being able to play flash videos after an update.
Recommendations:
Google took the Flash player out for good because Adobe didn’t want to provide support anymore.
There is an .apk file you can find from the web, you can download that and install into your device. We refuse to link to sites offering unofficial Android apps; just Google it.
. Cannot set specific music folder

Scenario: Many users were asking how they could set a specific folder for music.
Recommendations:
The Android stock music app does detect all formats or music but users cannot actually direct the app to just scan contents from a specific folder. As a workaround, you can just copy music you want to play in your device.
Or, you could download and install the Mixzing music app that would allow you to set a specific folder to read music from.
. Galaxy S3 home screen often freezes

Scenario: Every time a user press the Home button to go back to the home screen, the phone freezes for a few seconds.
Recommendations:
This problem is replicated, perhaps, because of the TouchWiz UI. So, you might as well want to clear data for the launcher. Go to Settings => Application Manager => TW => Clear Data.
You can also try to stop other services that’s eating a lot of RAM so the performance would improve. The Galaxy S3 only has 1GB RAM and around 200MB have already been eaten by the OS other services for its features. So, freeing some space would surely help.
. Message app lags and freezes

Scenario: Users can no longer send a text message because the Message app won’t load, keeps on lagging, and even freezes from time to time.
Recommendations:
Clear data of the app: Settings => Application Manager => Message => Clear Data.
You could also delete some really old messages to free up some space. It has already been proven that messages accumulate, the app becomes slower and slower to the point that it will crash.
The last resort would be to do a Factory Reset.
. Galaxy S3 won’t turn on and charge

Scenario: The phone is totally drained and it won’t charge. The user couldn’t bring it to life.
Recommendations:
There are a lot of reasons why a phone won’t power on but in the case of the Galaxy S3, it is always the battery that’s the culprit. Users need to take the battery out, plug the charger in to the power source and plug the phone to the charger. They have to press the power button so the device will be forced to power on taking electricity from the charger. Once on, they are advised to turn it off and re-insert the battery then charge it normally until full.
If the first procedure won’t work, try to boot the device into the Recovery Mode. If it does boot up in Recovery Mode but not in normal mode, then it’s a software problem. A factory reset via the Recovery Mode can fix this problem.
. Battery is drained faster

Scenario: The Galaxy S3′s 2300mAh battery powers the device for only 5 hours or less. That’s not as long as what the phone has been advertised.
Recommendations:
The first thing to do is adjust screen brightness. The phone has a Super AMOLED display and it is just natural the display will eat up more power than other components. You could use a low-level brightness or use the auto-brightness feature.
Stop apps running in the background. Press and hold the Home button and swipe left or right apps that’s showing on the screen.
Stop unused services. Go to Settings => Application Manager => All tab => stop unnecessary apps and services.
Reboot the device to clear its memory.
Let the phone rest from time to time.
. Memory card dismounts from time to time

Scenario: The external storage gets undetected from time to time. Pictures couldn’t be loaded in the gallery, and files become inaccessible.
Recommendations:
If you are using a SanDisk microSD card, then there’s nothing wrong with your phone. SanDisk already issued a statement acknowledging some of their storage devices have problems and most of the issues experienced in Galaxy S3 are thought to be caused by them.
Others who have experienced the same problem attest that by reformatting the microSD card (after backing up all your data, of course), the problem will be gone.
. Slow battery recharge

Scenario: It would take forever for the battery to be fully recharged. Others say they left the phone plugged in over night but it still shows 80% of the battery.
Recommendations:
These problems actually happened after the Jelly Bean update. Many say they have resolved the issue by clearing battery statistics. It seemed that the indicator says the battery is not yet fully charged but in fact, it is.
For those using a different charging unit, make sure the one you bought is rated 2A. Anything lower than that would take longer time to charge or won’t charge at all.
. Galaxy S3 muted occasionally

Scenario: A user can’t hear a sound coming out from the loudspeaker or headphones from time to time. In other words, the phone is muted for a short while occasionally.
Recommendations:
There could be some problems with the speaker, so try to inspect if something is blocking or acorroding it.
It could be a software problem so check for software updates. Many of audio-related problems were caused by a software glitch and could be fixed by an update.

Saturday, May 4, 2013

iPhone 5 trying to download from iTunes on computer error



check to see if you have the latest version of itunes installed. If not download and install the latest
version. Please> click here for iTunes<
If you have the latest version of iTunes or when you get it installed, follow these steps> reboot the iPhone> then restart the computer> then reconnect to the computer using a different USB port. To reboot the iPhone>Hold the Powerbutton and the Home button down at the same time until the Apple logo appears, then release the buttons and allow your iPhone to reboot,
If the error occurs again, Verify that your computer meets the minimum system requirements. iOS devices require the following minimum version of Windows:

  • Windows XP Service Pack 3
  • Windows Vista
  • Windows 7
Download and install any available software updates from Microsoft.
Connect the device directly to your computer; not to an external USB hub.
  • Check that the dock connector on both the device and cable are clean of any lint or other debris. If possible, connect your device using a different Apple 30-pin to USB cable.
  • Disconnect other USB peripherals from your computer, with the exception of your keyboard and mouse.
  • After disconnecting these peripherals, restart your computer, connect your device, and open iTunes.
  • Connect your device to a different USB port on your computer.
  • Use the Task Manager to stop some Apple Services:
  1. Launch the Task Manager:
    • For Windows XP: Press Control + alt + delete on the keyboard.
    • For Windows Vista and Windows 7: Press Control + alt + delete on the keyboard. Then click "Start Task Manager". If Windows needs your permission to continue, click "Continue".
  2. Click the Processes tab of the Task Manager. End each of these three processes by clicking in their names and choosing "End Process":
    • iTunesHelper.exe
    • AppleMobileDeviceService.exe
    • iPodService.exe
  3. After ending these processes, reboot your computer, open iTunes, and test.
  4. Connect your device to a different computer to determine whether the issue is specific to your computer.

Friday, May 3, 2013

Windows 8 Restart and Shutdown Problems

There are many Windows 8 users who are complaining about various restart and shutdown issues. Many times their Windows 8 computers restart themselves as soon as the login screen appears. Sometimes their computer systems hang while rebooting or shutting down the system.
Most of the times these kind of issues are related with the new "Hybrid Shutdown" feature introduced in Windows 8. Hybrid shutdown feature of Windows 8 decreases the total startup time by hibernating the kernel session instead of closing it which reduces the overall Windows loading time because resuming from hibernated system session is very less work compared to a full system initialization.
But this new feature is causing problems to some computer systems and if you are also facing reboot or shutdown problems in Windows 8, you can fix it by disabling this new hybrid shutdown feature and doing a complete shutdown.
Just follow these simple steps: 
 If you are on new Start Screen, type power and Windows will automatically search for the term and will show you the results.
If you are on Desktop, move your cursor to top-right corner of screen to access new Charms Bar. Now click on Search option and type power in search box. 
. Now click on Settings link given in right-sidebar of search results page and then click on "Change what the power buttons do" link given in the search results as shown in following screenshot
 
. It'll open Power Options window. You can alternatively open the same window by typing powercfg.cpl in RUN dialog box and press Enter and then click on the "Choose what the power buttons do" link given in left sidebar.
Now scroll down to bottom and you'll see "Turn on fast startup (recommended)" option given in Shutdown settings section as shown in following screenshot
:.
Disable the option by unchecking the checkbox and then click on "Save Changes" button.
PS: If the option is not shown or greyed out, scroll up and click on "Change settings that are currently unavailable" link. 
. That's it. Restart your system and your reboot or shutdown problems should get fixed in Windows 8.
NOTE: If the above solution doesn't fix your problem, you can try to execute following command in Command Prompt. Open Command Prompt as Administrator by right-click on the bottom-left corner and select the same option from the Win+X menu
 :
bcdedit /set disabledynamictick yes
The above mentioned command used to fix a very annoying freezing issue found in Windows 8 Release Preview build. According to Microsoft the issue was fixed in Windows 8 RTM but if you are still facing the issue, you can try the command. :