Sunday, September 11, 2016

How To Hide File Or Folder Inside An Image In Linux

11:30 AM Posted by Magneto Mohit No comments


hide file



If other people use your Linux PC from time to time, you can hide files and folders from prying eyes. But if they know the obvious way to view hidden files, you can use a more secretive method: compress those files and hide them in an innocent looking image file.

Before we begin, create a directory containing an image file (.png or .jpg), and the file or directory you want to hide. For our example, we are going to hide a directory of files, called secret_files. Our original image file is htg-site.png. Use the cd command to change to the directory containing the image and the file or folder to be hidden.


cd files_to_hide/


step 1 pic


We will create a compressed file containing the directory we want to hide in the image. To do this, we type the following command at the prompt and press Enter.


zip -r secret.zip secret_files/


In the above command, -r will include all subdirectories within the specified directory in the compressed file. The name of the compressed file is secret.zip and the name of the directory to be compressed is secret_files.

When you are returned to the command prompt, type ls and press Enter. You will see the secret.zip file (or whatever you named your compressed file) listed.


step 2 pic


Now, we’re going to concatenate the compressed file and image file, and save that as a new image file using the cat command. In our example, we type the following command at the prompt and press Enter.


cat htg-site.png secret.zip > secret.png


The original image file must be listed first before the name of the compressed file you want to insert into the image file. Then, we direct (>) the original image file and the compressed file into a new image called secret.png .


step 3 pic


When you use the ls command at the prompt, you’ll see the new image file, secret.png , that is hiding the compressed file. You can display the new image using any image viewer or editor. An easy way to view the image is to double-click on it in Nautilus. It will automatically open in the default image viewer.

Once you have your new image that is hiding your file or folder, you can delete the compressed file and original file or folder, using the rm command. In our example, we typed the following two commands to delete our compressed file and original folder.


rm secret.zip


rm -r secret_files


step 4 pic


To access the hidden file or folder again, make sure you’re in the directory containing the image in which your file or folder is hidden. Then, extract the file or folder from the image by typing the following command and pressing Enter.


unzip secret.png


Substitute the name of your image file for secret.png in the above command.

step 5 pic


Our secret_files directory is available again, and when we change to that directory ( cd secret_files/ ), and list the files ( ls ), we see our original files.


step 6 pic


This is not necessarily the most secure way to protect your files. It just makes them less obvious to someone poking around your system. You can encrypt your zip files to make them more secure.


Related Links:-

How to hide zip files inside an image in Windows

Saturday, September 10, 2016

How To Uninstall Windows 10 Pre-Installed Apps

10:39 PM Posted by Magneto Mohit , No comments


windows 10


Windows 10 includes a variety of universal apps, and there’s no easy way to hide them from the “All Apps” view in the new Start menu. You can uninstall them, but Microsoft doesn’t allow you to easily uninstall them in the usual way.

You probably don’t want to do this. These apps take up very little space on your device so it’s best to just ignore them if you don’t want to use them. But, if you really want to uninstall them, you can. If you’ve already uninstalled included apps, you can get them all back with a single command.


Uninstall the App Normally

Some apps allow you to uninstall them in the normal way. Just right-click an app in the All Apps list in the Start menu and select “Uninstall”. (On a touch screen, long-press the app instead of right-clicking.)

This trick appears to work for the included Get Office, Get Skype, Get Started, Microsoft Solitaire Collection, Money, News, Phone Companion, and Sports apps. You can also uninstall bloatware apps your PC manufacturer has installed using this trick. However, Microsoft’s other included Windows 10 apps can’t be removed in this way.



Use PowerShell to Uninstall Built-in Apps

You can uninstall most of the built-in apps — even ones that don’t normally offer an “Uninstall” option — with a PowerShell cmdlet. This trick won’t allow you to remove a few of the most important built-in apps, including Cortana and Microsoft Edge. If you try, you’ll see an error message saying they can’t be removed.

