I know this is a really old thread, but I was having problems uninstalling the Guest Additions on Ubuntu 10.10 Maverick Meerkat (My host machine is Windows 7 64-bit). Because Ubuntu 10.10 doesn't use an xorg.conf file by default and this is added during the installation of the Guest Additions, it needs to be removed in order for Video to work after the Guest Additions is deleted. Your first step would be to remove the guest additions package:
Code: Select all
sudo apt-get purge virtualbox-ose-guest-x11
Then, you're going to want to delete the xorg.conf file (ONLY if you haven't made one yourself; remember, ubuntu 10.10 won't have one by default):
Finally, if you're using Compiz, you'll want to reset to default settings (without this, you won't be able to start the X Server, because it's looking for an xorg.conf file):
Code: Select all
gconftool-2 --recursive-unset /apps/compiz
I used these steps when I was done using VirtualBox to boot up an existing Ubuntu partition (on a Dual-Boot system), and I wanted to be able to boot back into Ubuntu. I hope this is able to help someone!