Manage VirtualBox VDI Container (Windows guest)

Increase size: 1. vboxmanage createhd --filename <name.vdi> --size <dest bigger than src in mb> --format VDI --variant Fixed|Standard 2. vboxmanage clonehd <src.vdi> <dest.vdi> --existing Decrease size: 1. Defragment your hard drive in Windows 2. Use sdelete (1.61) to fill empty space with 0s in Windows (sdelete -z c:) [DOWNLOAD] 3. vboxmanage createhd --filename <name.vdi> --size <dest as big as src in mb> --format VDI 4. vboxmanage clonehd <src.vdi> <dest.vdi> --existing 5. Run Gparted Live ISO in VBox to shrink your (re)partition 6. Now you've got a dynamic VDI with fixed disk partition size and the possibility to increase the space…

21 Comments

Jailbreak: Root almost any Android device with Mac OS

Root almost any Android device: 1. Download Android SDK: https://developer.android.com/sdk/index.html 2. Launch Android SDK Manager: cd /your-android-sdk-macosx-folder/sdk/tools ./android sdk 2.1. Install from Android SDK Manager: "Android SDK Platform-tools" 3. Check for adb and fastboot in your platform-tools folder: cd /your-android-sdk-macosx-folder/sdk/platform-tools ls   4. Download Android File Transfer: http://www.android.com/filetransfer/ 4.1 Install Android File Transfer 5. Download Custom Recovery ClockworkMod or TWRP TeamWin Recovery ROM http://www.clockworkmod.com/rommanager http://teamw.in/project/twrp2 Download Recovery or Recovery Touch (recommended for touch-input support while jailbreaking) 6. Download SuperUser SU Download latest SuperSu Version @xda-developers.com http://lmgtfy.com/?q=supersu+download We need the CWM installable ZIP 7. Copy ClockworkMod & SuperSU into /your-android-sdk-folder/sdk/platform-tools/ 8. Connect Android device…

1 Comment

Run Windows 7 and 8 within Bootcamp with Clover/Chameleon in Parallels/VMWare Fusion

I recently needed Windows 7 in order to develop some OPENGL application. So I found a piece of paper where i noted how to accomplish this mission on a self-made MAC. I discovered a method that always works since Tiger and Windows XP: For Mavericks 10.9 and Windows 7 or 8 I`ll recommend u to have: - Parallels 9.x || VMWare Fusion 6.x && NTFS Paragon || Tuxera - A single HDD (allowed being cleared & repartitioned) - Mug of coffee Steps: - Disconnect all harddrives - Connect hard drive where Windows will be installed (!! IMPORTANT: Connect Win-HDD @PORT…

20 Comments

Mac OS External Harddisk will not unmount: could not unmount disk?

As someone recently asked me how to  unmount an external disk: a) by forcing it to unmount: sudo unmount <harddisk> e.g. sudo unmount /Volumes/hdd_xyz ...which is really dangerous because you force your disk controller to throw out your drive even it is working for you... (risk of dataloss):/ b) [Better solution] find your real enemy: sudo lsof | grep /Volumes/xyz and try to stop, eliminate those working, open files from your disk drive <xyz>

0 Comments

Mac OS: VirtualBox not shutting down correctly (10.9)?

Having trouble to shutdown your VirtualBox since you upgraded to OS X 9 (Mavericks)? [Solved] Write a short bash script, to remove your virtual vboxnet(XYZ) network adapter, which causes this failure! #!/bin/bash VBoxManage hostonlyif remove vboxnet<xyz> VBoxManage hostonlyif create Remember to make it executable: chmod +X <scriptname_xyz> So all we do here is to remove our vboxnet<xyz> "host only" network adapter by executing this script after we tried to shutdown our virtual box machine! The script successfully recreates the adapter with the "saved" settings... (<xyz> = 0...n in most cases write vboxnet0)

1 Comment

Not able to open certain Websites in any Browser on OS X 10.6 10.7 10.8?

If you are, like me, not able to open certain websites in any browser on OS X 10.6 10.7 10.8 on a MAC with Hamachi LogMeIn installed...Fell free to uninstall Hamachi, because of it fails to setup the DNS Route correctly... Try to use another VPN Tunneling Tool or ask Hamachi for an update ;) This problem occurred to me while browsing with Safari on ML 10.8.5 and 10.9. I reset Safari itself, delete the Keychain, tried every other Browser available, as it worked on every other device :( (DO NOT DO THAT! JUST REMOVE HAMACHI!)

2 Comments

VirtualBox: HowTo resize a VDI Container

I recently hit a problem, by setting up a new VirtualBox machine... I set my HDD container to 10Gb and wondered why i was running out of memory :/ So to resize/increase your HDD Container's memory size you have to: [MAC/LINUX] Fire up a terminal and type: sudo vboxmanage modifyhd "PATH TO YOUR *.VDI FILE" --resize "INT AS NEW DISKSPACE SIZE IN MEGABYTES" e.g. sudo vboxmanage modifyhd /User/xyz/VBMachines/Windummy.vdi --resize 100000 Will resize Windummy.vdi to 100GB diskspace! [WINDOWS] I suggest to change to VirtualBox Installation-Directory and execute the command e.g. cd "C:\Program Files\Oracle\VirtualBox\VboxManage" modifyhd --resize 100000 "*.vdi" Attention: You must boot into your os an resize/expand your partition…

1 Comment

Mac OS: Chameleon Bootloader USB Pendrive

This is a collection of the most important information you will need to start with your hackintosh! Explanation: http://legacy.tonymacx86.com/wiki/index.php/Org.chameleon.Boot.plist Sources: http://forge.voodooprojects.org/p/chameleon/source/tree/HEAD/ Easy alternative: http://www.tonymacx86.com/ Unibeast Driver collection: http://www.osx86.net Community: http://www.tonymacx86.com/ http://www.insanelymac.com http://www.root86.org Lan: http://lnx2mac.blogspot.de Sensors: https://github.com/kozlek/HWSensors DSDT Editor: http://sourceforge.net/projects/maciasl/ CUDA: http://docs.nvidia.com/cuda/cuda-getting-started-guide-for-mac-os-x/ PCI Vendor IDs: http://pci-ids.ucw.cz/read/PC

1 Comment