First, open PowerShell as administrator. Open the Start menu, search for “PowerShell,” right-click the PowerShell shortcut, and select “Run as administrator.” Agree to the UAC prompt.



Copy and paste one or more of the following commands into the PowerShell prompt, pressing Enter after each one to remove the apps you don’t want on your Windows 10 system:



Uninstall 3D Builder:

Get-AppxPackage *3dbuilder* | Remove-AppxPackage



Uninstall Alarms and Clock:

Get-AppxPackage *windowsalarms* | Remove-AppxPackage



Uninstall Calculator:

Get-AppxPackage *windowscalculator* | Remove-AppxPackage



Uninstall Calendar and Mail:

Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage



Uninstall Camera:

Get-AppxPackage *windowscamera* | Remove-AppxPackage



Uninstall Contact Support:

This app can’t be removed.



Uninstall Cortana:

This app can’t be removed.



Uninstall Get Office:

Get-AppxPackage *officehub* | Remove-AppxPackage



Uninstall Get Skype:

Get-AppxPackage *skypeapp* | Remove-AppxPackage



Uninstall Get Started:

Get-AppxPackage *getstarted* | Remove-AppxPackage



Uninstall Groove Music:

Get-AppxPackage *zunemusic* | Remove-AppxPackage



Uninstall Maps:

Get-AppxPackage *windowsmaps* | Remove-AppxPackage



Uninstall Microsoft Edge:

This app can’t be removed.



Uninstall Microsoft Solitaire Collection:

Get-AppxPackage *solitairecollection* | Remove-AppxPackage



Uninstall Money:

Get-AppxPackage *bingfinance* | Remove-AppxPackage



Uninstall Movies & TV:

Get-AppxPackage *zunevideo* | Remove-AppxPackage



Uninstall News:

Get-AppxPackage *bingnews* | Remove-AppxPackage



Uninstall OneNote:

Get-AppxPackage *onenote* | Remove-AppxPackage



Uninstall People:

Get-AppxPackage *people* | Remove-AppxPackage



Uninstall Phone Companion:

Get-AppxPackage *windowsphone* | Remove-AppxPackage



Uninstall Photos:

Get-AppxPackage *photos* | Remove-AppxPackage



Uninstall Store:

Get-AppxPackage *windowsstore* | Remove-AppxPackage



Uninstall Sports:

Get-AppxPackage *bingsports* | Remove-AppxPackage



Uninstall Voice Recorder:

Get-AppxPackage *soundrecorder* | Remove-AppxPackage



Uninstall Weather:

Get-AppxPackage *bingweather* | Remove-AppxPackage



Uninstall Windows Feedback:

This app can’t be removed.



Uninstall Xbox:

Get-AppxPackage *xboxapp* | Remove-AppxPackage




How to Reinstall All Built-in Apps

If you decide you want the preinstalled apps back, you can get them back with a single line of PowerShell code. Again, open a PowerShell window as Administrator. Copy and paste the following line into the PowerShell window and press Enter:


Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}






This tells Windows to install those default apps again. Give it some time and allow it to finish, even if nothing appears to happen at first. Even if you see an error message, restart and examine your Start menu — you may just have all those default apps back again, anyway.

Bluetooth 5: The New Faster And Long Range Update Of Bluetooth 4.2

10:14 PM Posted by Magneto Mohit No comments


bluetooth pic



A new version of the Bluetooth wireless spec will be coming to devices soon, giving users faster connectivity among devices over longer distances.

The new version, Bluetooth 5, is a big upgrade over Bluetooth 4.2, the current specification. In a clear line of sight, the range of Bluetooth 5 could stretch to 400 meters, said analysts at The Linley Group in a research note this week. That means users could connect a smartphone to a Bluetooth speaker that may not even be visible.

Final Bluetooth 5 specifications will be disclosed by the end of this year or early next year, the Linley analysts said.

