Wicd is buggy, so use ConnMan instead. (I would have written "use either ConnMan or NetworkManager & nm-applet instead" but it seems that the latest version of NetworkManager is causing some people problems, although I have not tried it myself, so have not verified that yet). Open a Terminal window and enter the following commands:
- Code: Select all
$ su
Password: <--- Here you type the root user's password.
# rc-update del wicd default
# rc-update del NetworkManager default
# rc-update add connman default
# /etc/init.d/wicd stop
# /etc/init.d/NetworkManager stop
# /etc/init.d/connman start
# exit
$
(I've added commands to stop NetworkManager, but actually if you've installed freshly from the SL 5.4 E17 LiveCD then only Wicd is activated.)
I don't remember if ConnMan is installed on the SL 5.4 E17 LiveCD, so, if it isn't, before the above you need to do:
- Code: Select all
$ su
Password: <--- Here you type the root user's password.
# equo update
# equo install connman
# equo conf update
# exit
$
(Read the SL wiki article on
Entropy to understand what that does.)
If you are actually using the SL 5.4 E17 LiveCD then the version of NetworkManager on that definitely works (I've used it), so you could use that instead of Wicd, and there would be no need to use ConnMan. In that case:
- Code: Select all
$ su
Password: <--- Here you type the root user's password.
# rc-update del wicd default
# rc-update add NetworkManager default
# /etc/init.d/wicd stop
# /etc/init.d/NetworkManager start
# exit
$ nm-applet &
$