I have found three problems with the ubuntu 7.10 RC1 with all 8/16/2007 patches running as a guest in VMWare Workstation 6.0.1 build 55017
1) The VMWare tools vmhgfs-only/compat_slab.h has a bug that prevents the hgfs kernel module from compiling:
/*
* Destructor is gone since 2.6.23-pre1.
*/
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 22) || defined(VMW_KMEMCR_HAS_DTOR)
Should be:
/*
* Destructor is gone since 2.6.23-pre1.
*/
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 22) || defined(VMW_KMEMCR_HAS_DTOR)
This prevents the driver from finishing compiling and then installing under ubuntu 7.10
2) The driver that shows up in the Restricted Drivers Manager as "VMWare Blocking File System" in ubuntu 7.04 shows up as "VMWare kernel driver" in ubuntu 7.10 (it should show up with the more descriptive name in both systems.)
3) The scrolling mouse scrolls in ubuntu 7.04 doesn't scroll in ubuntu 7.10
Any help or suggestions on these items would be appreciated.