Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: cardbus D-Link DWL-G650 installeren  (gelezen 5362 keer)

cardbus D-Link DWL-G650 installeren
« Gepost op: 2011/12/13, 23:10:13 »
Dag iedereen,

Ik heb dit weekend mijn oudere computer die met Windows XP liep, omgezet naar Ubuntu 10.04.
Voor Wifi gebruikte ik de cardbus D-Link DLW-650 en die marcheerde.
Weet iemand of er een programma is voor het installeren van die cardbus op Ubuntu.
Ik heb reeds gezocht op het internet op een site Linux wireless LAN support; host I/F heb ik gevonden dat er een programma bestaat voor deze cardbus voor Ubuntu, ik heb het gedownload en het noemt madwifi-0.9.4, hoe instaleer ik het? Ik heb het uitgepakt en wat ik vond was een programma install.sh, aangeklikt en geopend in terminaal maar die gaat onmiddellijk toe. Wat moet ik doen om het programma te laten draaien in de terminaal.
Onderaan de weergave van install.sh
Bestaat er nog een andere oplossing om de cardbus te installeren op Ubuntu?

Dank U
Christiaan

#!/bin/sh
#
# Shell script to integrate madwifi sources into a Linux
# source tree so it can be built statically.  Typically this
# is done to simplify debugging with tools like kgdb.
#

set -e

die()
{
   echo "FATAL ERROR: $1" >&2
   exit 1
}

SRC=..
KERNEL_VERSION=`uname -r`

if test -n "$1"; then
   KERNEL_PATH="$1"
else if test -e /lib/modules/${KERNEL_VERSION}/source; then
   KERNEL_PATH="/lib/modules/${KERNEL_VERSION}/source"
else if test -e /lib/modules/${KERNEL_VERSION}/build; then
   KERNEL_PATH="/lib/modules/${KERNEL_VERSION}/build"
else
   die "Cannot guess kernel source location"
fi
fi
fi

test -d ${KERNEL_PATH} || die "No kernel directory ${KERNEL_PATH}"

PATCH()
{
   patch -N $1 < $2
}

#
# Location of various pieces.  These mimic what is in Makefile.inc
# and can be overridden from the environment.
#
SRC_HAL=${HAL:-${SRC}/hal}
test -d ${SRC_HAL} || die "No hal directory ${SRC_HAL}"
SRC_NET80211=${WLAN:-${SRC}/net80211}
test -d ${SRC_NET80211} || die "No net80211 directory ${SRC_NET80211}"
SRC_ATH=${ATH:-${SRC}/ath}
test -d ${SRC_ATH} || die "No ath directory ${SRC_ATH}"
SRC_ATH_RATE=${SRC}/ath_rate
test -d ${SRC_ATH_RATE} ||
   die "No rate control algorithm directory ${SRC_ATH_RATE}"
SRC_COMPAT=${SRC}/include
test -d ${SRC_COMPAT} || die "No compat directory ${SRC_COMPAT}"

WIRELESS=${KERNEL_PATH}/drivers/net/wireless
test -d ${WIRELESS} || die "No wireless directory ${WIRELESS}"

if test -f ${WIRELESS}/Kconfig; then
   kbuild=2.6
   kbuildconf=Kconfig
else if test -f ${WIRELESS}/Config.in; then
   kbuild=2.4
   kbuildconf=Config.in
else
   die "Kernel build system is not supported"
fi
fi

echo "Copying top-level files"
MADWIFI=${WIRELESS}/madwifi
rm -rf ${MADWIFI}
mkdir -p ${MADWIFI}
make -s -C ${SRC} svnversion.h
cp -f ${SRC}/BuildCaps.inc ${SRC}/svnversion.h ${SRC}/release.h ${MADWIFI}


echo "Copying source files"
FILES=`cd ${SRC} && find ath ath_hal ath_rate hal include net80211 -name '*.[ch]'`
for f in $FILES; do
   case $f in
      *.mod.c) continue;;
   esac
   mkdir -p `dirname ${MADWIFI}/$f`
   cp -f ${SRC}/$f ${MADWIFI}/$f
done

echo "Copying makefiles"
FILES=`cd ${SRC} && find . -name Makefile.kernel`
for f in $FILES; do
   cp -f ${SRC}/$f `dirname ${MADWIFI}/$f`/Makefile