In a typical, realistic setting, Bluetooth 5 will offer a range of up to 120 meters, which is four times that of Bluetooth 4.2, and be two times faster, with data transfer rates of 2Mbps, said Chuck Sabin, director for business strategy at the Bluetooth-Special Interest Group, which sets the standards for Bluetooth.

Historically, once a final Bluetooth specification is released, devices quickly follow suit, Sabin said. So if the Bluetooth 5 specification is finalized and released late this year, devices that use it could come early next year, Sabin said.

Early versions of Bluetooth were used in audio equipment, headsets and cars. But Bluetooth has evolved; it's now central to the internet of things and is being used in smart home products, medical devices, drones, robots, smart meters and wearables. It is competing with wireless technologies like Wi-Fi and ZigBee.

The faster speed, longer range and error correction features in Bluetooth 5 will make it easier to push firmware to devices, Sabin said. That will be especially helpful for automobiles, smart meters and medical devices designed to be placed inside the body.

Bluetooth 5 will also have one-to-many messaging capabilities. For example, devices will be able to transmit data from a wearable to multiple devices. That capability will help in IoT, where a smart meter could transmit data to multiple computing and data sources.

Another improvement in Bluetooth 5 is the ability to broadcast richer data, including location information, URLs and multimedia files. For example, multiple sensors in a store could provide internal GPS-style navigation to a specific item. Bluetooth 5 could also be useful for self-driving cars, which have to communicate with many sensors and external sources like traffic lights.

Devices that support the latest Bluetooth and Bluetooth Low-Energy versions may be upgradeable to Bluetooth 5 via firmware. Otherwise, devices will require new chips and controllers, which are already being developed, Linley analysts said in the research note. For example, Texas Instruments' CC2640 wireless chip will support the Bluetooth 5 standard.

How To Add Tabs To File Explorer In Windows

9:56 PM Posted by Magneto Mohit , No comments





clover pic






Now you can add tabs in file explorer in windows.

Adding tabs to File Explorer is one of the most-requested features for Windows 10. Despite users clamoring for it, Microsoft so far hasn’t delivered. But you don’t have to wait on Microsoft to get tabs in File Explorer. Heck, you don’t even have to be running Windows 10. If you’ve got Windows XP, 7, or 8 you can add tabs to Windows Explorer/File Explorer right now via the Clover 3 extension.

Even though it’s not officially supported, Clover 3 also works on Windows 10, and Vista users can probably give it a try too (but no promises since I haven’t tested it).

Why tabs?

Clover 3 appears to be based on Chromium, Google’s open source project that it uses to develop Chrome, which means you can use some of Chrome’s basic features with a Clover 3-powered File Explorer.

The best part of having tabs is that you no longer have to go through the annoyance of opening a second File Explorer window if you need one. Instead, you just click the new tab button or use the keyboard shortcut Ctrl + T. Then you can use the second tab just like a new window by dragging a file or folder from one tab to the other.

If you do want a second window, you can also tear one tab away and it automatically becomes its own window.

Clover 3 also has a bookmarks bar and if you drag a particular file or folder up to it, it’s only one click away. Keep in mind, however, that any files you put on the bookmarks bar will automatically open in their default program when you click on them, while folders open in Explorer.

The downsides

One last thing before we dive in is that, on Windows 10 at least, Clover 3 changes File Explorer’s menus. The Home and Share options are gone and the Computer menu option from Windows 8 gets added. One other notable change is that when you open File Explorer you will see a Clover icon in the taskbar instead of the usual File Explorer icon.

On a side note, Clover 3 automatically opens a new window by default showing the This PC view instead of Quick Access in Windows 10—don’t worry, though, Quick Access is still there.

Installing

It’s not perfect, but if you don’t mind those changes Clover 3’s pretty great to get tabs in File Explorer.

Here’s how to install it.


The extension comes as a ZIP folder; open that file and then install the EXE inside. Now, you just install Clover 3 as you would any other program. Once it’s done, click on File Explorer and you’ll see the tabs.


