2012-09-21, Fri

Solution to VirtualBox not working after OS X 10.8.2 update

Apple released the 10.8.2 update to Mac OS X a few days ago. It breaks VirtualBox, causing the following error to come up when you try to power on your virtual machine.

VT-x is being used by another hypervisor. (VERR_VMX_IN_VMX_ROOT_MODE).

VirtualBox can’t operate in VMX root mode. Please close all other virtualization programs. (VERR_VMX_IN_VMX_ROOT_MODE).

Result Code: NS_ERROR_FAILURE (0×80004005) Component: Console Interface: IConsole {1968b7d3-e3bf-4ceb-99e0-cb7c913317bb}

I’m on a Macbook Pro Retina, and I had the same problem. Downgrading to 10.8 fixes the issue and allows VirtualBox to run again.

To downgrade to 10.8,

  1. Grab a copy of the OS X 10.8 InstallESD.dmg.
  2. Use Disk Utility to restore to a USB drive (minimum 8gb).
  3. Boot from USB (Hold down Option key when booting).
  4. Make sure you’re disconnected from the Internet (prevents the installer from auto updating).
  5. Select “Reinstall Mac OS X”

Hope this helps someone out there.

Follow the issue on

Isaac Su

Comment [1]

---

2012-07-26, Thu

How to stop wifi blinking when running Ubuntu on Thinkpad

I’m running Ubuntu 12.04 on my Thinkpad x201. Out of the box, the wifi led indicator just below the screen blinks whenever there is any wifi activity.

It gets very annoying, so here is how you can turn it off

From your shell, type

    sudo nano /etc/modprobe.d/wlan.conf

Add the following line to the file

    options iwlwifi led_mode=1

Save the file, and exit nano.

If you’re impatient, you can type the following commands at the shell prompt for immediate gratification

    sudo modprobe -r iwlwifi
    sudo modprobe iwlwifi 

Or you can reboot your computer for the settings to take effect.

Isaac Su

Comment [2]

---

2012-03-04, Sun

Red border when uninstalling NetBeans in Windows

When attempting to uninstall Netbeans 7.1 on Windows 7, you may notice that a red border shows up around the uninstall application, and that the files aren’t actually removed from your system.

This is caused by Avast antivirus auto-sandboxing the uninstall application. All you need to do is go through the setting in Avast and turn off auto-sandboxing.

After that is done, you should be able to run the uninstaller without the red border, and uninstallation should proceed successfully.

Isaac Su

tags: avast border netbeans red sandboxing uninstall

Comment

---

2012-02-28, Tue

Compiling PHP with MySQL using phpfarm

If you’re trying to compile PHP with MySQL on CentOS x86_64 you may get this error:

    checking for mysql_close in -lmysqlclient... no
    checking for mysql_error in -lmysqlclient... no
    configure: error: mysql configure failed. Please check config.log for more information.

You can fix it by adding --with-libdir=lib64 to your config-options file or whatever compilation script you are using.

Isaac Su

tags: centos mysql mysqlclient php phpfarm

Comment

---

2012-02-16, Thu

Symfony2 "No input file specified."

When getting started with Symfony2 using Apache and fast-cgi for PHP, you may get the following message come up when trying to open up the /app_dev.php/demo URL.

    No input file specified.

This occurs because the url rewrite module isn’t passing along the pathinfo details properly to the fcgi php. Here’s how you can fix it.

  1. Open the relavent php.ini file
  2. Look for the cgi.fix_pathinfo setting.
  3. You’ll most likely find it set to 0.
  4. Change it so that it reads cgi.fix_pathinfo=1
  5. Save the changes. Restart Apache.

Try loading up /app_dev.php/demo/. It should work now.

Isaac Su

tags: apache fastcgi fcgi php symfony2

Comment [3]

---

« Older