Sunday 27 May 2012

Grievance form to check your EPF balance


I had problem getting to know my balance and then decided to use this online grievance to check my balance they seem to be bit organised. I got a mail with assigned officers name and phone number
http://www.epfindia.com/grievance.htm

Some PF links doesnt work .. but atleast good that online portal is maintained and updated regularly

jailbreak iPod touch running iOS 5.1 using Redsn0w and Install veency (VNC for IOS)

Three steps to sucess
1) jail break using redsnow (DFU procedure)
http://www.iphonehacks.com/2012/03/jailbreak-ipod-touch-4g-ipod-touch-3g-ios-5-1-using-redsn0w.html

2) Then go to cydia app and then search veency
3) change date and time in ipod to avoid untrusted server certificate
Some time when iphone isnt charged for a while it resets timer to 1970 (Unix time, or POSIX time, is a system for describing instants in time, defined as the number of seconds that have elapsed since midnight Coordinated Universal Time, January 1, 1970)
Just check time to avoid certificate issue.

I did this procedure to get Eggplant tool to run on veency(VNC) for IOS.

Thursday 24 May 2012

Pscp to do an scp over terminal without password prompt between 2 ubuntu machines

// pscp for copying files across network by specifying password in command line
pscp comes along with putty tools
if there is a problem do apt-cache search
The problem was with nokuntusp package hence that had to be removed first with the below error :

The package nokuntusp needs to be reinstalled, but I can't find an archive for it.
  791  sudo dpkg --remove --force-remove-reinstreq nokuntusp
  792  sudo apt-get install pscp
  793  sudo apt-cache search pscp
  794  sudo apt-get install putty-tools
  
 
 copying files to get them installed
 pscp -r -pw 'dev' dev@10.10.0.1:/tmp/automation/android/* /destinationfolder

Thursday 17 May 2012

Installing putty tools and pscp -


The problem was with nokuntusp package hence that had to be removed first with the below error :

The package nokuntusp needs to be reinstalled, but I can't find an archive for it.

  791  sudo dpkg --remove --force-remove-reinstreq nokuntusp
  792  sudo apt-get install pscp
  793  sudo apt-cache search pscp
  794  sudo apt-get install putty-tools