This problem exists in dapper.  Vmware's vmnet adapters show up in ifconfig, 
but are started using vmware's script.  If they are shutdown by the suspend 
script, the resume script can't restart them.  My fix is to add a pipe to sed 
to remove vmnets from the list of interfaces that should be shutdown and 
restored.
< INTERFACES=`/sbin/ifconfig | awk '/^[^ ]+/ {print $1}'`
---
> # Remove any vmnets (vmware) from the list since these are not using drivers
> INTERFACES=`/sbin/ifconfig | awk '/^[^ ]+/ {print $1}' | sed 's/vmnet//'`

it works for me, and I don't think any other networks use the vmnet name
(and if they did, it would still work with a slightly larger hibernate
image).

-- 
vmware and hibernation don't play nicely together
https://launchpad.net/bugs/18180

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to