Linux installed!

open a terminal window and enter
lsusb
then paste the output here. It'll tell us about the wireless chipset in the device. If it's atheros you may be in luck. If it's broadcom you might be out of luck.
 
Bus 002 Device 002: ID 046d:c051 Logitech, Inc.
Bus 002 Device 001: ID 0000:0000
Bus 001 Device 004: ID 0bda:0111 Realtek Semiconductor Corp.
Bus 001 Device 003: ID 050d:705c Belkin Components
Bus 001 Device 001: ID 0000:0000
 
It has options


I think I entered the computers network info wrong on install. Is there a way to change this without reinstalling?
 
i am now editing this

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface

iface eth0 inet static
address 192.168.2.2
netmask 255.255.255.0
network 192.168.2.2
broadcast 179.168.2.255
gateway 192.168.2.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers (what do I enter here)

iface eth1 inet static
address 80.41.2*4.**
netmask 255.0.0.0
gateway 212.7*.111.1*2
wireless-key 1A43*ACA30238*4D24F*88B1
wireless-essid belkin54g

auto eth1

auto eth0


what do I enter for dns name servers. And does the rest look right?
 
For your DNS servers, you put in the gateway IP, so 192.168.2.1 in your case.

That is assuming you have a wireless router.

Btw, I'm pretty sure 'broadcast' should be 192.168.2.255, not 179.168.2.255

I'm confused here though...Do you have a network cable plugged in? eth0 looks like a wired interface to me :/

If eth1 is in fact your wireless interface, you should have the following:

iface eth1 inet static
address 192.168.2.2
netmask 255.255.255.0
gateway 192.168.2.1
dns-nameservers 192.168.2.1
wireless-key 1A43*ACA30238*4D24F*88B1
wireless-essid belkin54g

If necessary change the last number of 'address' to something higher, otherwise you might get conflicts with eth0 (your other network interface)
 
Last edited:
Back
Top Bottom