Changes between Version 9 and Version 10 of GENIRacksHome/OpenGENIRacks/RaspberryPIs


Ignore:
Timestamp:
10/14/15 15:31:44 (9 years ago)
Author:
rrhain@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIRacksHome/OpenGENIRacks/RaspberryPIs

    v9 v10  
    149149
    150150[And then to configure the wifi adapter - use the WICD GUI - https://wiki.debian.org/WiFi/HowToUse#Wicd]
     151
     152Wicd[[BR]]
     153
     154You must remove network-manager to get wicd to work. Check to see if network-manager is installed and see if, after you installed the driver, your wireless is already working in the notification area of your desktop manager. You may already be good to go.
     155
     156wicd (Wireless Interface Connection Daemon) is a lightweight alternative to NetworkManager. It is environment-independent, making it suitable for all desktop environments, including GNOME, Xfce, LXDE, and Fluxbox. Like NetworkManager, wicd is configured via a graphical interface. Your wireless interface should not be referenced within Debian's /etc/network/interfaces file.
     157
     1581. Update the list of available packages and install the wicd package:
     159{{{
     160    $ su
     161    # aptitude update
     162    # aptitude install wicd
     163}}}
     164
     165
     1661. Amend /etc/network/interfaces to contain only the following:
     167{{{
     168
     169    # This file describes the network interfaces available on your system
     170    # and how to activate them. For more information, see interfaces(5).
     171
     172    # The loopback network interface
     173    auto lo
     174    iface lo inet loopback
     175}}}
     176Note: as of wheezy it is fine to have your wireless interface in /etc/network/interfaces, but not required. You can set the wireless interface (e.g. wlan0) in the wicd client's preferences.
     177
     1781. If not already performed, add your regular user account to the netdev group and reload DBus:
     179{{{
     180    # adduser yourusername netdev
     181    # /etc/init.d/dbus reload
     182}}}
     183
     1841. Start the wicd daemon:
     185{{{
     186    # /etc/init.d/wicd start
     187}}}
     188
     1891. Start the wicd GUI with your regular user account: Original instruction had a -n.  We needed to run it without -n
     190{{{
     191    # exit
     192    $ wicd-client
     193}}}