Dell 1390 native linux driver how-to
Edit: The things described in this how to are still working, but you’ll have some problems. Use this one instead.
Dell 1390 is a wireless network card used in some Dell notebooks. It is using the Broadcom 4311 chipset. Until a few days ago, everybody was using ndiswrapper and the Windows drivers to get it working under Linux. The bcm43xx driver is supporting it starting from the 2.6.20 kernel release, but it was quite buggy: random disconnects and very slow speed (actually, the best speed I got was something like 90 KB/s). Release candidate versions of the 2.6.21 kernel seem to resolve all this issues. This a guide to help you compile the latest kernel version (don’t worry, you don’t need to configure it) and use the native linux driver for you Dell 1390 wireless card. Why should you use it? Well, WPA works OK now (I couldn’t get it working with ndiswrapper), scanning and configuration are a little bit faster, the signal power seems to be improved (but I may be wrong) and it supports monitoring mode (wep cracking and stuff). Now, the actual how-to.
First, because most of the commands we’ll be running require root access, we are becoming root (sudo kind of sucks when you have to use it on every line):
sudo su
Now, you should update your package list and upgrade your system and install the packages required to compile the kernel.
apt-get update
apt-get dist-upgrade
apt-get install kernel-package libncurses5-dev fakeroot wget bzip2
Next, we download the kernel source.
cd /usr/src
wget ftp://kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.21-rc7.tar.bz2
We extract and symlink it…
tar xjf ./linux-2.6.21-rc7.tar.bz2
ln -s ./linux-2.6.21-rc7 ./linux
Import the current kernel configuration (there may be some warnings displayed, not to worry).
cd linux
cp /boot/config-`uname -r` ./.config
make menuconfig
We import the configuration file with the “Load an Alternate Configuration File” option and choosing “.config”. Then we make sure MSI is disabled (we don’t want to use the pci=nomsi option, isn’t it?) by going to the Bus Options (PCI… ) menu and if necessary disabling Message Signaled Interrupts. Exit and save the configuration. Now we compile the kernel the Ubuntu way.
make-kpkg clean
fakeroot make-kpkg –initrd –append-to-version=-inspiron1501 kernel_image kernel_headers
Now get a cup of coffee or something like that because it takes some time. Next, we install the newly created packages.
cd ../
dpkg -i linux-headers-2.6.21-rc7-inspiron1501_2.6.21-rc7-inspiron1501-10.00.Custom_i386.deb
dpkg -i linux-image-2.6.21-rc7-inspiron1501_2.6.21-rc7-inspiron1501-10.00.Custom_i386.deb
We install the firmware files.
wget http://ubuntu.cafuego.net/pool/feisty-cafuego/bcm43xx/bcm43xx-firmware_1.3-1ubuntu2_all.deb
dpkg -i ./bcm43xx-firmware_1.3-1ubuntu2_all.deb
rm ./bcm43xx-firmware_1.3-1ubuntu2_all.deb
Then we restart the notebook and if we don’t know how to configure our wireless network we search for a tutorial.
Now everything should work ok. If it is not, you should try modprobe bcm43xx and then iwlist scan. If you still have problems, post a comment containing the output of dmesg.
17 Apr 2007 Cosmin


