wicd

来源:互联网 发布:软件定制开发服务 编辑:程序博客网 时间:2024/05/18 01:38

目录

  1. What is WICD?
  2. Installing WICD
    1. For Gnome / Unity
    2. For KDE (Kubuntu)
    3. Configuring WICD
  3. Reverting to NetworkManager
    1. For Gnome / Unity
    2. For KDE (Kubuntu)
  4. See also
  5. External links

What is WICD?

WICD (pronounced like wicked) is an open source wired and wireless network manager for Linux which aims to provide a simple interface to connect to networks with a wide variety of settings. It provides support only for wired and wireless networks (no fancy VPNs, DSL routing and such), but it's a good alternative ifNetworkManager gives you problems.

Installing WICD

For Gnome / Unity

Open up a Terminal and execute the following commands:

  • First, we download the latest NetworkManager, in case we need to reinstall if WICD doesn't works:

    • sudo apt-get install -d --reinstall network-manager network-manager-gnome

  • Then we install WICD:
    • sudo apt-get install wicd-gtk

  • And only then do we uninstall NetworkManager:

    • sudo apt-get remove --purge network-manager-gnome network-manager

For KDE (Kubuntu)

Open up a Terminal and execute the following commands:

  • First, we download the latest NetworkManager, in case we need to reinstall if WICD doesn't works:

    • sudo apt-get install -d --reinstall network-manager plasma-widget-networkmanagement

  • Then we install WICD:
    • sudo apt-get install wicd-kde

  • And only then do we uninstall NetworkManager:

    • sudo apt-get remove --purge plasma-widget-networkmanagement network-manager

Configuring WICD

You can access WICD either through Applications / Internet / WICD, or by clicking on the tray icon --in KDE, you may have to add it by hand by right-clicing the triangle that shows the hidden icons in the System Tray (far right on the Task Bar), selecting System Tray Preferences and marking "Wicd client" on the Extra elements list.

Once you click on the Systray widget, you should see a list of available networks. Click on "Properties" (the wrench icon, or an arrow for older versions) next to the network you want to connect to to specify your network address or Access Point's password, if required:

  • Mark Use Encryption
  • Select the type of encryption of your AP (usually WPA 1/2 Hex or WEP Hex).
  • Write your AP's password in Key.

Also select Automatically connect to this network if you want to do so. Once you're done configuring it, go to the connection list again and click on it's name this time to connect to it.

Reverting to NetworkManager

For Gnome / Unity

Open up a Terminal and execute the following commands:

  • Install NetworkManager:

    • sudo apt-get install network-manager-gnome network-manager

  • Then remove WICD:
    • sudo apt-get remove --purge wicd wicd-gtk

  • Finally, restart your system.

For KDE (Kubuntu)

Open up a Terminal and execute the following commands:

  • Install NetworkManager:

    • sudo apt-get install plasma-widget-networkmanagement network-manager

  • Then remove WICD:
    • sudo apt-get remove --purge wicd wicd-kde

  • Finally, restart your system.

See also

  • NetworkManager - The standard network manager

External links

  • WICD homepage


CategoryNetworking CategoryNetworking

原创粉丝点击