Categories
Android Device Hardware Nexus 5 Open Source Solutions

How To Disable Keyboard Touch Vibration in Android 6 Marsh Mallow (Nexus 5x & 6p)

Google Keyboard is the default keyboard in the Android 6(Marsh Mallow). By default, its configured to enable vibration on key press. If you are someone who dislikes this feature and wants to disable it, here is a simple way of disabling it:
{adinserter 3}

  • Go to Home -> Settings -> Language & input
  • Locate “Google Keyboard” and press it to open its options.
  • Select Preferences
  • Disable the “Vibrate on keypress” option and you are good
Categories
Device Hardware Linux Open Source Solutions Ubuntu

Fixing USB Keyboard & Mouse Boot Problems in Ubuntu

USB Cables
USB Cables (Photo credit: incurable_hippie)

Sometimes on startup, Ubuntu does not recognize my USB Keyboard & Mouse. This problem is frustrating as Windows seems to recognize them.

It took me a while to recognize the root of the problem was with the USB 3.0 ports on the Motherboard. By moving the usb connections to the USB 2.0 ports on the motherboard this problem was solved.

Problem: USB Keyboard and Mouse dont work on boot up.
Solution: Move the connectors to the devices from a standard USB 3.0 port to standard USB 2.0 port(check with your motherboard manual for specifics)

Enhanced by Zemanta
Categories
Hardware Linux Solutions Web

How to Create a Bootable SeaTools USB – SeaGate Linux

Seagate U6 3.5 inch 40 GB hard disk.
Seagate U6 3.5 inch 40 GB hard disk. (Photo credit: Wikipedia)

SeaTools is a diagnostic tool to check your hard disk for errors and failure. Its an extremely useful tool to have around as hard disks fail all the time and recognizing a failing hard disk can save you a lot of trouble in the long run.

You can get a copy of the bootable iso from here: http://www.seagate.com/support/downloads/item/seatools-dos-master/
{adinserter 3}
So here is a guide to create a bootable SeaTools USB drive for Ubuntu:

  1. Install syslinux:
    $ sudo apt-get install syslinux
  2. Format the USB drive and Repartition it as FAT
    Give it a name like  “SEATOOLS”
  3. Mark the newly created partition as bootable – You can use Gparted to do this.
  4. Copy “syslinux” master boot record to drive (The code below is assuming your drive is loacated at “sdb”):
    $ sudo dd if=/usr/lib/syslinux/mbr.bin of=/dev/sdb
  5. Install syslinux on the drive partition:
    $ sudo syslinux /dev/sdb1
  6. Mount drive. You can do this by reinserting the drive or by using a command like:
    $ sudo mount /dev/sdb1 /mnt
  7. Copy the MEMDISK bootloader from /usr/share/syslinux/memdisk to the drive:
    $ cp /usr/lib/syslinux/memdisk /media/SEATOOLS
  8. Copy the SeaToolsDOS223ALL.ISO to the drive
  9. Create a file named ‘syslinux.cfg’ on the drive, with this in it (use correct .iso name):
    DEFAULT SeaTools
    LABEL SeaTools
    LINUX memdisk
    INITRD SeaToolsDOS223ALL.ISO
    APPEND iso

 

Thats it you’re done 🙂  Try booting with it. Here’s what my usb stick looks like at the end of all of this:

$ ls -l
total 3136
-r--r--r-- 1 username username 32768 2013-12-22 17:44 ldlinux.sys
-rw-r--r-- 1 username username 25244 2013-12-22 17:51 memdisk
-rw-r--r-- 1 username username 3137536 2013-12-22 13:22 SeaToolsDOS223ALL.ISO
-rw-r--r-- 1 username username 97 2013-12-22 17:54 syslinux.cfg

Categories
Android Hardware

Calibrate Your Android Device’s Battery For Longer Battery Life

Image representing Android as depicted in Crun...
Image via CrunchBase

Here is a simple way to recalibrate your Android Device’s Battery without rooting or installing any third party apps. It takes a little while to get done but is great in giving a good boost to battery life.

  1. With your Phone/Device on and charge it for 8 hours or more.
  2. Disconnect the charger.
  3. {adinserter 3}

  4. Turn your device off and reconnect your charger to it.  Charge it for one hour.
  5. Disconnect the charger.
  6. Turn on the device and wait 2 minutes.
  7. Turn your device off again and charge it for another hour.
  8. Disconnect the charger, turn the device on and use as normal.

Your battery life should now be a lot better 🙂

Categories
Hardware Solutions Ubuntu

Ubuntu Check Disk for BadBlocks & Errors

Toshiba HDD2189 2.5" hard disk drive plat...
Toshiba HDD2189 2.5″ hard disk drive platters, head and actuator arm. near 1:1 macro. (Photo credit: Wikipedia)

If your system regularly does ubuntu check disk or scan disks on boot up and if it often finds errors during the check, its highly possible that you have bad sectors on your hard disk.  In such cases its highly recommended to do a disk check to detect if you have bad sectors on the disk.