That seems to be a common problem for laptops, and the fix is usually to restart your network services.
I found the following tip by doing a
Google search using the keywords
Code:
laptop network linux suspend
:
Quote:
To get the network device to come back after suspend, you need to reload the network driver. The Linux driver maintainer has not been provided information from 3COM to fix the problem in the driver. To get around the problem, edit /etc/sysconfig/apm-scripts. You want to unload the driver on suspend, and restore it on resume. Edit the two lines that contain $NET_RESTART to match the following:
[ "$NET_RESTART" = "yes" ] && /etc/rc.d/init.d/network stop &&
/sbin/rmmod 3c59x && logger "apmscript unloaded 3c59x network module"
[ "$NET_RESTART" = "yes" ] && modprobe 3c59x &&
logger "apmscript started 3c59x" && /etc/rc.d/init.d/network start
|
I can't guarantee that it will work for you, butr there are probably similar fixes for your specific distro and laptop.