Wednesday, September 6, 2017


Could not verify the content of 'Windows 7 x64.mf' against the available files (VERR_MANIFEST_FILE_MISMATCH). Result Code: VBOX_E_FILE_ERROR (0x80BB0004) Component: ApplianceWrap Interface: IAppliance {8398f026-4add-4474-5bc3-2f9f2140b23e}


Hi, i had the same problem with the version 3.1.4. According to a comment found here https://forums.virtualbox.org/viewtopic.php?f=5&t=26617
the system check the manifest file just if it exist. What i did was simply remove the .mf file from the directory where the .ovf and .vmdk files are and the import works fine.
This is not a solution but at least you can import your stuff.

Failed to import appliance in VMBOX

I have converted vmx to ovf using vmware ovf tool, but when I import it in virtualbox it throws error: Failed to import appliance

The solution for this error is fixed using the below steps


VMware to Virtualbox Migration After updating my Fedora Kernel , VMware Workstation 12 stopped working. This moment I thought to switch back to Virtualbox as it has support for latest Kernels. There are pretty some good documentation on how to migrate from VMware to Virutalbox format
You can find a good document on Migration Here . In Summary the steps are Power off your guest which you are migrating Open command promt as an Adminstrator and Navigate to C:\Program Files (x86)\VMware\VMware Player\OVFTool Run ovftool
eg: ovftool "C:\Users\diaryfolio\Virtual Machines\Windows 7 x64\Windows 7 x64.vmx" C:\Users\diaryfolio\Win7Export.ovf
This would take about 15mins . So please be patient Once complete Import into your Virtualbox using "Import Appliance"
Errors that might occur
Error: "Failed to open disk” - This normally happens when the Guest VM is not properly shutdown or stopped Error while importing to Virtualbox
Failed to import applianceHost resource of type "Other Storage Device (20)" is supported with SATA AHCI controllers only, line 47. Result Code: VBOX_E_FILE_ERROR (0x80BB0004) Component: Appliance Interface: Appliance {xxxxxxx-4add-4474-5bc3-xxxxxxxx}
The quickest solution is to open it with any text/xml editor, and
  1. replace word “ElementName” with word “Caption” in the whole file.
  2. replace “vmware.sata.ahci” with “AHCI”
  3. Then change SHA accordingly       (optional)

[root@diaryfolio Win10 x64]# sha1sum "Win10 x64.ovf"
0baac9938935a10b254e8cc18fc47fa3242168bb Win10 x64.ovf

Saturday, October 24, 2015

adb server is out of date / adb is not responding

Hi  friends
I was getting this error while Android Studio is getting started. Hopefully I got a solution, I got this issue fixed after UNINSTALLING MOBOGENIE software which I use to connect and backup my data and Install android apps on my mobile.

Just UNINSTALL any other software that connects to the Android Mobile. Hope it
solves your problem. GOODLUCK.

Sunday, October 11, 2015

Get HTTP Post JSON request from server android

HI,
YOU CAN USE XML PARSER FOR JSON.


JSON PARSING IN ANDROID



Multiple game controllers on Android

HI FRIEND,
I THINK THERE MIGHT BE A PROBLEM WITH YOUR HARDWARE DEVICE ON WHICH YOU ARE TESTING IT.
PLEASE TRY DEBUGGING IT ON ANOTHER DEVICE.

REVERSE A NUMBER

REVERSE A NUMBER

 public static void main(String args[])
   {
      int n, reverse = 0;
 
      System.out.println("Enter the number to reverse");
      Scanner in = new Scanner(System.in);
      n = in.nextInt();
 
      while( n != 0 )
      {
          reverse = reverse * 10;
          reverse = reverse + n%10;
          n = n/10;
      }
 
      System.out.println("Reverse of entered number is "+reverse);
   }

“cannot resolve symbol R” in Android Studio

“cannot resolve symbol R” in Android Studio

Hi, this error is caused due to min-sdk version attribute in build.gradle(module) file. 
Please change the min-sdk version to 9 or higher. 
Hope it solve the problem. please comment or share this link.