Click here to download:

How To Download Instagram Photos

9:45 PM Posted by Magneto Mohit , No comments











If you want to download all of your Instagram photos at once then you can do so by using this software.

4K Stogram is an Instagram Downloader for PC, Mac and Linux. The program allows you to download and backup Instagram photos and videos, even from private accounts. Just enter Instagram user name or photo link and press 'Follow user' button. Open up wide new vistas of imagery all from your desktop. Try it!

No toolbars, no adware, no malware. And best of all it's FREE Instagram Downloader. Enjoy your images anywhere, any time. And then you can use 4K Slideshow Maker to make a slideshow presentation!



Features


  • Grab photos of few account simultaneously and save it in JPEG on your desktop.
  • Follow your favourite photographers and get their latest photos automatically.
  • Login with your Instagram credentials and download photos of private friends accounts.
  • Access to your viewer directly from the application.
  • Download Instagram video in MP4 format.
  • Enjoy the minimalistic interface of application.
  • Use 4K Stogram on your PC, Mac or Ubuntu for free.


Download this software:

How To Recover A Bricked Android Phone

5:41 PM Posted by Magneto Mohit No comments

bricked image


So if you have bricked your phone by mistake and you don't know what to do next.

Don’t panic, it’s almost certainly fixable, depending on how it is bricked.

The soft brick: The phone freezes on the Android boot screen, gets stuck in a boot loop, or just boots straight to recovery. So long as something happens when you turn it on, it’s soft bricked. The good news is these are pretty easy to fix.

The hard brick: You push the power button and nothing happens. Hard bricks can be caused by things like attempting to flash an incompatible ROM or kernel, and there’s normally no software solution for them. Hard bricks are very bad news, but fortunately they’re very rare.

Chances are that you’re soft bricked. While the differences in how various Android phones work make it hard to come up with a catch-all solution for every instance of a soft brick, there are four common tricks you can try to get yourself back on track:


  • Wiping data, then re-flashing a custom ROM
  • Disabling Xposed mods through recovery
  • Restoring a Nandroid backup
  • Flashing a factory image


Before you get started make sure your phone and computer are set up and ready with the proper tools.




What You Need



twrp


Chances are you’ll already have most of the tools you need to recover your bricked phone. They’re the same tools you used to root your device and flash ROMs, and you should also be familiar with how they work. Even so, double check before you begin.


Most important is a custom recovery. This would have been installed when you rooted your phone, but it can sometimes get overwritten by the stock recovery, or wiped entirely. If you do need to reinstall it we recommend going with TWRP. It’s a fully featured custom recovery, very to easy to use, and has builds for most popular devices.

Next up, you might need Fastboot and ADB. These are commonly used for rooting and flashing system mods, and you can get both from the Android Developers website.

adb



And finally, some manufacturers use specialist software to flash factory images. Hopefully you can avoid doing this, but if you need to you can use Odin for Samsung, the LG Flash Tool for LG devices, and the HTC Sync Manager for HTC.



1. Wipe Data and Re-flash a Custom ROM


Try this method if: You flashed a ROM and now Android won’t boot.

One of the most likely causes of soft bricking your phone is when flashing a custom ROM goes wrong. And one of the most likely causes of that is that you opted to not wipe your data first.

Often referred to as a “dirty flash”, this is when you choose to forego the inconvenience of having to restore your apps and data by flashing a new ROM on top of your old one. As a general rule, you can get away with it if you’re flashing a newer version of your existing ROM, but you must always wipe your data whenever you flash a different ROM.


wipe


Fortunately, it’s easy to fix — as long as you’ve backed up all your data properly. If you haven’t, well, you’ve learned an important lesson the hard way.


  • Boot into your custom recovery
  • Navigate your way to the Wipe option and choose Advanced Wipe
  • Check the box marked Data (you can wipe the system, ART cache, and cache again too), then Confirm
  • Re-flash your custom ROM


