I just finished upgrading my laptop to Ubuntu 9.10 (Karmic Koala). After the upgrade finished I noticed that for my wireless card the Network Manger applet in gnome claimed “device not managed.” A quick search revealed that this had happened in the past. I had to set managed=true in /etc/NetworkManager/nm-system-settings.conf. Doing this again and restarting the network service didn’t seem to fix the issue. After a few minutes of looking around in /etc/init.d I saw another service (network-manager!) that needed to be restarted. In summary is here is what you need to do.
Specifically change the 'managed’ under ifupdown…
1 2 | [ifupdown] managed=false |
...to true.
1 2 | [ifupdown] managed=true |
You can always restart the computer, but where is the fun in that :) To get things to work without restarting, run the following commands.
1 2 | sudo /etc/init.d/network-manager restart sudo /etc/init.d/networking restart |
Comments