Found this most helpful, thanks!
ron@Pagasus:~$ dmesg
[ 0.000000] Linux version 2.6.20-15-generic (root@yellow) (gcc version 4.1.2 (Ubuntu 4.1.2-0ubuntu4)) #2 SMP Sun Apr 15 06:17:24 UTC 2007 (Ubuntu 2.6.20-15.27-generic)
[ 0.000000] Command line: root=UUID=7683394a-564e-4cae-9167-8b0214d4b046 ro quiet splash
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[ 0.000000] BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000ce000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 0000000077e70000 (usable)
[ 0.000000] BIOS-e820: 0000000077e70000 - 0000000077e81000 (ACPI data)
[ 0.000000] BIOS-e820: 0000000077e81000 - 0000000077f00000 (ACPI NVS)
[ 0.000000] BIOS-e820: 0000000077f00000 - 0000000080000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
[ 0.000000] Entering add_active_range(0, 0, 157) 0 entries of 3200 used
[ 0.000000] Entering add_active_range(0, 256, 491120) 1 entries of 3200 used
[ 0.000000] end_pfn_map = 1048576
[ 0.000000] DMI present.
[ 0.000000] ACPI: RSDP (v000 PTLTD ) @ 0×00000000000f8750
[ 0.000000] ACPI: RSDT (v001 DELL M08 0×06040000 LTP 0×00000000) @ 0×0000000077e7a5d0
[ 0.000000] ACPI: FADT (v001 ATI Bowfin 0×06040000 ATI 0×000f4240) @ 0×0000000077e80c15
[ 0.000000] ACPI: TCPA (v002 AMD 0×06040000 PTEC 0×00000000) @ 0×0000000077e80c89
[ 0.000000] ACPI: SSDT (v001 PTLTD POWERNOW 0×06040000 LTP 0×00000001) @ 0×0000000077e80cbb
[ 0.000000] ACPI: MADT (v001 PTLTD APIC 0×06040000 LTP 0×00000000) @ 0×0000000077e80dd0
[ 0.000000] ACPI: MCFG (v001 PTLTD MCFG 0×06040000 LTP 0×00000000) @ 0×0000000077e80e16
[ 0.000000] ACPI: HPET (v001 PTLTD HPETTBL 0×06040000 LTP 0×00000001) @ 0×0000000077e80e52
[ 0.000000] ACPI: SLIC (v001 DELL M08 0×06040000 LTP 0×00000000) @ 0×0000000077e80e8a
[ 0.000000] ACPI: DSDT (v001 ATI SB600 0×06040000 MSFT 0×03000000) @ 0×0000000000000000
[ 0.000000] Scanning NUMA topology in Northbridge 24
[ 0.000000] Number of nodes 1
[ 0.000000] Node 0 MemBase 0000000000000000 Limit 0000000077e70000
[ 0.000000] Entering add_active_range(0, 0, 157) 0 entries of 3200 used
[ 0.000000] Entering add_active_range(0, 256, 491120) 1 entries of 3200 used
[ 0.000000] NUMA: Using 63 for the hash shift.
[ 0.000000] Using node hash shift of 63
[ 0.000000] Bootmem setup node 0 0000000000000000-0000000077e70000
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 157
[ 0.000000] 0: 256 -> 491120
[ 0.000000] On node 0 totalpages: 491021
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 1087 pages reserved
[ 0.000000] DMA zone: 2854 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 6658 pages used for memmap
[ 0.000000] DMA32 zone: 480366 pages, LIFO batch:31
[ 0.000000] Normal zone: 0 pages used for memmap
[ 0.000000] ATI board detected. Disabling timer routing over 8254.
[ 0.000000] ACPI: PM-Timer IO Port: 0×8008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] Processor #0 (Bootup-CPU)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Setting APIC routing to physical flat
[ 0.000000] ACPI: HPET id: 0×43538301 base: 0xfed00000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] Nosave address range: 000000000009d000 - 000000000009e000
[ 0.000000] Nosave address range: 000000000009e000 - 00000000000a0000
[ 0.000000] Nosave address range: 00000000000a0000 - 00000000000ce000
[ 0.000000] Nosave address range: 00000000000ce000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 88000000 (gap: 80000000:60000000)
[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] PERCPU: Allocating 34048 bytes of per cpu data
[ 0.000000] Built 1 zonelists. Total pages: 483220
[ 0.000000] Kernel command line: root=UUID=7683394a-564e-4cae-9167-8b0214d4b046 ro quiet splash
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[ 17.040006] Console: colour VGA+ 80×25
[ 17.040938] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 17.042364] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 17.042850] Checking aperture…
[ 17.042855] CPU 0: aperture @ 8956000000 size 32 MB
[ 17.042857] Aperture too small (32 MB)
[ 17.053379] No AGP bridge found
[ 17.069549] Memory: 1922348k/1964480k available (2217k kernel code, 41736k reserved, 1162k data, 304k init)
[ 17.148960] Calibrating delay using timer specific routine.. 3995.24 BogoMIPS (lpj=7990482)
[ 17.149017] Security Framework v1.0.0 initialized
[ 17.149022] SELinux: Disabled at boot.
[ 17.149047] Mount-cache hash table entries: 256
[ 17.149188] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[ 17.149191] CPU: L2 Cache: 512K (64 bytes/line)
[ 17.149194] CPU 0/0 -> Node 0
[ 17.149214] SMP alternatives: switching to UP code
[ 17.149372] Freeing SMP alternatives: 24k freed
[ 17.149484] Early unpacking initramfs… done
[ 17.475031] ACPI: Core revision 20060707
[ 17.478164] ACPI: Looking for DSDT in initramfs… file /DSDT.aml not found, using machine DSDT.
[ 18.554503] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[ 18.594581] Using local APIC timer interrupts.
[ 18.644681] result 12468728
[ 18.644683] Detected 12.468 MHz APIC timer.
[ 18.648167] Brought up 1 CPUs
[ 18.648208] time.c: Using 14.318180 MHz WALL HPET GTOD HPET/TSC timer.
[ 18.648211] time.c: Detected 1994.994 MHz processor.
[ 18.648506] Time: 4:05:48 Date: 04/26/107
[ 18.648540] NET: Registered protocol family 16
[ 18.648616] ACPI: bus type pci registered
[ 18.648623] PCI: Using configuration type 1
[ 18.654413] ACPI: Interpreter enabled
[ 18.654417] ACPI: Using IOAPIC for interrupt routing
[ 18.654860] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 18.654865] PCI: Probing PCI hardware (bus 00)
[ 18.656635] Boot video device is 0000:01:05.0
[ 18.657160] PCI: Transparent bridge - 0000:00:14.4
[ 18.657201] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 18.660445] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[ 18.660694] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB6_._PRT]
[ 18.662317] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0, disabled.
[ 18.662549] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0, disabled.
[ 18.662780] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0, disabled.
[ 18.663010] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0, disabled.
[ 18.663241] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0, disabled.
[ 18.663470] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0, disabled.
[ 18.663700] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0, disabled.
[ 18.663932] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0, disabled.
[ 18.664201] ACPI: PCI Interrupt Link [LNKU] (IRQs 3 4 5 7) *0, disabled.
[ 18.670042] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[ 18.670266] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[ 18.673269] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 18.673282] pnp: PnP ACPI init
[ 18.676724] pnp: PnP ACPI: found 11 devices
[ 18.676776] PCI: Using ACPI for IRQ routing
[ 18.676779] PCI: If a device doesn’t work, try “pci=routeirq”. If it helps, post a report
[ 18.676787] PCI: Cannot allocate resource region 7 of bridge 0000:00:05.0
[ 18.676789] PCI: Cannot allocate resource region 8 of bridge 0000:00:05.0
[ 18.676815] PCI: Cannot allocate resource region 1 of device 0000:00:14.0
[ 18.676891] NET: Registered protocol family 8
[ 18.676893] NET: Registered protocol family 20
[ 18.676913] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 18.676917] hpet0: 4 32-bit timers, 14318180 Hz
[ 18.678198] pnp: 00:08: ioport range 0×1080-0×1080 has been reserved
[ 18.678201] pnp: 00:08: ioport range 0×220-0×22f has been reserved
[ 18.678468] PCI: Bridge: 0000:00:01.0
[ 18.678471] IO window: 9000-9fff
[ 18.678473] MEM window: c0100000-c01fffff
[ 18.678476] PREFETCH window: c8000000-cfffffff
[ 18.678479] PCI: Bridge: 0000:00:05.0
[ 18.678480] IO window: disabled.
[ 18.678482] MEM window: disabled.
[ 18.678484] PREFETCH window: disabled.
[ 18.678487] PCI: Bridge: 0000:00:06.0
[ 18.678488] IO window: disabled.
[ 18.678491] MEM window: c0200000-c02fffff
[ 18.678493] PREFETCH window: disabled.
[ 18.678496] PCI: Bridge: 0000:00:14.4
[ 18.678497] IO window: disabled.
[ 18.678503] MEM window: c0300000-c03fffff
[ 18.678507] PREFETCH window: disabled.
[ 18.678524] PCI: Setting latency timer of device 0000:00:05.0 to 64
[ 18.678530] PCI: Setting latency timer of device 0000:00:06.0 to 64
[ 18.678608] NET: Registered protocol family 2
[ 18.712165] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 18.712512] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[ 18.714494] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 18.714979] TCP: Hash tables configured (established 262144 bind 65536)
[ 18.714983] TCP reno registered
[ 18.724221] checking if image is initramfs… it is
[ 19.332630] Freeing initrd memory: 7310k freed
[ 19.336823] audit: initializing netlink socket (disabled)
[ 19.336836] audit(1180152347.184:1): initialized
[ 19.336965] VFS: Disk quotas dquot_6.5.1
[ 19.336981] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 19.337028] io scheduler noop registered
[ 19.337030] io scheduler anticipatory registered
[ 19.337032] io scheduler deadline registered
[ 19.337044] io scheduler cfq registered (default)
[ 19.337281] PCI: Setting latency timer of device 0000:00:05.0 to 64
[ 19.337300] assign_interrupt_mode Found MSI capability
[ 19.337305] Allocate Port Service[0000:00:05.0:pcie00]
[ 19.337333] Allocate Port Service[0000:00:05.0:pcie02]
[ 19.337391] PCI: Setting latency timer of device 0000:00:06.0 to 64
[ 19.337409] assign_interrupt_mode Found MSI capability
[ 19.337411] Allocate Port Service[0000:00:06.0:pcie00]
[ 19.337439] Allocate Port Service[0000:00:06.0:pcie02]
[ 19.359077] Real Time Clock Driver v1.12ac
[ 19.359234] hpet_acpi_add: no address or irqs in _CRS
[ 19.359239] Linux agpgart interface v0.102 (c) Dave Jones
[ 19.359241] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
[ 19.359856] mice: PS/2 mouse device common for all mice
[ 19.360331] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
[ 19.360510] input: Macintosh mouse button emulation as /class/input/input0
[ 19.360540] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
[ 19.360545] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
[ 19.360811] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0×60,0×64 irq 1,12
[ 19.364886] serio: i8042 KBD port at 0×60,0×64 irq 1
[ 19.364893] serio: i8042 AUX port at 0×60,0×64 irq 12
[ 19.364979] TCP cubic registered
[ 19.364986] NET: Registered protocol family 1
[ 19.365130] ACPI: (supports S0 S3 S4 S5)
[ 19.365170] Magic number: 7:880:60
[ 19.365294] drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[ 19.365368] Freeing unused kernel memory: 304k freed
[ 19.396556] input: AT Translated Set 2 keyboard as /class/input/input1
[ 20.556752] Capability LSM initialized
[ 20.651041] Losing some ticks… checking if CPU frequency changed.
[ 20.875715] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 20.875722] ACPI: Processor [CPU0] (supports 8 throttling states)
[ 20.875729] ACPI Exception (acpi_processor-0677): AE_NOT_FOUND, Processor Device is not present [20060707]
[ 21.136686] ACPI: Thermal Zone [THRM] (47 C)
[ 21.656564] SCSI subsystem initialized
[ 21.661705] libata version 2.20 loaded.
[ 21.663128] ahci 0000:00:12.0: version 2.1
[ 21.663151] ACPI: PCI Interrupt 0000:00:12.0[A] -> GSI 22 (level, low) -> IRQ 22
[ 21.673251] usbcore: registered new interface driver usbfs
[ 21.673274] usbcore: registered new interface driver hub
[ 21.673298] usbcore: registered new device driver usb
[ 21.674027] ohci_hcd: 2006 August 04 USB 1.1 ‘Open’ Host Controller (OHCI) Driver
[ 22.378156] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
[ 22.378161] ahci 0000:00:12.0: flags: 64bit ncq ilck pm led clo pmp pio slum part
[ 22.378273] ata1: SATA max UDMA/133 cmd 0xffffc20000024100 ctl 0×0000000000000000 bmdma 0×0000000000000000 irq 22
[ 22.378350] ata2: SATA max UDMA/133 cmd 0xffffc20000024180 ctl 0×0000000000000000 bmdma 0×0000000000000000 irq 22
[ 22.378430] ata3: SATA max UDMA/133 cmd 0xffffc20000024200 ctl 0×0000000000000000 bmdma 0×0000000000000000 irq 22
[ 22.378512] ata4: SATA max UDMA/133 cmd 0xffffc20000024280 ctl 0×0000000000000000 bmdma 0×0000000000000000 irq 22
[ 22.378524] scsi0 : ahci
[ 22.713942] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 22.716228] ata1.00: ata_hpa_resize 1: sectors = 156301488, hpa_sectors = 156301488
[ 22.716233] ata1.00: ATA-7: ST98823AS, 8.04, max UDMA/133
[ 22.716236] ata1.00: 156301488 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 22.717079] ata1.00: ata_hpa_resize 1: sectors = 156301488, hpa_sectors = 156301488
[ 22.717082] ata1.00: configured for UDMA/133
[ 22.717092] scsi1 : ahci
[ 22.933802] ata2: SATA link down (SStatus 0 SControl 300)
[ 22.933819] scsi2 : ahci
[ 23.165686] ata3: SATA link down (SStatus 0 SControl 300)
[ 23.165703] scsi3 : ahci
[ 23.397559] ata4: SATA link down (SStatus 0 SControl 300)
[ 23.397661] scsi 0:0:0:0: Direct-Access ATA ST98823AS 8.04 PQ: 0 ANSI: 5
[ 23.399306] ACPI: PCI Interrupt 0000:00:13.0[A] -> GSI 16 (level, low) -> IRQ 16
[ 23.399323] ohci_hcd 0000:00:13.0: OHCI Host Controller
[ 23.399574] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 1
[ 23.399596] ohci_hcd 0000:00:13.0: irq 16, io mem 0xc0005000
[ 23.407793] SCSI device sda: 156301488 512-byte hdwr sectors (80026 MB)
[ 23.407805] sda: Write Protect is off
[ 23.407807] sda: Mode Sense: 00 3a 00 00
[ 23.407820] SCSI device sda: write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
[ 23.407876] SCSI device sda: 156301488 512-byte hdwr sectors (80026 MB)
[ 23.407883] sda: Write Protect is off
[ 23.407885] sda: Mode Sense: 00 3a 00 00
[ 23.407896] SCSI device sda: write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
[ 23.407901] sda:usb usb1: configuration #1 chosen from 1 choice
[ 23.437694] hub 1-0:1.0: USB hub found
[ 23.437704] hub 1-0:1.0: 2 ports detected
[ 23.490264] sda1 sda2 ACPI: PCI Interrupt 0000:00:13.1[B] -> GSI 17 (level, low) -> IRQ 17
[ 23.513610] ohci_hcd 0000:00:13.1: OHCI Host Controller
[ 23.513636] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 2
[ 23.513654] ohci_hcd 0000:00:13.1: irq 17, io mem 0xc0006000
[ 23.515865] sda5 >
[ 23.516392] sd 0:0:0:0: Attached scsi disk sda
[ 23.519742] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 23.561580] usb usb2: configuration #1 chosen from 1 choice
[ 23.561605] hub 2-0:1.0: USB hub found
[ 23.561615] hub 2-0:1.0: 2 ports detected
[ 23.633531] ACPI: PCI Interrupt 0000:00:13.2[C] -> GSI 18 (level, low) -> IRQ 18
[ 23.633548] ohci_hcd 0000:00:13.2: OHCI Host Controller
[ 23.633572] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 3
[ 23.633591] ohci_hcd 0000:00:13.2: irq 18, io mem 0xc0007000
[ 23.669534] usb usb3: configuration #1 chosen from 1 choice
[ 23.669559] hub 3-0:1.0: USB hub found
[ 23.669571] hub 3-0:1.0: 2 ports detected
[ 23.717816] Attempting manual resume
[ 23.717819] swsusp: Resume From Partition 8:5
[ 23.717821] PM: Checking swsusp image.
[ 23.718110] PM: Resume from disk failed.
[ 23.749479] ACPI: PCI Interrupt 0000:00:13.3[B] -> GSI 17 (level, low) -> IRQ 17
[ 23.749496] ohci_hcd 0000:00:13.3: OHCI Host Controller
[ 23.749519] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 4
[ 23.749536] ohci_hcd 0000:00:13.3: irq 17, io mem 0xc0008000
[ 23.771555] kjournald starting. Commit interval 5 seconds
[ 23.771566] EXT3-fs: mounted filesystem with ordered data mode.
[ 23.793465] usb usb4: configuration #1 chosen from 1 choice
[ 23.793490] hub 4-0:1.0: USB hub found
[ 23.793502] hub 4-0:1.0: 2 ports detected
[ 23.865484] ACPI: PCI Interrupt 0000:00:13.4[C] -> GSI 18 (level, low) -> IRQ 18
[ 23.865503] ohci_hcd 0000:00:13.4: OHCI Host Controller
[ 23.865528] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 5
[ 23.865545] ohci_hcd 0000:00:13.4: irq 18, io mem 0xc0009000
[ 23.905395] usb usb5: configuration #1 chosen from 1 choice
[ 23.905418] hub 5-0:1.0: USB hub found
[ 23.905428] hub 5-0:1.0: 2 ports detected
[ 23.981445] ACPI: PCI Interrupt 0000:00:13.5[D] -> GSI 19 (level, low) -> IRQ 19
[ 23.981460] ehci_hcd 0000:00:13.5: EHCI Host Controller
[ 23.981483] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 6
[ 23.981524] ehci_hcd 0000:00:13.5: debug port 1
[ 23.981539] ehci_hcd 0000:00:13.5: irq 19, io mem 0xc0004400
[ 23.981550] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[ 23.981617] usb usb6: configuration #1 chosen from 1 choice
[ 23.981640] hub 6-0:1.0: USB hub found
[ 23.981647] hub 6-0:1.0: 10 ports detected
[ 24.057424] b44.c:v1.01 (Jun 16, 2006)
[ 24.057449] ACPI: PCI Interrupt 0000:08:00.0[A] -> GSI 21 (level, low) -> IRQ 21
[ 24.061049] eth0: Broadcom 4400 10/100BaseT Ethernet 00:19:b9:55:61:63
[ 24.061131] SB600_PATA: IDE controller at PCI slot 0000:00:14.1
[ 24.061141] ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level, low) -> IRQ 16
[ 24.061150] SB600_PATA: chipset revision 0
[ 24.061152] SB600_PATA: not 100% native mode: will probe irqs later
[ 24.061160] ide0: BM-DMA at 0×8420-0×8427, BIOS settings: hda:DMA, hdb:pio
[ 24.061181] Probing IDE interface ide0…
[ 24.573290] hda: TSSTcorp DVD+/-RW TS-L632D, ATAPI CD/DVD-ROM drive
[ 25.049637] ide0 at 0×1f0-0×1f7,0×3f6 on irq 14
[ 30.501659] warning: many lost ticks.
[ 30.501662] Your time source seems to be instable or some driver is hogging interupts
[ 30.501674] rip acpi_processor_idle+0×286/0×485 [processor]
[ 30.501676] Falling back to HPET
[ 35.604797] NET: Registered protocol family 17
[ 35.693593] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 35.698195] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 36.363372] ieee80211_crypt: registered algorithm ‘NULL’
[ 36.365400] ieee80211: 802.11 data/management/control stack, git-1.1.13
[ 36.365404] ieee80211: Copyright (C) 2004-2005 Intel Corporation
[ 36.439946] sdhci: Secure Digital Host Controller Interface driver
[ 36.439949] sdhci: Copyright(c) Pierre Ossman
[ 36.439993] sdhci: SDHCI controller found at 0000:08:01.0 [1180:0822] (rev 19)
[ 36.440019] ACPI: PCI Interrupt 0000:08:01.0[B] -> GSI 20 (level, low) -> IRQ 20
[ 36.440098] mmc0: SDHCI at 0xc0302000 irq 20 DMA
[ 36.507936] hda: ATAPI 24X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, UDMA(33)
[ 36.507944] Uniform CD-ROM driver Revision: 3.20
[ 36.609235] input: PC Speaker as /class/input/input2
[ 36.894089] ACPI: PCI Interrupt 0000:00:14.2[A] -> GSI 16 (level, low) -> IRQ 16
[ 37.100627] Synaptics Touchpad, model: 1, fw: 6.3, id: 0×180b1, caps: 0xa04713/0×200000
[ 37.138602] input: SynPS/2 Synaptics TouchPad as /class/input/input3
[ 37.214148] b44: eth0: Link is up at 100 Mbps, full duplex.
[ 37.214152] b44: eth0: Flow control is off for TX and off for RX.
[ 37.460129] fuse init (API version 7.8)
[ 37.644553] lp: driver loaded but no devices found
[ 37.693689] Adding 3229024k swap on /dev/disk/by-uuid/c914b84a-6318-482c-887c-eb7899cf08da. Priority:-1 extents:1 across:3229024k
[ 37.841976] EXT3 FS on sda1, internal journal
[ 40.585045] NET: Registered protocol family 10
[ 40.585129] lo: Disabled Privacy Extensions
[ 44.681066] ACPI: AC Adapter [ACAD] (on-line)
[ 44.689535] No dock devices found.
[ 44.731173] ACPI: Battery Slot [BAT1] (battery present)
[ 44.758968] Using specific hotkey driver
[ 44.810013] input: Power Button (FF) as /class/input/input4
[ 44.814093] ACPI: Power Button (FF) [PWRF]
[ 44.839025] input: Power Button (CM) as /class/input/input5
[ 44.843247] ACPI: Power Button (CM) [PWRB]
[ 44.868346] input: Sleep Button (CM) as /class/input/input6
[ 44.872393] ACPI: Sleep Button (CM) [SLPB]
[ 44.897454] input: Lid Switch as /class/input/input7
[ 44.901514] ACPI: Lid Switch [LID]
[ 44.972330] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
[ 44.988302] ibm_acpi: ec object not found
[ 45.034797] wmi_add device=ffff810074f04800
[ 45.034802] calling WQBA
[ 45.063531] pcc_acpi: loading…
[ 45.223569] powernow-k8: Found 1 AMD Turion(tm) 64 Mobile Technology MK-36 processors (version 2.00.00)
[ 45.223610] powernow-k8: 0 : fid 0xc (2000 MHz), vid 0×10
[ 45.223613] powernow-k8: 1 : fid 0xa (1800 MHz), vid 0×12
[ 45.223615] powernow-k8: 2 : fid 0×8 (1600 MHz), vid 0×14
[ 45.223618] powernow-k8: 3 : fid 0×0 (800 MHz), vid 0×18
[ 49.373637] ppdev: user-space parallel port driver
[ 50.818825] Bluetooth: Core ver 2.11
[ 50.818877] NET: Registered protocol family 31
[ 50.818879] Bluetooth: HCI device and connection manager initialized
[ 50.818883] Bluetooth: HCI socket layer initialized
[ 50.852857] Bluetooth: L2CAP ver 2.8
[ 50.852861] Bluetooth: L2CAP socket layer initialized
[ 51.284321] Bluetooth: RFCOMM socket layer initialized
[ 51.284335] Bluetooth: RFCOMM TTY layer initialized
[ 51.284337] Bluetooth: RFCOMM ver 1.8
[ 59.421005] eth0: no IPv6 routers present
[ 68.189730] hda-intel: Invalid position buffer, using LPIB read method instead.
ron@Pagasus:~$
You should use the updated tutorial. Anyway, where’s the problem?