Wiping your data effectively performs a factory reset, but it shouldn’t clear your internal storage or SD card (although, again, you should back it up just to be safe). When you restart your phone, you’ll see the Android setup screen. After entering your Google account information, your apps should begin reinstalling automatically.

If you need to, you can restore your data from your Nandroid backup. See the Restore a Nandroid Backup section below.



2. Disable Xposed Modules in Recovery


Try this method if: You get boot loops after installing a new Xposed module.

The Xposed Framework is one of the best tools for modding your phone, but it’s also one of the most dangerous. Xposed modules are so easy to install — many of them are available in the Play Store itself — that it lulls you into a false sense of security. It’s unlikely anyone makes a Nandroid backup before installing a new Xposed module, even though they can brick your phone.



Use ADB Push to Install the Xposed Uninstaller


The best way to deal with problems is with the Xposed Uninstaller. This is a small flashable zip that you can install through the recovery to remove Xposed from your device.



If you don’t already have it on your phone, you can put it on an SD card, or you might be able to copy it over using the ADB push method:


  • Download the Xposed Uninstaller to your desktop
  • Connect your phone to your computer via USB and boot into recovery
  • Launch the command prompt (Windows) or Terminal (Mac) and use the cd command to change the directory to where you have adb installed
  • Type adb push [full path to xposed uninstaller.zip] [full path to destination]. On Mac and Linux, precede the command with ./ (eg ./adb)
  • When the file finishes copying, flash it through the recovery




How to Disable Xposed Modules in Recovery


If you can’t use ADB push, try either of these solutions.

This method disables Xposed:


  • Boot into recovery, navigate to Advanced > Terminal command
  • Create a file called /data/data/de.robv.android.xposed.installer/conf/disabled
  • Reboot your phone


This method prevents Xposed modules from starting:


  • Boot into recovery, select File Manager
  • Navigate to the folder /data/data/de.robv.android.xposed.installer/conf/ then delete the file modules.list
  • Reboot your phone


None of these solutions will undo any changes the modules have made to your system. If this is the cause of your problem, you will have to restore your Nandroid backup.


3. Restore a Nandroid Backup


Try this method if: You need to remove other system mods, replace a tweaked system file, or if the methods above didn’t work.

restore data




The Nandroid backup is the safety net for Android mods and tweaks. It’s a complete snapshot of your phone, not just your data and apps, but of the operating system itself. So long as you can access your custom recovery and have a Nandroid backup, you will be able to get your soft bricked phone up and running:



  • Boot into recovery and navigate to Restore
  • Select your backup, confirm, and wait while it’s restored
  • Reboot your phone


Nandroid backups are a bit of a pain to make. They take a while and cannot be done in the background. But they’re worth it: they’re the simplest way to unbrick your phone.



Recover Data From a Nandroid Backup


A Nandroid backup can also save the day if you had to wipe your data and didn’t back it up in an easily restorable form. It’s possible to extract specific parts of a Nandroid, so you can restore your apps and data without needing to restore the operating system as well.

nandroid



  • Boot into Android and install Titanium Backup from the Play Store
  • Tap the menu button and navigate to Special Backup/Restore > Extract from Nandroid Backup
  • Select your backup from the list
  • Choose whether to restore apps, data, or both, and select them (or hit Select All)
  • Tap the green tick icon to start the restore process



4. Flash a Factory Image


Try this method if: None of the other options work.

If all else fails, the nuclear option is to re-flash a factory image. This restores the phone to its original state and will wipe your internal storage as well as everything else. It’ll also unroot your phone.

Because it wipes everything, you might be better off trying to flash a stock ROM first. OnePlus actually offers flashable ROMs for recovery rather than factory images, and you’ll find similar for virtually every device at xda-developers.com. In many cases you’ll be able to flash a pre-rooted stock ROM for added convenience.

boot


Where flashing a factory image differs from flashing a ROM is that it happens over a connection to your desktop computer rather than through recovery. Some devices use the Fastboot tool from the Android SDK, but others use custom software. Samsung uses the Odin tool, for instance, while HTC uses the HTC Sync Manager.