done
cp -f ${SRC}/ath_hal/ah_target.inc ${MADWIFI}/ath_hal

echo "Copying Atheros HAL files"
DST_HAL=${MADWIFI}/hal
cp -f ${SRC_HAL}/public/*.hal.o.uu ${DST_HAL}/public


echo "Patching the build system"
cp -f $kbuild/Makefile ${MADWIFI}
if test "$kbuild" = 2.6; then
cp -f $kbuild/Kconfig ${MADWIFI}
sed -i '/madwifi/d;/^endmenu/i\
source "drivers/net/wireless/madwifi/Kconfig"' ${WIRELESS}/Kconfig
sed -i '$a\
obj-$(CONFIG_ATHEROS) += madwifi/
/madwifi/d;' ${WIRELESS}/Makefile
else
cp -f $kbuild/Config.in ${MADWIFI}
sed -i '$a\
source drivers/net/wireless/madwifi/Config.in
/madwifi/d' ${WIRELESS}/Config.in
sed -i '/madwifi/d;/include/i\
subdir-$(CONFIG_ATHEROS) += madwifi\
obj-$(CONFIG_ATHEROS) += madwifi/madwifi.o' ${WIRELESS}/Makefile
fi

DST_DOC=${KERNEL_PATH}/Documentation
if test -f $kbuild/Configure.help.patch; then
   grep -q 'CONFIG_ATHEROS' ${DST_DOC}/Configure.help || \
      PATCH ${DST_DOC}/Configure.help $kbuild/Configure.help.patch
fi
« Laatst bewerkt op: 2011/12/14, 23:34:32 door Prosper »

Re: cardbus D-Link DWL-G650 installeren
« Reactie #1 Gepost op: 2011/12/13, 23:37:43 »
Lees en voer eerst dit uit http://wiki.ubuntu-nl.org/ProblemenMetDraadlozeNetwerkkaartenOplossen
Er zitten standaard al heel veel drivers in de kernel, af en toe komt het voor dat de juiste driver er niet inzit, dan kan een andere methode nodig zijn. Lukt hret niet, schrijf dan maar weer. :)
In der Beschränkung zeigt sich der Meister.

Re: cardbus D-Link DWL-G650 installeren
« Reactie #2 Gepost op: 2011/12/14, 18:11:37 »
Dag Gijsbert,

Ik heb deze site geopend en alles geprobeerd.
Wel heb ik bemerkt dat er geen INF-bestanden zijn. Ik heb wel via Synaptic de gevraagde pakketten geïnstalleerd.

Christiaan

Re: cardbus D-Link DWL-G650 installeren
« Reactie #3 Gepost op: 2011/12/14, 19:37:34 »
INF bestanden zijn van Windows en kunnen met het programma ndiswrapper gebruikt worden, dit is een noodingreep., maar beter is om de Linux kernel driver te installeren.
Open een terminal(onder Hulpmiddelen) en type lspci -v | less en geef een ENTER, kan je hier de uitkomst plaatsen?
In der Beschränkung zeigt sich der Meister.

Re: cardbus D-Link DWL-G650 installeren
« Reactie #4 Gepost op: 2011/12/14, 22:55:14 »
Sorry voor de tekst, ik weet niet hoe dat komt, verscheidene keren geprobeerd.



00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express Proces
sor to DRAM Controller (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, fast devsel, latency 0
        Capabilities: <access denied>
        Kernel driver in use: agpgart-intel
        Kernel modules: intel-agp

00:02.0 VGA compatible controller: Intel Corporation Mobile 915GM/GMS/910GML Exp
ress Graphics Controller (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, fast devsel, latency 0, IRQ 16
        Memory at 64200000 (32-bit, non-prefetchable) [size=512K]
        I/O ports at 14a0 [size=8]
        Memory at d0000000 (32-bit, prefetchable) [size=256M]
        Memory at 64280000 (32-bit, non-prefetchable) [size=256K]
        Capabilities: <access denied>
        Kernel modules: i915

00:02.1 Display controller: Intel Corporation Mobile 915GM/GMS/910GML Express Gr
aphics Controller (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, fast devsel, latency 0
        Memory at fbd80000 (32-bit, non-prefetchable) [size=512K]
        Capabilities: <access denied>

00:1c.0 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 04)
        Flags: bus master, fast devsel, latency 0
        Bus: primary=00, secondary=01, subordinate=02, sec-latency=0
        I/O behind bridge: 0000d000-0000dfff
        Memory behind bridge: fbe00000-fbefffff
        Prefetchable memory behind bridge: 0000000064000000-00000000641fffff
        Capabilities: <access denied>
        Kernel driver in use: pcieport
        Kernel modules: shpchp

00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 0, IRQ 23
        I/O ports at 1440 [size=32]
        Kernel driver in use: uhci_hcd

00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 0, IRQ 19
        I/O ports at 1460 [size=32]
        Kernel driver in use: uhci_hcd

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 0, IRQ 18
        I/O ports at 1480 [size=32]
        Kernel driver in use: uhci_hcd

00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 04) (prog-if 20)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 0, IRQ 23
        Memory at 642c0000 (32-bit, non-prefetchable) [size=1K]
        Capabilities: <access denied>
        Kernel driver in use: ehci_hcd

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4) (prog-if 01)
        Flags: bus master, fast devsel, latency 0
        Bus: primary=00, secondary=03, subordinate=05, sec-latency=32
        I/O behind bridge: 0000e000-0000efff
        Memory behind bridge: fbf00000-fbffffff
        Prefetchable memory behind bridge: 0000000060000000-0000000063ffffff
        Capabilities: <access denied>

00:1e.2 Multimedia audio controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 0, IRQ 17
        I/O ports at 1000 [size=256]
        I/O ports at 1400 [size=64]
        Memory at 642c0400 (32-bit, non-prefetchable) [size=512]
        Memory at 642c0600 (32-bit, non-prefetchable) [size=256]
        Capabilities: <access denied>
        Kernel driver in use: Intel ICH
        Kernel modules: snd-intel8x0

00:1e.3 Modem: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Modem Controller (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0121
        Flags: medium devsel, IRQ 20
        I/O ports at c800 [size=256]
        I/O ports at cc00 [size=128]
        Capabilities: <access denied>
        Kernel modules: snd-intel8x0m

00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 0
        Kernel modules: iTCO_wdt, intel-rng

00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 04) (prog-if 8a [Master SecP PriP])
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 0, IRQ 18
        I/O ports at 01f0 [size=8]
        I/O ports at 03f4 [size=1]
        I/O ports at 0170 [size=8]
        I/O ports at 0374 [size=1]
        I/O ports at ffa0 [size=16]
        Kernel driver in use: ata_piix

00:1f.3 SMBus: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: medium devsel, IRQ 7
        I/O ports at c480 [size=32]
        Kernel modules: i2c-i801

03:03.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 64, IRQ 21
        I/O ports at e800 [size=256]
        Memory at fbfffc00 (32-bit, non-prefetchable) [size=256]
        Capabilities: <access denied>
        Kernel driver in use: 8139too
        Kernel modules: 8139too, 8139cp

03:05.0 CardBus bridge: O2 Micro, Inc. OZ711MP1/MS1 MemoryCardBus Controller (rev 21)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, stepping, slow devsel, latency 168, IRQ 19
        Memory at fbf00000 (32-bit, non-prefetchable) [size=4K]
        Bus: primary=03, secondary=04, subordinate=04, sec-latency=176
        Memory window 0: 60000000-63fff000 (prefetchable)
        Memory window 1: 68000000-6bfff000
        I/O window 0: 0000e000-0000e0ff
        I/O window 1: 0000e400-0000e4ff
        16-bit legacy interface ports at 0001
        Kernel driver in use: yenta_cardbus
        Kernel modules: yenta_socket

03:05.2 SD Host controller: O2 Micro, Inc. Integrated MMC/SD Controller (rev 01)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: slow devsel, IRQ 19
        Memory at fbfff800 (32-bit, non-prefetchable) [size=256]
        Capabilities: <access denied>
        Kernel driver in use: sdhci-pci
        Kernel modules: sdhci-pci

03:05.3 Bridge: O2 Micro, Inc. Integrated MS/xD Controller (rev 01)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: slow devsel, IRQ 5
        Memory at fbffe000 (32-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>

03:05.4 FireWire (IEEE 1394): O2 Micro, Inc. Firewire (IEEE 1394) (rev 02) (prog-if 10)
        Subsystem: O2 Micro, Inc. Firewire (IEEE 1394)
        Flags: bus master, medium devsel, latency 64, IRQ 19
        Memory at fbffd000 (32-bit, non-prefetchable) [size=4K]
        Memory at fbfff000 (32-bit, non-prefetchable) [size=2K]
        Capabilities: <access denied>
        Kernel driver in use: ohci1394
        Kernel modules: firewire-ohci, ohci1394

03:09.0 Network controller: RaLink RT2561/RT61 rev B 802.11g
        Subsystem: Micro-Star International Co., Ltd. Device b833
        Flags: bus master, slow devsel, latency 64, IRQ 17
        Memory at fbff0000 (32-bit, non-prefetchable) [size=32K]
        Capabilities: <access denied>
        Kernel driver in use: rt61pci
        Kernel modules: rt61pci

04:00.0 Ethernet controller: Atheros Communications Inc. Atheros AR5001X+ Wireless Network Adapter (rev 01)
        Subsystem: D-Link System Inc Device 3a12
        Flags: bus master, medium devsel, latency 168, IRQ 19
        Memory at 68000000 (32-bit, non-prefetchable) [size=64K]
        Capabilities: <access denied>
        Kernel driver in use: ath5k
        Kernel modules: ath5k

moderator-edit: even tussen codetags gezet...
« Laatst bewerkt op: 2011/12/14, 23:31:03 door Prosper »

Re: cardbus D-Link DWL-G650 installeren
« Reactie #5 Gepost op: 2011/12/14, 23:32:30 »
Foutje met de weergave van je tekst zat 'm hier:

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 04)
        Subsystem: Micro-Star International Co., Ltd. Device 0161
        Flags: bus master, medium devsel, latency 0, IRQ 18
        I/O ports at 1480 [size=32]
        Kernel driver in use: uhci_hcd
Omwille van de besparingen hebben ze het licht aan het eind van de tunnel ook uitgedaan...

Re: cardbus D-Link DWL-G650 installeren
« Reactie #6 Gepost op: 2011/12/15, 11:32:53 »
Dank U Prosper

Re: cardbus D-Link DWL-G650 installeren
« Reactie #7 Gepost op: 2011/12/15, 22:29:05 »
Zover ik het kan zien heb je twee wifi in je computer zitten:

03:09.0 Network controller: RaLink RT2561/RT61 rev B 802.11g
        Subsystem: Micro-Star International Co., Ltd. Device b833
        Flags: bus master, slow devsel, latency 64, IRQ 17
        Memory at fbff0000 (32-bit, non-prefetchable) [size=32K]
        Capabilities: <access denied>
        Kernel driver in use: rt61pci
        Kernel modules: rt61pci

En deze:
04:00.0 Ethernet controller: Atheros Communications Inc. Atheros AR5001X+ Wireless Network Adapter (rev 01)
        Subsystem: D-Link System Inc Device 3a12
        Flags: bus master, medium devsel, latency 168, IRQ 19
        Memory at 68000000 (32-bit, non-prefetchable) [size=64K]
        Capabilities: <access denied>
        Kernel driver in use: ath5k
        Kernel modules: ath5k

Er moet nog Firmware geïnstalleerd worden, zie:
https://help.ubuntu.com/community/WifiDocs/Device/DWL-G650+
In der Beschränkung zeigt sich der Meister.

Re: cardbus D-Link DWL-G650 installeren
« Reactie #8 Gepost op: 2011/12/16, 00:53:24 »
Ik heb acx gedownload hoe installeer ik de Firmware?

Re: cardbus D-Link DWL-G650 installeren
« Reactie #9 Gepost op: 2011/12/16, 01:05:09 »
Ik heb acx gedownload hoe installeer ik de Firmware?
Plaatsen in /lib/firmware/.

gksu nautilus

Ga dan naar Bestandssysteem -> /lib/firmware en plaats daar het bestand.

Re: cardbus D-Link DWL-G650 installeren
« Reactie #10 Gepost op: 2011/12/16, 11:33:28 »
Dag Cumulus007,

Ik heb dit gedaan en ik krijg deze melding in terminal, is het het juiste niet, heb acx-20080210 in Firmware gezet.

chris@chris-laptop2:~$ gksu nautilus
Initializing nautilus-gdu extension
** Message: Error: Kan de soort van de stroom niet herkennen.
gsttypefindelement.c(979): gst_type_find_element_activate (): /GstPlayBin2:play/GstURIDecodeBin:uridecodebin0/GstDecodeBin2:decodebin20/GstTypeFindElement:typefind

totem-video-thumbnailer couldn't open file 'file:///lib/firmware/v4l-cx2341x-init.mpg'
Reason: Kan de soort van de stroom niet herkennen..

** (nautilus:1450): WARNING **: Could not inhibit power management: The name org.gnome.SessionManager was not provided by any .service files


Re: cardbus D-Link DWL-G650 installeren
« Reactie #11 Gepost op: 2011/12/16, 19:33:33 »
rare firmware met een .mpg-extensie...
Omwille van de besparingen hebben ze het licht aan het eind van de tunnel ook uitgedaan...

Re: cardbus D-Link DWL-G650 installeren
« Reactie #12 Gepost op: 2011/12/16, 20:08:05 »
Als je op het rode woord, original driver, klikt wordt dit bestand DWL-G650+_rev_Bx_Drv_v202.zip gedownload. Pak dit uit door met de rechtermuisknop hier op te klikken>Hier uitpakken kiezen uit het menu, vervolgens open je de map met dezelfde naam, en je gaat verder met wat in de link staat.  sudo cp FwRad16.bin /lib/hotplug/firmware/TIACX111.BIN-`uname -r` vergeet de enkele aanhalingstekens niet. :)
« Laatst bewerkt op: 2011/12/16, 20:18:42 door Gijsbert »
In der Beschränkung zeigt sich der Meister.

Re: cardbus D-Link DWL-G650 installeren
« Reactie #13 Gepost op: 2011/12/17, 01:43:12 »
heb dit gedaan, gisteren ook nu krijg ik het volgende in de terminal:

chris@chris-laptop2:~$ sudo cp FwRad16.bin /lib/hotplug/firmware/TIACX111.BIN-`uname -r`
cp: kan status van ‘FwRad16.bin’ niet opvragen: Bestand of map bestaat niet
chris@chris-laptop2:~$

In WinXP staat dit pakketje FWRad16.bin die nu in chris/Download staat.
Waar moet dit gezet worden en hoe? Wat is TIACX111.BIN-?

Christiaan
« Laatst bewerkt op: 2011/12/17, 01:46:02 door chris_brugge »

Re: cardbus D-Link DWL-G650 installeren
« Reactie #14 Gepost op: 2011/12/17, 08:41:00 »
Je moet eerst naar de map gaan waar dit staat, en pas dan het commando doorvoeren.
Doe dus eerst
cd DownloadDaarna zal dat kopieerbevel wel werken.
Omwille van de besparingen hebben ze het licht aan het eind van de tunnel ook uitgedaan...

Re: cardbus D-Link DWL-G650 installeren
« Reactie #15 Gepost op: 2011/12/17, 13:07:06 »
Ik heb dit gedaan:

chris@chris-laptop2:~$ cd Downloads
chris@chris-laptop2:~/Downloads$ sudo cp FwRad16.bin /lib/firmware/TIACX111.BIN-`uname -r`
[sudo] password for chris:
chris@chris-laptop2:~/Downloads$

In Bestandssysteem/lib/firmware zie ik nu het bestand TIACX111.BIN-2.6.32-36-generic staan. Waar staat dan de  FwRad16.bin? Ik zie hem nergens.

Ik moet nog een bewerking doen namelijk.
After this, remove the driver (rmmod acx_pci), and hotplug should reload it automatically.
Waar vind ik de driver rmmod acx_pci en wat is hotplug should reload ?

Christiaan

Re: cardbus D-Link DWL-G650 installeren
« Reactie #16 Gepost op: 2011/12/17, 14:04:26 »
Tijdens het kopiëren heeft dat commando het bestand ook een andere naam gegeven. Je vindt het oorspronkelijke bestand nog altijd in je Download-map.
Voor de laatste bewerking zal je moeten doensudo rmmod acx_pci en daarbij maakt het niet uit in welke map je bent.
"Hotplug" wil gewoon zeggen dat je het apparaat in kwestie verbindt met je PC terwijl die reeds in werking is. Niet nodig te herstarten dus.
Omwille van de besparingen hebben ze het licht aan het eind van de tunnel ook uitgedaan...

Re: cardbus D-Link DWL-G650 installeren
« Reactie #17 Gepost op: 2011/12/17, 18:50:08 »
Jammer, cardbus werkt niet.
Er was geen axi_pci geinstaleerd.

chris@chris-laptop2:~$ sudo rmmod acx_pci
ERROR: Module acx_pci does not exist in /proc/modules
chris@chris-laptop2:~$

Re: cardbus D-Link DWL-G650 installeren
« Reactie #18 Gepost op: 2011/12/17, 19:07:17 »
Als ik het zo her en der lees, is ndiswrapper het simpelst te gebruiken in 11.10  Met ndiswrapper kan je een .inf bestand(staat op meestal op een  cd van de fabrikant.)  van Windows gebruiken.
Zie http://wiki.ubuntu-nl.org/ProblemenMetDraadlozeNetwerkkaartenOplossen#Gebruikmaken_van_Windows-stuurprogramma.27s
In der Beschränkung zeigt sich der Meister.

Re: GEDEELTELIJK OPGELOST cardbus D-Link DWL-G650 installeren
« Reactie #19 Gepost op: 2012/01/19, 14:30:40 »
Dag iedereen,

Eergisteren heb ik een schone Ubuntu 10.04 geherinstalleerd en heb als laatste oplossing ndiswrapper-common,ndiswrapper-utils-1.9 en ndisgtk geïnstalleerd. (gebruikmaken van Windows-stuurprogramma's)
Bij de eerste keer openen van de computer werkt mijn cardbus en heb ik Wifi, wanneer ik mijn computer afsluit is het gedaan en werkt mijn cardbus niet meer.
's Anderendaags bij de eerste keer weer wel enz.
Kan dit probleem opgelost worden?

Groetjes Chris

Re: cardbus D-Link DWL-G650 installeren
« Reactie #20 Gepost op: 2012/01/19, 18:47:59 »
Dag Cristiaan, even controleren of de driver wordt geladen bij het opstarten:

1e manier: open een terminal en type lsmod en geef een ENTER
2e manier: open een terminal en type sudo less /var/log/kern.log en geef een ENTER, nu je wachtwoord intypen, hier zie je niets van, gewoon blind typen en geef een ENTER.
Kan je beide uitkomsten hier plaatsen? Ik neem aan dat je de aanwezigheid van de kaar ook gecontroleerd met lspci -vv ?
In der Beschränkung zeigt sich der Meister.

Re: cardbus D-Link DWL-G650 installeren
« Reactie #21 Gepost op: 2012/01/19, 23:22:18 »
Dag Gijsbert,

Nu werkt de cardbus, eerste maal vandaag,
lspci -vv =
 04:00.0 Ethernet controller: Atheros Communications Inc. Atheros AR5001X+ Wireless Network Adapter (rev 01)
Subsystem: D-Link System Inc Device 3a12
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 168 (2500ns min, 7000ns max), Cache Line Size: 32 bytes
Interrupt: pin A routed to IRQ 19
Region 0: Memory at 68000000 (32-bit, non-prefetchable) [size=64K]
Capabilities: <access denied>
Kernel driver in use: ath5k
Kernel modules: ath5k
 
lsmod =
 Module                  Size  Used by
binfmt_misc             6587  1
ppdev                   5259  0
ipt_REJECT              1928  1
ipt_LOG                 4542  5
xt_limit                1382  7
xt_tcpudp               2011  7
ipt_addrtype            1599  4
xt_state                1098  7
ip6table_filter         1248  1
fbcon                  35102  71
tileblit                1999  1 fbcon
font                    7557  1 fbcon
ip6_tables             11102  1 ip6table_filter
bitblit                 4707  1 fbcon
softcursor              1189  1 bitblit
vga16fb                11385  0
vgastate                8961  1 vga16fb
arc4                    1153  2
nf_nat_irc              1124  0
nf_conntrack_irc        3332  1 nf_nat_irc
nf_nat_ftp              1836  0
nf_nat                 15560  2 nf_nat_irc,nf_nat_ftp
ath5k                 121632  0
nf_conntrack_ipv4      10346  9 nf_nat
nf_defrag_ipv4          1073  1 nf_conntrack_ipv4
mac80211              205402  1 ath5k
ath                     7611  1 ath5k
nf_conntrack_ftp        5381  1 nf_nat_ftp
cfg80211              126144  3 ath5k,mac80211,ath
nf_conntrack           60943  7 xt_state,nf_nat_irc,nf_conntrack_irc,nf_nat_ftp,nf_nat,nf_conntrack_ipv4,nf_conntrack_ftp
iptable_filter          1369  1
joydev                  8740  0
ip_tables               9899  1 iptable_filter
snd_intel8x0           25652  2
snd_ac97_codec        100646  1 snd_intel8x0
ac97_bus                1002  1 snd_ac97_codec
snd_pcm_oss            35308  0
snd_mixer_oss          13746  1 snd_pcm_oss
snd_pcm                70694  3 snd_intel8x0,snd_ac97_codec,snd_pcm_oss
snd_seq_dummy           1338  0
x_tables               14175  8 ipt_REJECT,ipt_LOG,xt_limit,xt_tcpudp,ipt_addrtype,xt_state,ip6_tables,ip_tables
snd_seq_oss            26722  0
snd_seq_midi            4557  0
pcmcia                 30784  0
snd_rawmidi            19056  1 snd_seq_midi
snd_seq_midi_event      6003  2 snd_seq_oss,snd_seq_midi
snd_seq                47263  6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
snd_timer              19130  2 snd_pcm,snd_seq
snd_seq_device          5700  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
i915                  289715  2
snd                    54244  14 snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
drm_kms_helper         29329  1 i915
yenta_socket           20408  2
rsrc_nonstatic         10015  1 yenta_socket
sdhci_pci               5470  0
sdhci                  15494  1 sdhci_pci
drm                   163747  3 i915,drm_kms_helper
ndiswrapper           184677  0
soundcore               6620  1 snd
pcmcia_core            32964  3 pcmcia,yenta_socket,rsrc_nonstatic
led_class               2864  2 ath5k,sdhci
psmouse                63677  0
serio_raw               3978  0
intel_agp              24375  2 i915
agpgart                31724  2 drm,intel_agp
i2c_algo_bit            5028  1 i915
snd_page_alloc          7076  2 snd_intel8x0,snd_pcm
video                  17375  1 i915
output                  1871  1 video
lp                      7028  0
parport                32635  2 ppdev,lp
8139too                18545  0
ohci1394               26950  0
8139cp                 16186  0
mii                     4381  2 8139too,8139cp
ieee1394               81181  1 ohci1394
chris@chris-laptop:~$ 

sudo less /var/log/kern.log =
 
Jan 16 13:18:17 chris-laptop kernel: [ 1417.709677] udev: starting version 151
Jan 16 13:19:08 chris-laptop kernel: [ 1468.571805] udev: starting version 151
Jan 16 13:19:31 chris-laptop kernel: [ 1491.454540] ieee1394: raw1394: /dev/raw1394 device initialized
Jan 16 13:20:21 chris-laptop kernel: [ 1541.548583] ohci1394: fw-host0: SelfID received, but NodeID invalid (probably new bus reset occurred): 0000FFC0
Jan 16 13:20:21 chris-laptop kernel: [ 1541.568268] ohci1394: fw-host0: SelfID received, but NodeID invalid (probably new bus reset occurred): 0000FFC0
Jan 16 13:20:21 chris-laptop kernel: [ 1541.573198] ohci1394: fw-host0: SelfID received, but NodeID invalid (probably new bus reset occurred): 0000FFC0
Jan 16 13:20:21 chris-laptop kernel: [ 1541.575373] ohci1394: fw-host0: Error in reception of SelfID packets [0x0024000c/0x00238121] (count: 0)
Jan 16 13:20:21 chris-laptop kernel: [ 1541.578254] ohci1394: fw-host0: SelfID received, but NodeID invalid (probably new bus reset occurred): 0000FFC0
Jan 16 13:20:21 chris-laptop kernel: [ 1541.852032] ieee1394: Current remote IRM is not 1394a-2000 compliant, resetting...
Jan 16 13:21:53 chris-laptop kernel: [ 1633.526189] ieee1394: Node added: ID:BUS[0-01:1023]  GUID[0800460103d2c155]
Jan 16 13:25:32 chris-laptop kernel: Kernel logging (proc) stopped.
Jan 16 23:07:53 chris-laptop kernel: imklog 4.2.0, log source = /proc/kmsg started.
Jan 16 23:07:53 chris-laptop kernel: [    0.000000] Initializing cgroup subsys cpuset
/var/log/kern.log

Groetjes Christiaan
« Laatst bewerkt op: 2012/01/20, 18:21:08 door Prosper »