Categories
Android Nexus 5 Solutions

How to Insert Sim Card in Nexus 5?

To make calls and use mobile Internet on your Nexus 5, you will need to insert an active micro SIM Card. If no card is inserted, the message “No SIM card” appears on the phone’s lock screen.

To insert the sim card you will need to eject the SIM card tray or slot. This is located in the right hand side of the phone. The eject button is a small hole just below the tray door(on the top below the Power on button).

Categories
Android Solutions

How To Disable Vibration on Touch in Android

Android gives vibration feedback on some touch events like press of back button. This can be useful and also be a pain. Here is how to disable this feature:

  • Go to Home -> Settings -> Sound
  • Uncheck the option “Haptic feedback” or “Vibrate Feedback”

 

Enhanced by Zemanta
Categories
Android Solutions

How To Disable Keyboard Touch Vibration in Nexus 5

UPDATE: For Android 6 (Marsh Mallow) use these steps

Google Keyboard is the default keyboard in the Nexus 5. By default, its configured to enable vibration on key press. If you are someone who dislikes this feature, here is a simple way of disabling it:
{adinserter 3}

  • Go to Home -> Settings -> Language and Keyboard
  • Locate “Google Keyboard” and press the settings button next to it.
  • Uncheck the tick next to “Vibrate on keypress”
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
Linux Open Source Solutions

ssh-copy-id – Perform SSH Login Without Password

If you regularly ssh to same system, ssh-copy-id allows you to login to the system directly without having to type the password each time. ssh-copy-id is a small script which copies your ssh public-key to a remote host. It appends the key to your remote authorized_keys enabling you to login without having to type your password each time.

Use it by running the following command: ‘ssh-copy-id tech@192.168.1.1‘ where ‘tech’ is the username of the remote system and ‘192.168.1.1’ its IP address. The command will ask you for the remote machine‘s password(one last time).

$ ssh-copy-id tech@192.168.1.1
tech@192.168.1.1’s password:

Now try logging into the machine, with “ssh tech@192.168.1.1“. You should get the remote systems command prompt.