Because of the different methods used, the instructions for flashing a factory image differ for each device. And not all manufacturers make their firmwares publicly available, so you have to find them from unofficial sources.

Here’s where to find factory images for some popular Android brands:

Nexus
Samsung
HTC
Sony
Motorola
OnePlus



What About Hard Bricks?


First make sure it is bricked — plug it in and leave it to charge for a while. Attempt to reset it by either pulling the battery or holding the power button down for 10-15 seconds.


ebay pic



If it is definitely hard bricked, then you may be out of luck. Some phones can be revived with a USB Jig, a tiny device that plugs into the USB port and puts the phone into Download Mode to reinstall the stock firmware. These can be found cheaply on Ebay, but only for a very small number of devices, and even then there’s no guarantee that they’ll work.

Beyond that, you may need to send your phone in for repair (though rooting your phone probably voided your warranty) or seek out a local phone repair person. But you most likely will end up needing to buy a new phone.


Still, hard bricks are quite rare, especially for the most popular mods like flashing ROMs. Soft bricks are far more likely. It’s almost inevitable you’ll experience a soft brick eventually, but fortunately, it will just be an inconvenience rather than something to worry about.

Android Common Issues And Their Solution

4:57 PM Posted by Magneto Mohit , No comments






Hello Android users, if you're facing any problem listed below then I hope you'll get a solution. These are some of the common android problem that people face many times.


Google Play Store Crashing


If Google Play crashes after launching it, you might have a corrupt cache. Most of the time, simply wiping its cache fixes the problem. Most versions of Android use generally the same steps. Go to:


  • Settings
  • Apps
  • Swipe right to locate the “all” tab
  • Locate Google Play Store and wipe cache and data
  • Restart your phone




If that fails, you might want to try wiping data and/or cache for the following services:


  • Google Play Services
  • Google Services Framework
  • Remember to restart the device after performing the wipes.


Insufficient Space on Device


Android allocates fixed storage space for apps. Users can’t expand it. So you might run into this error even if your device indicates a great deal of remaining storage capacity.

The easiest way to free up space is to begin uninstalling apps. However, if you use music apps, like Spotify, you might not be able to find where the files are being stored. The quickest way to free up space is to use an app like CCleaner. If you want to get a visual display of where all your memory is going, try using DiskUsage. It will visually display your files’ locations and size.



Google Play Store Not Downloading Apps


Sometimes Google Play won’t install applications. There’s two kinds of popular fixes. The first is to wipe Google Play’s cache. The second is to erase Google Play’s history.

Wipe Google Play Cache


In my experience, the best fix is to wipe Google Play’s cache. Go to:


  • Settings
  • Apps
  • Swipe right to locate the “all” tab
  • Locate Google Play Store and wipe cache and data
  • Restart your phone
  • Wipe Google Play History


I’m skeptical about this fix. However, for those desperate, give it a shot. Here’s how:


  • Open Google Play Store.
  • Go to Settings.
  • Choose Clear History.





How to Reinstall the Google Play Store


You can’t uninstall the Google Play Store without root acces (what’s root?). Most users who think they’ve deleted Google Play actually have disabled it. To reenable the Play Store, go to:


  • Settings
  • Apps
  • Swipe right and locate the “disabled” tab.
  • Then locate Google Play Store. You can reenable it by tapping on the icon that says “reenable”.





How Do I Install Google Play?


Some imported tablets and smartphones don’t come with the Google Play Store. Users will need to locate an APK (Android installable file) from a third party source and then manually install it. Before getting started, you’ll need to enable third party sources. To do so, go to:


  • Settings
  • Security
  • Then check the box for “unknown sources”
  • Once checked, you can install the Play Store.


Here is a link to a legitimate Play Store APK: Download Google Play Store.




I Need an Older Version of the Google Play Store


