I am also quite new with linux, so no worries here.

Yes, my wireless card was working with the LiveCD.
I am currently using ndiswrapper to connect to the internet... And after trying out some stuff, it does not really matter whether the wired NIC is up or not.
I still do not know how to make it work right after starting up the computer however...
About Ndiswrapper:
There is an extensive Installation info at
http://ndiswrapper.sourceforge.net/joomla/index.php?/component/option,com_openwiki/Itemid,33/id,installation/, however all you need to know is the following:
- check whether you have installed ndiswrapper with
- Code: Select all
ndiswrapper -v
this should give you back the version of ndiswrapper installed. If none returns... well, then install it.
If you have one installed, then check whether there is a driver for your card installed, which is being used by ndiswrapper using
- Code: Select all
ndiswrapper -l
this lists the driver installed.
I suppose you do not have the right driver installed already... so:
Find your card and extract the corresponding drivers for your wireless card:
http://ndiswrapper.sourceforge.net/joomla/index.php?/component/option,com_openwiki/Itemid,33/id,list/Install the driver by using the following command
- Code: Select all
ndiswrapper -i USRMAXG.inf
where USRMAXG.inf is the driver info file for your card.
List whether the driver was installed correctly and the device is working with
- Code: Select all
ndiswrapper -l
Load ndiswrapper into the memory:
- Code: Select all
ndiswrapper -m
Now, by using the following commands you can figure out how your network connections are configured:
all:
- Code: Select all
ifconfig
wireless:
- Code: Select all
iwconfig
Try to put the wireless up with:
- Code: Select all
dhcpcd eth0
and test the result in your webbrowser... Are the webpages loading?