Saturday, August 23, 2014

Convert KVM to Vmware

 

Simple way to convert KVM images to make use of it in VMware

Step 1.

Shutdown the KVM guest

Step 2.

convert the QCOW2 or RAW format to VMDK format

# qemu-img convert image.img -O vmdk image.vmdk

Step 3.

Upload this image to datastore

Step 4.

Create a new virtual machine with this disk image

Note :-

If you face any issues with NICs remove and re add it , you should be good.

for more commands click here

Sunday, August 10, 2014

Fix :- Missing USB- Mass storage on Slim roms

 

I have been using Slim roms for better battery life on my galaxy note, everything worked perfect apart from USB Mass storage but found the fix after digging into XDA.

here is the simple fix.

Note :- this fix will works only on rooted phones

1. Download Android Terminal Emulator (Free) from Google Playstore

2. open the installed Terminal Emulator and execute the below commands one at a time.

  “su”  hit enter and choose allow for Super User privilege
  “setprop persist.sys.usb.config mass_storage,adb”  hit enter

  “reboot”  hit enter to reboot your device.

You are done.

 

Enjoy!