Sometimes the newest version of Google Play won’t work on your device. In that case, you can try installing an older version. Here’s an APK Mirror post that includes links to every major version of the Play Store.




System UI Not Working


Sometimes the System User Interface (UI) can stop working. If restarting your device doesn’t fix the problem, I suggest wiping the System UI cache. To wipe the cache, go to:


  • Settings
  • Apps
  • Swipe left to “All” and select System UI
  • Then wipe the cache and restart the device




Downloads Not Working


Sometimes downloads will fail. Android includes a dedicated download manager, and its cache can become corrupted. In this case, just wipe the cache.

To wipe the cache, go to:


  1. Settings
  2. Apps
  3. Swipe right to “All” and select Download Manager
  4. Then wipe the cache and restart the device




I Can’t Find My Download


Android by default stores its downloaded files in a folder called “Download”. To locate the Download directory, first install a file manager, like ES File Explorer. Once installed, go to sdcard/Download and you should see a complete list of downloaded files.

Android doesn’t come with a file manager. Google thinks file managers are part of the past – a complicated tool that we shouldn't need when our data is stored in the cloud and retrieved on-demand.



I Can’t Play a Downloaded Video


Try using VLC Player or MX Player. They work on almost every file you can imagine. Sometimes videos in a proprietary format won’t play. There’s no real solution for this issue, other than installing the proprietary video player.



I Installed Malware!


Never install a cracked game or app — it probably has malware on it. But if you already have malware, simply uninstall the culprit. If you’re not sure which app is wreaking mayhem on your phone, try a malware scanner. If that fails, use some of our tips on finding Android malware.


Out of the three malware scanners we’ve reviewed, my favorite is Lookout. It’s free, lightweight, and catches a large number of malicious applications.




Internet Not Working


The biggest cause of mobile Internet not working: Improperly configured APN settings. If you use a prepaid/MVNO to provide Internet, chances are you needed to set up an APN to get mobile data. If these settings aren’t properly configured, you must manually set them.




How Do I Break an Android Password?


If you’ve set a password and forgotten it, you’re going to have to perform a factory reset from the bootloader. The bootloader is a preboot environment that allows the restoration of your operating system. There are ways to break Android passwords, but don’t count on it.

First, you’ll need to enter the bootloader. The method varies between models of phone. For most models, you can access the bootloader by completely powering down the device. After powering off, you will hold volume down + the power button until the phone boots. Once inside of the bootloader, you can then choose to factory reset your device.



WARNING: if you have a custom ROM, don’t do this, as it can render your device unbootable.



Android Device Crashes on Boot


If your phone no longer boots, you can enter what’s called “safe mode” — we’ve covered Android’s safe mode before. Safe Mode allows users to disable all startup apps that might be crashing the phone. Once booted in through safe mode, you can then remove the misbehaving app.





Android Device No Longer Turns On


First try removing the battery. If the battery can’t be removed, hold down the power button for fifteen seconds. If that fails, plug the device into a power source and hold the power button down for fifteen seconds. If that fails, you may need to either have the device serviced or return it.




Android Not Reading microSD Card


This happens all the time. I prefer formatting the SD card from within Android. This solves just a portion of the issues with SD cards — if you haven’t tried it yet, it’s worth a shot.

To format an Android microSD card, go to:


  • Settings
  • Storage
  • Scroll down to the bottom and select “Format SD card”
  • Then select “Format SD card” again
  • If this fails, you will need to connect the SD card to a PC with a card reader.



If your files aren’t readable after connecting to a PC, you will need data recovery software. I recommend using EaseUS’s Data Recovery Wizard. It’s free and effective.




Can’t Connect Android to a Windows PC


There are two ways that Android connects to a computer: Android Debug Bridge (ADB) or Media Transfer Protocol (MTP). ADB lets users interact with Android’s operating system while MTP only permits access to specially designated media storage directories. ADB always causes the most amount of problems.



Friday, September 9, 2016