Linux Install and Configure Netgear WG311 Marvell 88w8335 Rev 03 Chipset Wireless Card

‮www‬.lautturi.com
Linux Install and Configure Netgear WG311 Marvell 88w8335 Rev 03 Chipset Wireless Card

To install and configure a Netgear WG311 wireless card with a Marvell 88w8335 Rev 03 chipset in Linux, you will need to follow these steps:

  1. Insert the wireless card into an available PCI slot on your motherboard.

  2. Install the necessary driver software. The Marvell 88w8335 chipset is supported by the mwl8k driver, which is included in the Linux kernel. Make sure that you have the latest version of the Linux kernel installed on your system.

  3. Configure the wireless card.

  • If you are using a distribution with NetworkManager, such as Ubuntu or Fedora, the wireless card should be automatically detected and configured. You can use the NetworkManager applet to connect to a wireless network.

  • If you are not using NetworkManager, you will need to manually configure the wireless card. Edit the configuration file for your wireless interface, which is usually located at /etc/network/interfaces. Add the following lines:

auto wlan0
iface wlan0 inet dhcp
    wpa-ssid <your_ssid>
    wpa-psk <your_wpa_key>

Replace <your_ssid> with the SSID of your wireless network, and <your_wpa_key> with the WPA key for your wireless network.

  1. Restart your networking service. On most distributions, you can do this by running the following command:
systemctl restart networking
  1. Test your wireless connection. You can use the iwconfig command to view the status of your wireless interface, and the ping command to test your connection to a remote host.
iwconfig
ping 8.8.8.8

If everything is configured correctly, you should see output indicating that your wireless card is connected to your wireless network, and the ping command should return successful replies from the remote host.

If you are having trouble getting the wireless card to work, you may want to try looking for additional drivers or consulting the documentation for your distribution. There are also many resources available online that can provide troubleshooting assistance and guidance for configuring wireless devices in Linux.

Created Time:2017-10-30 10:17:34  Author:lautturi