Modem ZTE 636 3G Brt no Ubuntu 8.10 e 9.04

18 04 2009

Introdução

A alguns meses comprei resolvi colocar internet na minha humilde residência, o problema que não tava afim de colocar uma linha telefônica em casa pois eu raramente fico em casa, então resolvi comprar uma internet 3G de 600k da Brasil Telecom.

O plano já inclui o modem, no meu caso veio um ZTE 636. não achei nem no site do fabricante a especificação desse cara, ou seja, deve ser de 3 ou 4 linha, mas emfim,  no windows não tive muita dificuldade em instalar e navegar, o problema veio quando tentei usar o meu linux.

Esta configuração estou fazendo no meu HP DV6933, máquina muito boa por sinal!

Estava usando a versão 8.10 decidi atualizar para a 9.04 a fim de que o meu problema tivesse sido solucionado mas infelizmente no 9.04 o problema persiste então fui a luta

O que eu Tentei sem Sucesso

No forum do ubuntupr existem diversos tutoriais de gente ensinando como fazer este modem funcionar, cada um com uma abordagem diferente, alguns tutoriais que eu tentei seguir foram:

http://ubuntuforum-br.org/index.php/topic,44656.msg264575.html

http://ubuntuforum-br.org/index.php?topic=39439.0

http://forum.eeeuser.com/viewtopic.php?id=29614

porém nenhum deu resultado esperado, o que eu pude notar é que:

# lsusb
Bus 001 Device 002: ID 19d2:2000

O problema aqui está no seguinte, esse 2000 indica que o modem está sendo mapeado como uma unidade de CD-ROM o problema é que eu não conseguia desmontar esse viado de jeito nenhum, não aparecia em lugar algum do sistema, era como se este periférico não existisse, até que um cidadão apareceu com uma luz, nos dois links abaixo

http://ubuntuforums.org/showthread.php?t=1005910&page=4

Home

O que Deu Certo

1 – Conectei na internet no Window

2 – Acessei o painel de controle  / sistema / gerenciador de hardware achei meu modem zte na lista e fui em propriedades

3 – na aba configurações (não lembro certinho, nesse momento eu to no linux xD) digite AT+ZCDRUN=8

4 – de um ok saia, apague a linha de ok de novo e tente conectar no windows, se conectar, reinicie com o modem conectado e entre no ubuntu.

5 – no ubuntu de um lsusb deve aparecer algo assim
Bus 002 Device 004: ID 19d2:0031

agora basta saber em qual /dev/tty que seu modem foi mapeado, para isso de um olhada na saida do dmesg

[  221.788172] usb 2-1: new high speed USB device using ehci_hcd and address 4
[  221.923489] usb 2-1: configuration #1 chosen from 1 choice
[  221.925323] option 2-1:1.0: GSM modem (1-port) converter detected
[  221.925430] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[  221.925630] option 2-1:1.1: GSM modem (1-port) converter detected
[  221.925706] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[  221.926273] scsi6 : SCSI emulation for USB Mass Storage devices
[  221.926528] usb-storage: device found at 4
[  221.926532] usb-storage: waiting for device to settle before scanning
[  221.926700] option 2-1:1.3: GSM modem (1-port) converter detected
[  221.926812] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[  227.321948] usb-storage: device scan complete
[  227.322880] scsi 6:0:0:0: Direct-Access     ZTE      MMC Storage      2.31 PQ: 0 ANSI: 2

5 – instale o gnome-ppp

sudo apt-get install gnome-ppp

6 – pedi para o identificar meu modem através das configurações do gnome-ppp,

7 -configuração para conexão

usuario:  brt
senha:  brt
número: *99***1#

8 – clique em conecatar, vai demorar um pouco até que BINGO conectou!

Conclusão

Eu testei muita coisa então não sei se foram exatamente estes os passos que realmente fizeram a coisa funcionar porém esta foi a ultima coisa que testei então deve ter sido isso que resolveu o meu problema.


Ações

Information

10 responses

19 04 2009
battisti

no gnome-ppp nas configuracoes do modem deixe como /dev/ttyUSB2 ou o USB ai qual seu modem foi mapeado

23 04 2009
battisti

estava precisando usar o networkmanager ao invés do gnome-ppp pois precisava usar uma VPN sendo assim fui atraz e achei este topico aqui

http://ubuntuforum-br.org/index.php/topic,46242.0.html

alterando o script dos caras cheguei nesse aqui

#!/bin/sh

# Regras para o UDEV

echo ‘
ACTION!=”add”, GOTO=”ONDA_End”
SUBSYSTEM==”usb”, SYSFS{idProduct}==”2000″, SYSFS{idVendor}==”19d2″, RUN+=”/sbin/brt-web”
SUBSYSTEM==”usb”, SYSFS{idProduct}==”0031″, SYSFS{idVendor}==”19d2″, RUN+=”/sbin/modprobe usbserial vendor=0x19d2 product=0x0031″
LABEL=”ONDA_End”
‘ > /etc/udev/rules.d/45-zte-636hs.rules

# tim-web

echo ‘#!/bin/bash
sleep 10;
/usr/sbin/usb_modeswitch -v 0x19d2 -p 0x2000 -V 0x19d2 -P 0x0031 -m 0x01 -M 55534243123456782000000080000c85010101180101010101000000000001;
‘ > /sbin/tim-web
chmod +x /sbin/brt-web

# Regras para o HAL
echo ‘



true

modem
GSM-07.07
GSM-07.05

‘ > /usr/share/hal/fdi/preprobe/20thirdparty/10-zte-636hs.fdi

# Deleta a rota padrão
#route del default

# Sem isso o ppp não consegue alterar o DNS ao conectar
chmod 666 /etc/resolv.conf

# Esta opção é ncessária para que o sistema consiga obter o DNS ao conectar
opt1=`cat /etc/ppp/options | sed -e ‘/^\#/D’ | grep “ipcp-max-failure 30″`
[ -z “$opt1” ] && echo ‘ipcp-max-failure 30’ >> /etc/ppp/options
# E sem essas o Aiko 83D e outros modelos não conectam
opt2=`cat /etc/ppp/options | sed -e ‘/^\#/D’ | grep “asyncmap 0xa0000″`
[ -z “$opt2” ] && echo ‘asyncmap 0xa0000’ >> /etc/ppp/options
opt3=`cat /etc/ppp/options | sed -e ‘/^\#/D’ | grep “mru 1500″`
[ -z “$opt3” ] && echo ‘mru 1500’ >> /etc/ppp/options
opt4=`cat /etc/ppp/options | sed -e ‘/^\#/D’ | grep “refuse-chap”`
[ -z “$opt4” ] && echo ‘refuse-chap’ >> /etc/ppp/options

# DNS
echo “echo \”nameserver 201.10.120.2\” > /etc/resolv.conf” > /etc/ppp/ip-up.local
echo “echo \”nameserver 201.10.128.3\” >> /etc/resolv.conf” >> /etc/ppp/ip-up.local
chmod +x /etc/ppp/ip-up.local

# Configurações wvdial
echo ‘
[Dialer Defaults]
Carrier Check = off
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Password = Brt
Ask Password = 0
Check Def Routed = 1
Phone = *99***1#
Username = Brt
New PPPD = yes
Modem Type = Analog Modem
Stupid Mode = 1
Compuserver = 0
Baud = 4600800
Auto DNS = off
Dial Command = ATDT
Modem = /dev/ttyUSB0

‘ > /etc/wvdial.conf

salva isso num arquivo executa como root, reinicia a maquina e agora ao espetar o modem ele conecta.

1 05 2009
José Luís Alves da Rocha

Por favor explique melhor como fazemos essa configuração no Windows, porque enlouqueci e não achei como fazer isso e será que não conseguimos fazer o mesmo no linux?

Obrigado desde já!

3 05 2009
battisti

então essa config no windows não funcionou por muito tempo, pelo que eu entendi qnd eu uso pra conectar em outra maquina ele limpa as configurações ai volta a nao funcionar.

o que deu certo pra mim foi rodar esse script ai que eu coloquei nos comentarios, copia ele todo, ve se os caminhos estao batendo com os que aparecem ai no teu pc e executa ele como root, com isso o sistema vai ignorar o mass storage que tem no maldito zte.

tbm quase enlouqueci, tenta ai se nao der certo posta no site a saida do teu lsusb e do dmesg logo depois q vc pluga o modem.

4 05 2009
José Luís Alves da Rocha

Olá Battisti!

Não conectou ainda.
Conforme você pediu, segue o lsusb e dmesg.

Grato

lsusb:

jose@jose-laptop:~$ sudo lsusb
[sudo] password for jose:
Bus 001 Device 002: ID 19d2:2000
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

dmesg:

jose@jose-laptop:~$ sudo dsmeg
[sudo] password for jose:
sudo: dsmeg: command not found
jose@jose-laptop:~$ sudo dmesg
[ 0.000000] BIOS EBDA/lowmem at: 0009f400/0009f400
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 2.6.28-11-generic (buildd@palmer) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009 (Ubuntu 2.6.28-11.42-generic)
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Transmeta GenuineTMx86
[ 0.000000] Transmeta TransmetaCPU
[ 0.000000] UMC UMC UMC UMC
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 – 000000000009f400 (usable)
[ 0.000000] BIOS-e820: 000000000009f400 – 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000dc000 – 00000000000e0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e4000 – 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 – 000000004bdf0000 (usable)
[ 0.000000] BIOS-e820: 000000004bdf0000 – 000000004bdfb000 (ACPI data)
[ 0.000000] BIOS-e820: 000000004bdfb000 – 000000004be00000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000004be00000 – 0000000050000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff00000 – 0000000100000000 (reserved)
[ 0.000000] DMI present.
[ 0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working it around.
[ 0.000000] last_pfn = 0x4bdf0 max_arch_pfn = 0x100000
[ 0.000000] Scanning 0 areas for low memory corruption
[ 0.000000] modified physical RAM map:
[ 0.000000] modified: 0000000000000000 – 0000000000010000 (reserved)
[ 0.000000] modified: 0000000000010000 – 000000000009f400 (usable)
[ 0.000000] modified: 000000000009f400 – 00000000000a0000 (reserved)
[ 0.000000] modified: 00000000000dc000 – 00000000000e0000 (reserved)
[ 0.000000] modified: 00000000000e4000 – 0000000000100000 (reserved)
[ 0.000000] modified: 0000000000100000 – 000000004bdf0000 (usable)
[ 0.000000] modified: 000000004bdf0000 – 000000004bdfb000 (ACPI data)
[ 0.000000] modified: 000000004bdfb000 – 000000004be00000 (ACPI NVS)
[ 0.000000] modified: 000000004be00000 – 0000000050000000 (reserved)
[ 0.000000] modified: 00000000fff00000 – 0000000100000000 (reserved)
[ 0.000000] kernel direct mapping tables up to 373fe000 @ 10000-16000
[ 0.000000] RAMDISK: 378bc000 – 37fef3f2
[ 0.000000] Allocated new RAMDISK: 00881000 – 00fb43f2
[ 0.000000] Move RAMDISK from 00000000378bc000 – 0000000037fef3f1 to 00881000 – 00fb43f1
[ 0.000000] ACPI: RSDP 000F7E50, 0014 (r0 PTLTD )
[ 0.000000] ACPI: RSDT 4BDF7D2C, 002C (r1 PTLTD RSDT 6040000 LTP 0)
[ 0.000000] ACPI: FACP 4BDFAF46, 0074 (r1 SiS 661MX 6040000 PTL 1)
[ 0.000000] ACPI: DSDT 4BDF7D58, 31EE (r1 PTLTD 661MX 6040000 MSFT 100000E)
[ 0.000000] ACPI: FACS 4BDFBFC0, 0040
[ 0.000000] ACPI: APIC 4BDFAFBA, 0046 (r1 PTLTD APIC 6040000 LTP 0)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 329MB HIGHMEM available.
[ 0.000000] 883MB LOWMEM available.
[ 0.000000] mapped low ram: 0 – 373fe000
[ 0.000000] low ram: 00000000 – 373fe000
[ 0.000000] bootmap 00012000 – 00018e80
[ 0.000000] (9 early reservations) ==> bootmem [0000000000 – 00373fe000]
[ 0.000000] #0 [0000000000 – 0000001000] BIOS data page ==> [0000000000 – 0000001000]
[ 0.000000] #1 [0000001000 – 0000002000] EX TRAMPOLINE ==> [0000001000 – 0000002000]
[ 0.000000] #2 [0000006000 – 0000007000] TRAMPOLINE ==> [0000006000 – 0000007000]
[ 0.000000] #3 [0000100000 – 000087c52c] TEXT DATA BSS ==> [0000100000 – 000087c52c]
[ 0.000000] #4 [000087d000 – 0000881000] INIT_PG_TABLE ==> [000087d000 – 0000881000]
[ 0.000000] #5 [000009f400 – 0000100000] BIOS reserved ==> [000009f400 – 0000100000]
[ 0.000000] #6 [0000010000 – 0000012000] PGTABLE ==> [0000010000 – 0000012000]
[ 0.000000] #7 [0000881000 – 0000fb43f2] NEW RAMDISK ==> [0000881000 – 0000fb43f2]
[ 0.000000] #8 [0000012000 – 0000019000] BOOTMAP ==> [0000012000 – 0000019000]
[ 0.000000] found SMP MP-table at [c00f7e80] 000f7e80
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] Normal 0x00001000 -> 0x000373fe
[ 0.000000] HighMem 0x000373fe -> 0x0004bdf0
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x0004bdf0
[ 0.000000] On node 0 totalpages: 310655
[ 0.000000] free_area_init_node: node 0, pgdat c06d0f80, node_mem_map c1000200
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3951 pages, LIFO batch:0
[ 0.000000] Normal zone: 1736 pages used for memmap
[ 0.000000] Normal zone: 220470 pages, LIFO batch:31
[ 0.000000] HighMem zone: 660 pages used for memmap
[ 0.000000] HighMem zone: 83806 pages, LIFO batch:15
[ 0.000000] Movable zone: 0 pages used for memmap
[ 0.000000] ACPI: PM-Timer IO Port: 0x8008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 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, version 17, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IRQ11 used by override.
[ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: 000000000009f000 – 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 – 00000000000dc000
[ 0.000000] PM: Registered nosave memory: 00000000000dc000 – 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 – 00000000000e4000
[ 0.000000] PM: Registered nosave memory: 00000000000e4000 – 0000000000100000
[ 0.000000] Allocating PCI resources starting at 60000000 (gap: 50000000:aff00000)
[ 0.000000] PERCPU: Allocating 45056 bytes of per cpu data
[ 0.000000] NR_CPUS: 64, nr_cpu_ids: 1, nr_node_ids 1
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 308227
[ 0.000000] Kernel command line: root=UUID=dded6b57-317e-4fa8-b8db-5210403e3012 ro locale=pt_BR quiet splash
[ 0.000000] Enabling fast FPU save and restore… done.
[ 0.000000] Enabling unmasked SIMD FPU exception support… done.
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[ 0.000000] Fast TSC calibration using PIT
[ 0.000000] Detected 1396.331 MHz processor.
[ 0.004000] Console: colour VGA+ 80×25
[ 0.004000] console [tty0] enabled
[ 0.004000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.004000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.004000] allocated 6215040 bytes of page_cgroup
[ 0.004000] please try cgroup_disable=memory option if you don’t want
[ 0.004000] Scanning for low memory corruption every 60 seconds
[ 0.004000] Memory: 1210340k/1243072k available (4126k kernel code, 31748k reserved, 2208k data, 532k init, 337864k highmem)
[ 0.004000] virtual kernel memory layout:
[ 0.004000] fixmap : 0xffc77000 – 0xfffff000 (3616 kB)
[ 0.004000] pkmap : 0xff400000 – 0xff800000 (4096 kB)
[ 0.004000] vmalloc : 0xf7bfe000 – 0xff3fe000 ( 120 MB)
[ 0.004000] lowmem : 0xc0000000 – 0xf73fe000 ( 883 MB)
[ 0.004000] .init : 0xc0737000 – 0xc07bc000 ( 532 kB)
[ 0.004000] .data : 0xc0507a6f – 0xc072fe60 (2208 kB)
[ 0.004000] .text : 0xc0100000 – 0xc0507a6f (4126 kB)
[ 0.004000] Checking if this processor honours the WP bit even in supervisor mode…Ok.
[ 0.004000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.004035] Calibrating delay loop (skipped), value calculated using timer frequency.. 2792.66 BogoMIPS (lpj=5585324)
[ 0.004106] Security Framework initialized
[ 0.004140] SELinux: Disabled at boot.
[ 0.004209] AppArmor: AppArmor initialized
[ 0.004235] Mount-cache hash table entries: 512
[ 0.004689] Initializing cgroup subsys ns
[ 0.004708] Initializing cgroup subsys cpuacct
[ 0.004715] Initializing cgroup subsys memory
[ 0.004728] Initializing cgroup subsys freezer
[ 0.004776] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.004783] CPU: L2 cache: 1024K
[ 0.004830] Checking ‘hlt’ instruction… OK.
[ 0.021849] SMP alternatives: switching to UP code
[ 0.304537] Freeing SMP alternatives: 18k freed
[ 0.304548] ACPI: Core revision 20080926
[ 0.308235] ACPI: Checking initramfs for custom DSDT
[ 1.151910] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[ 1.152003] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[ 1.152003] …trying to set up timer (IRQ0) through the 8259A …
[ 1.152003] ….. (found apic 0 pin 0) …
[ 1.195440] ……. works.
[ 1.195442] CPU0: Intel(R) Celeron(R) M processor 1.40GHz stepping 08
[ 1.196003] Brought up 1 CPUs
[ 1.196003] Total of 1 processors activated (2792.66 BogoMIPS).
[ 1.196003] CPU0 attaching NULL sched-domain.
[ 1.196003] net_namespace: 776 bytes
[ 1.196003] Booting paravirtualized kernel on bare hardware
[ 1.196003] Time: 21:56:23 Date: 05/04/09
[ 1.196003] regulator: core version 0.5
[ 1.196003] NET: Registered protocol family 16
[ 1.196003] EISA bus registered
[ 1.196003] ACPI: bus type pci registered
[ 1.205101] PCI: PCI BIOS revision 2.10 entry at 0xfd986, last bus=1
[ 1.205107] PCI: Using configuration type 1 for base access
[ 1.208743] ACPI: EC: Look up EC in DSDT
[ 1.215167] ACPI: Interpreter enabled
[ 1.215180] ACPI: (supports S0 S3 S4 S5)
[ 1.215219] ACPI: Using IOAPIC for interrupt routing
[ 1.221048] ACPI: EC: non-query interrupt received, switching to interrupt mode
[ 1.221231] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 1.221231] ACPI: EC: driver started in interrupt mode
[ 1.221231] ACPI: No dock devices found.
[ 1.221231] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 1.221231] pci 0000:00:00.0: reg 10 32bit mmio: [0xe0000000-0xe3ffffff]
[ 1.221231] pci 0000:00:02.0: Enabling SiS 96x SMBus
[ 1.221273] pci 0000:00:02.1: reg 20 io port: [0x8100-0x811f]
[ 1.221348] pci 0000:00:02.5: reg 10 io port: [0x1f0-0x1f7]
[ 1.221366] pci 0000:00:02.5: reg 14 io port: [0x3f4-0x3f7]
[ 1.221380] pci 0000:00:02.5: reg 18 io port: [0x170-0x177]
[ 1.221395] pci 0000:00:02.5: reg 1c io port: [0x374-0x377]
[ 1.221409] pci 0000:00:02.5: reg 20 io port: [0x9400-0x940f]
[ 1.221502] pci 0000:00:02.6: reg 10 io port: [0x8400-0x84ff]
[ 1.221520] pci 0000:00:02.6: reg 14 io port: [0x9000-0x907f]
[ 1.221590] pci 0000:00:02.6: supports D1 D2
[ 1.221600] pci 0000:00:02.6: PME# supported from D3hot D3cold
[ 1.221609] pci 0000:00:02.6: PME# disabled
[ 1.224053] pci 0000:00:02.7: reg 10 io port: [0x8800-0x88ff]
[ 1.224068] pci 0000:00:02.7: reg 14 io port: [0x9080-0x90ff]
[ 1.224140] pci 0000:00:02.7: supports D1 D2
[ 1.224146] pci 0000:00:02.7: PME# supported from D3hot D3cold
[ 1.224158] pci 0000:00:02.7: PME# disabled
[ 1.224207] pci 0000:00:03.0: reg 10 32bit mmio: [0xe4008000-0xe4008fff]
[ 1.224313] pci 0000:00:03.1: reg 10 32bit mmio: [0xe4009000-0xe4009fff]
[ 1.224441] pci 0000:00:03.3: reg 10 32bit mmio: [0xe400a000-0xe400afff]
[ 1.224517] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[ 1.224526] pci 0000:00:03.3: PME# disabled
[ 1.224607] pci 0000:00:04.0: reg 10 io port: [0x8c00-0x8cff]
[ 1.224625] pci 0000:00:04.0: reg 14 32bit mmio: [0xe400b000-0xe400bfff]
[ 1.224683] pci 0000:00:04.0: reg 30 32bit mmio: [0x000000-0x01ffff]
[ 1.224704] pci 0000:00:04.0: supports D1 D2
[ 1.224710] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.224719] pci 0000:00:04.0: PME# disabled
[ 1.224815] pci 0000:00:0d.0: reg 10 32bit mmio: [0xe4000000-0xe4007fff]
[ 1.224963] pci 0000:00:0e.0: reg 10 32bit mmio: [0x000000-0x000fff]
[ 1.224988] pci 0000:00:0e.0: supports D1 D2
[ 1.224994] pci 0000:00:0e.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.225002] pci 0000:00:0e.0: PME# disabled
[ 1.225128] pci 0000:01:00.0: reg 10 32bit mmio: [0xe8000000-0xefffffff]
[ 1.225142] pci 0000:01:00.0: reg 14 32bit mmio: [0xe4100000-0xe411ffff]
[ 1.225155] pci 0000:01:00.0: reg 18 io port: [0xa000-0xa07f]
[ 1.225202] pci 0000:01:00.0: supports D1 D2
[ 1.225282] pci 0000:00:01.0: bridge io port: [0xa000-0xafff]
[ 1.225294] pci 0000:00:01.0: bridge 32bit mmio: [0xe4100000-0xe41fffff]
[ 1.225306] pci 0000:00:01.0: bridge 32bit mmio pref: [0xe8000000-0xefffffff]
[ 1.225362] bus 00 -> node 0
[ 1.225379] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 1.245349] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 *10)
[ 1.245626] ACPI: PCI Interrupt Link [LNKB] (IRQs 11) *0, disabled.
[ 1.245887] ACPI: PCI Interrupt Link [LNKC] (IRQs *5 9)
[ 1.246149] ACPI: PCI Interrupt Link [LNKD] (IRQs 6 *7)
[ 1.246467] ACPI: PCI Interrupt Link [LNKE] (IRQs 6 *7)
[ 1.246733] ACPI: PCI Interrupt Link [LNKF] (IRQs 5 *9)
[ 1.246999] ACPI: PCI Interrupt Link [LNKG] (IRQs 11) *0, disabled.
[ 1.247271] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 10)
[ 1.247573] ACPI: WMI: Mapper loaded
[ 1.248065] SCSI subsystem initialized
[ 1.248171] libata version 3.00 loaded.
[ 1.248300] usbcore: registered new interface driver usbfs
[ 1.248342] usbcore: registered new interface driver hub
[ 1.248419] usbcore: registered new device driver usb
[ 1.248706] PCI: Using ACPI for IRQ routing
[ 1.248915] Bluetooth: Core ver 2.13
[ 1.248915] NET: Registered protocol family 31
[ 1.248915] Bluetooth: HCI device and connection manager initialized
[ 1.248915] Bluetooth: HCI socket layer initialized
[ 1.248915] NET: Registered protocol family 8
[ 1.248915] NET: Registered protocol family 20
[ 1.248915] NetLabel: Initializing
[ 1.248915] NetLabel: domain hash size = 128
[ 1.248915] NetLabel: protocols = UNLABELED CIPSOv4
[ 1.248915] NetLabel: unlabeled traffic allowed by default
[ 1.248915] AppArmor: AppArmor Filesystem Enabled
[ 1.248915] pnp: PnP ACPI init
[ 1.248915] ACPI: bus type pnp registered
[ 1.253664] pnp: PnP ACPI: found 9 devices
[ 1.253671] ACPI: ACPI bus type pnp unregistered
[ 1.253683] PnPBIOS: Disabled by ACPI PNP
[ 1.253711] system 00:04: ioport range 0x8000-0x808f has been reserved
[ 1.253721] system 00:04: ioport range 0x8090-0x80ff has been reserved
[ 1.253728] system 00:04: ioport range 0x8100-0x811f has been reserved
[ 1.253735] system 00:04: ioport range 0x4d0-0x4d1 has been reserved
[ 1.253742] system 00:04: ioport range 0xfe00-0xfe00 has been reserved
[ 1.253750] system 00:04: iomem range 0xffe80000-0xffefffff has been reserved
[ 1.288801] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[ 1.288809] pci 0000:00:01.0: IO window: 0xa000-0xafff
[ 1.288822] pci 0000:00:01.0: MEM window: 0xe4100000-0xe41fffff
[ 1.288834] pci 0000:00:01.0: PREFETCH window: 0x000000e8000000-0x000000efffffff
[ 1.288849] pci 0000:00:0e.0: CardBus bridge, secondary bus 0000:02
[ 1.288856] pci 0000:00:0e.0: IO window: 0x001000-0x0010ff
[ 1.288868] pci 0000:00:0e.0: IO window: 0x001400-0x0014ff
[ 1.288880] pci 0000:00:0e.0: PREFETCH window: 0x60000000-0x63ffffff
[ 1.288889] pci 0000:00:0e.0: MEM window: 0x64000000-0x67ffffff
[ 1.288927] pci 0000:00:0e.0: enabling device (0000 -> 0003)
[ 1.288946] pci 0000:00:0e.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 1.288960] pci 0000:00:0e.0: setting latency timer to 64
[ 1.288968] bus: 00 index 0 io port: [0x00-0xffff]
[ 1.288975] bus: 00 index 1 mmio: [0x000000-0xffffffff]
[ 1.288981] bus: 01 index 0 io port: [0xa000-0xafff]
[ 1.288987] bus: 01 index 1 mmio: [0xe4100000-0xe41fffff]
[ 1.288994] bus: 01 index 2 mmio: [0xe8000000-0xefffffff]
[ 1.289000] bus: 01 index 3 mmio: [0x0-0x0]
[ 1.289006] bus: 02 index 0 io port: [0x1000-0x10ff]
[ 1.289012] bus: 02 index 1 io port: [0x1400-0x14ff]
[ 1.289018] bus: 02 index 2 mmio: [0x60000000-0x63ffffff]
[ 1.289024] bus: 02 index 3 mmio: [0x64000000-0x67ffffff]
[ 1.289051] NET: Registered protocol family 2
[ 1.289332] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 1.290084] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 1.292713] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[ 1.294574] TCP: Hash tables configured (established 131072 bind 65536)
[ 1.294587] TCP reno registered
[ 1.295011] NET: Registered protocol family 1
[ 1.295423] checking if image is initramfs…Switched to high resolution mode on CPU 0
[ 2.125620] it is
[ 3.038202] Freeing initrd memory: 7372k freed
[ 3.038402] cpufreq: No nForce2 chipset.
[ 3.038878] audit: initializing netlink socket (disabled)
[ 3.038938] type=2000 audit(1241474185.036:1): initialized
[ 3.059744] highmem bounce pool size: 64 pages
[ 3.059758] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 3.063265] VFS: Disk quotas dquot_6.5.1
[ 3.063428] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 3.065090] fuse init (API version 7.10)
[ 3.065304] msgmni has been set to 1719
[ 3.065807] alg: No test for stdrng (krng)
[ 3.065839] io scheduler noop registered
[ 3.065845] io scheduler anticipatory registered
[ 3.065851] io scheduler deadline registered
[ 3.065891] io scheduler cfq registered (default)
[ 3.500063] pci 0000:01:00.0: Boot video device
[ 3.503313] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 3.503336] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 3.503852] ACPI: AC Adapter [AC] (off-line)
[ 3.516370] ACPI: Battery Slot [BAT0] (battery present)
[ 3.516546] input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 3.516553] ACPI: Power Button (FF) [PWRF]
[ 3.516683] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
[ 3.517067] ACPI: Lid Switch [LID]
[ 3.517192] input: Power Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
[ 3.517199] ACPI: Power Button (CM) [PWRB]
[ 3.517313] input: Sleep Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
[ 3.517321] ACPI: Sleep Button (CM) [SLPB]
[ 3.517745] ACPI: CPU0 (power states: C1[C1] C2[C2])
[ 3.517809] processor ACPI_CPU:00: registered as cooling_device0
[ 3.517817] ACPI: Processor [CPU0] (supports 8 throttling states)
[ 3.523847] thermal LNXTHERM:01: registered as thermal_zone0
[ 3.526755] ACPI: Thermal Zone [THRM] (25 C)
[ 3.526860] isapnp: Scanning for PnP cards…
[ 3.883396] isapnp: No Plug & Play device found
[ 3.886260] Serial: 8250/16550 driver4 ports, IRQ sharing enabled
[ 3.887075] serial 0000:00:02.6: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 3.887092] serial 0000:00:02.6: PCI INT C disabled
[ 3.888826] brd: module loaded
[ 3.889626] loop: module loaded
[ 3.889834] Fixed MDIO Bus: probed
[ 3.889849] PPP generic driver version 2.4.2
[ 3.890016] input: Macintosh mouse button emulation as /devices/virtual/input/input4
[ 3.890089] Driver ‘sd’ needs updating – please use bus_type methods
[ 3.890114] Driver ‘sr’ needs updating – please use bus_type methods
[ 3.891487] pata_sis 0000:00:02.5: version 0.5.2
[ 3.891520] pata_sis 0000:00:02.5: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 3.891924] scsi0 : pata_sis
[ 3.892173] scsi1 : pata_sis
[ 3.893703] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x9400 irq 14
[ 3.893710] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0x9408 irq 15
[ 4.056667] ata1.00: ATA-6: HTS541040G9AT00, MB2OA60A, max UDMA/100
[ 4.056674] ata1.00: 78140160 sectors, multi 16: LBA48
[ 4.072689] ata1.00: configured for UDMA/100
[ 4.252458] ata2.00: ATAPI: TSSTcorpCDW/DVD TS-L462C, TS01, max UDMA/33
[ 4.348513] ata2.00: configured for UDMA/33
[ 4.383169] scsi 0:0:0:0: Direct-Access ATA HTS541040G9AT00 MB2O PQ: 0 ANSI: 5
[ 4.383424] sd 0:0:0:0: [sda] 78140160 512-byte hardware sectors: (40.0 GB/37.2 GiB)
[ 4.383469] sd 0:0:0:0: [sda] Write Protect is off
[ 4.383476] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.383542] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
[ 4.383698] sd 0:0:0:0: [sda] 78140160 512-byte hardware sectors: (40.0 GB/37.2 GiB)
[ 4.383736] sd 0:0:0:0: [sda] Write Protect is off
[ 4.383742] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.383806] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
[ 4.383814] sda: sda1 sda2 sda3
[ 4.434002] sd 0:0:0:0: [sda] Attached SCSI disk
[ 4.434127] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 4.469168] scsi 1:0:0:0: CD-ROM TSSTcorp CDW/DVD TS-L462C TS01 PQ: 0 ANSI: 5
[ 4.710900] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[ 4.710908] Uniform CD-ROM driver Revision: 3.20
[ 4.711141] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4.711237] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 4.711551] ehci_hcd: USB 2.0 ‘Enhanced’ Host Controller (EHCI) Driver
[ 4.711610] ehci_hcd 0000:00:03.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[ 4.711671] ehci_hcd 0000:00:03.3: EHCI Host Controller
[ 4.711859] ehci_hcd 0000:00:03.3: new USB bus registered, assigned bus number 1
[ 4.711974] ehci_hcd 0000:00:03.3: irq 23, io mem 0xe400a000
[ 4.720020] ehci_hcd 0000:00:03.3: USB 2.0 started, EHCI 1.00
[ 4.720206] usb usb1: configuration #1 chosen from 1 choice
[ 4.720282] hub 1-0:1.0: USB hub found
[ 4.720308] hub 1-0:1.0: 6 ports detected
[ 4.720584] ohci_hcd: USB 1.1 ‘Open’ Host Controller (OHCI) Driver
[ 4.720629] ohci_hcd 0000:00:03.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 4.720656] ohci_hcd 0000:00:03.0: OHCI Host Controller
[ 4.720764] ohci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2
[ 4.720806] ohci_hcd 0000:00:03.0: irq 20, io mem 0xe4008000
[ 4.782127] usb usb2: configuration #1 chosen from 1 choice
[ 4.782192] hub 2-0:1.0: USB hub found
[ 4.782217] hub 2-0:1.0: 3 ports detected
[ 4.782418] ohci_hcd 0000:00:03.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 4.782443] ohci_hcd 0000:00:03.1: OHCI Host Controller
[ 4.782562] ohci_hcd 0000:00:03.1: new USB bus registered, assigned bus number 3
[ 4.782603] ohci_hcd 0000:00:03.1: irq 21, io mem 0xe4009000
[ 4.842119] usb usb3: configuration #1 chosen from 1 choice
[ 4.842185] hub 3-0:1.0: USB hub found
[ 4.842206] hub 3-0:1.0: 3 ports detected
[ 4.842435] uhci_hcd: USB Universal Host Controller Interface driver
[ 4.842591] usbcore: registered new interface driver libusual
[ 4.842676] usbcore: registered new interface driver usbserial
[ 4.842703] USB Serial support registered for generic
[ 4.842740] usbcore: registered new interface driver usbserial_generic
[ 4.842746] usbserial: USB Serial Driver core
[ 4.842859] PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 4.845381] i8042.c: Detected active multiplexing controller, rev 1.1.
[ 4.846809] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 4.846823] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 4.846829] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 4.846836] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 4.846842] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 4.847232] mice: PS/2 mouse device common for all mice
[ 4.847756] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 4.847802] rtc0: alarms up to one year, y3k, 114 bytes nvram
[ 4.847958] device-mapper: uevent: version 1.0.3
[ 4.848272] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com
[ 4.848397] device-mapper: multipath: version 1.0.5 loaded
[ 4.848404] device-mapper: multipath round-robin: version 1.0.0 loaded
[ 4.848608] EISA: Probing bus 0 at eisa.0
[ 4.848627] Cannot allocate resource for EISA slot 1
[ 4.848675] Cannot allocate resource for EISA slot 8
[ 4.848680] EISA: Detected 0 cards.
[ 4.848820] cpuidle: using governor ladder
[ 4.848941] cpuidle: using governor menu
[ 4.850207] TCP cubic registered
[ 4.850474] NET: Registered protocol family 10
[ 4.851507] lo: Disabled Privacy Extensions
[ 4.852305] NET: Registered protocol family 17
[ 4.852351] Bluetooth: L2CAP ver 2.11
[ 4.852354] Bluetooth: L2CAP socket layer initialized
[ 4.852360] Bluetooth: SCO (Voice Link) ver 0.6
[ 4.852366] Bluetooth: SCO socket layer initialized
[ 4.852439] Bluetooth: RFCOMM socket layer initialized
[ 4.852458] Bluetooth: RFCOMM TTY layer initialized
[ 4.852464] Bluetooth: RFCOMM ver 1.10
[ 4.852564] Using IPI No-Shortcut mode
[ 4.852764] registered taskstats version 1
[ 4.853001] Magic number: 9:412:954
[ 4.853175] rtc_cmos 00:02: setting system clock to 2009-05-04 21:56:27 UTC (1241474187)
[ 4.853182] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 4.853188] EDD information not available.
[ 4.854167] Freeing unused kernel memory: 532k freed
[ 4.854476] Write protecting the kernel text: 4128k
[ 4.854579] Write protecting the kernel read-only data: 1532k
[ 4.893649] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[ 6.316247] sis900.c: v1.08.10 Apr. 2 2006
[ 6.316379] sis900 0000:00:04.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 6.318773] 0000:00:04.0: Realtek RTL8201 PHY transceiver found at address 1.
[ 6.339178] 0000:00:04.0: Using transceiver found at address 1 as default
[ 6.373992] eth0: SiS 900 PCI Fast Ethernet at 0x8c00, IRQ 19, 00:90:f5:52:1a:f5
[ 8.136899] PM: Starting manual resume from disk
[ 8.136911] PM: Resume from partition 8:5
[ 8.136913] PM: Checking hibernation image.
[ 8.137138] PM: Resume from disk failed.
[ 8.204034] kjournald starting. Commit interval 5 seconds
[ 8.204065] EXT3-fs: mounted filesystem with ordered data mode.
[ 10.616333] Marking TSC unstable due to TSC halts in idle
[ 18.104826] udev: starting version 141
[ 18.327486] Linux agpgart interface v0.103
[ 18.337780] agpgart-sis 0000:00:00.0: SiS chipset [1039/0661]
[ 18.357457] agpgart-sis 0000:00:00.0: AGP aperture is 64M @ 0xe0000000
[ 18.433348] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 18.469113] sis96x_smbus 0000:00:02.1: SiS96x SMBus base address: 0x8100
[ 18.788181] yenta_cardbus 0000:00:0e.0: CardBus bridge found [1558:0360]
[ 18.788229] yenta_cardbus 0000:00:0e.0: Using CSCINT to route CSC interrupts to PCI
[ 18.788235] yenta_cardbus 0000:00:0e.0: Routing CardBus interrupts to PCI
[ 18.788248] yenta_cardbus 0000:00:0e.0: TI: mfunc 0x00001002, devctl 0x44
[ 18.822295] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 19.004253] cfg80211: Calling CRDA to update world regulatory domain
[ 19.022028] yenta_cardbus 0000:00:0e.0: ISA IRQ mask 0x04f8, PCI irq 18
[ 19.022041] yenta_cardbus 0000:00:0e.0: Socket status: 30000006
[ 19.035091] synaptics was reset on resume, see synaptics_resume_reset if you have trouble on resume
[ 19.495022] psmouse serio4: ID: 10 00 64elantech.c: assuming hardware version 1, firmware version 1.33
[ 19.654209] elantech.c: Synaptics capabilities query result 0x06, 0x02, 0x64.
[ 19.785716] rt61pci 0000:00:0d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 19.823411] phy0: Selected rate control algorithm ‘pid’
[ 19.925351] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input7
[ 19.986616] cfg80211: World regulatory domain updated:
[ 19.986630] (start_freq – end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 19.986641] (2402000 KHz – 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 19.986648] (2457000 KHz – 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 19.986655] (2474000 KHz – 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 19.986662] (5170000 KHz – 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 19.986668] (5735000 KHz – 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 20.102343] Registered led device: rt61pci-phy0:radio
[ 20.102454] Registered led device: rt61pci-phy0:assoc
[ 20.186053] Intel ICH 0000:00:02.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 20.243361] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: clean.
[ 20.246602] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: excluding 0x480-0x48f
[ 20.247915] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: clean.
[ 20.249074] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7: clean.
[ 20.250566] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
[ 21.012037] intel8x0_measure_ac97_clock: measured 55303 usecs
[ 21.012045] intel8x0: clocking to 48000
[ 21.317813] lp: driver loaded but no devices found
[ 21.609406] Adding 1108476k swap on /dev/sda5. Priority:-1 extents:1 across:1108476k
[ 21.652549] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
[ 21.653056] EXT3 FS on sda6, internal journal
[ 22.763877] type=1505 audit(1241474205.406:2): operation=”profile_load” name=”/usr/share/gdm/guest-session/Xsession” name2=”default” pid=1872
[ 22.910995] type=1505 audit(1241474205.554:3): operation=”profile_load” name=”/sbin/dhclient-script” name2=”default” pid=1876
[ 22.911452] type=1505 audit(1241474205.554:4): operation=”profile_load” name=”/sbin/dhclient3″ name2=”default” pid=1876
[ 22.911633] type=1505 audit(1241474205.554:5): operation=”profile_load” name=”/usr/lib/NetworkManager/nm-dhcp-client.action” name2=”default” pid=1876
[ 22.911753] type=1505 audit(1241474205.554:6): operation=”profile_load” name=”/usr/lib/connman/scripts/dhclient-script” name2=”default” pid=1876
[ 23.343193] type=1505 audit(1241474205.986:7): operation=”profile_load” name=”/usr/lib/cups/backend/cups-pdf” name2=”default” pid=1881
[ 23.343963] type=1505 audit(1241474205.986:8): operation=”profile_load” name=”/usr/sbin/cupsd” name2=”default” pid=1881
[ 23.428775] type=1505 audit(1241474206.074:9): operation=”profile_load” name=”/usr/sbin/tcpdump” name2=”default” pid=1885
[ 29.135439] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 29.135450] Bluetooth: BNEP filters: protocol multicast
[ 29.177397] Bridge firewalling registered
[ 33.872067] ppdev: user-space parallel port driver
[ 37.355622] eth0: Media Link Off
[ 37.356386] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 37.358404] rt61pci 0000:00:0d.0: firmware: requesting rt2561.bin
[ 37.541963] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 1171.888046] usb 1-1: new high speed USB device using ehci_hcd and address 2
[ 1172.050171] usb 1-1: configuration #1 chosen from 1 choice
[ 1172.516662] Initializing USB Mass Storage driver…
[ 1172.519205] usb-storage: device ignored
[ 1172.519314] usbcore: registered new interface driver usb-storage
[ 1172.519322] USB Mass Storage support registered.
[ 1938.354624] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 1943.000042] ————[ cut here ]————
[ 1943.000049] WARNING: at /build/buildd/linux-2.6.28/net/sched/sch_generic.c:226 dev_watchdog+0x219/0x230()
[ 1943.000053] NETDEV WATCHDOG: eth0 (sis900): transmit timed out
[ 1943.000055] Modules linked in: usb_storage binfmt_misc ppdev bridge stp bnep video output input_polldev lp parport snd_intel8x0 snd_ac97_codec ac97_bus snd_pcm_oss snd_mixer_oss arc4 snd_pcm ecb joydev pcmcia snd_seq_dummy snd_seq_oss rt61pci crc_itu_t snd_seq_midi rt2x00pci snd_rawmidi rt2x00lib snd_seq_midi_event led_class snd_seq snd_timer snd_seq_device mac80211 cfg80211 snd psmouse soundcore pcspkr serio_raw yenta_socket rsrc_nonstatic pcmcia_core eeprom_93cx6 snd_page_alloc i2c_sis96x shpchp sis_agp agpgart sis900 mii fbcon tileblit font bitblit softcursor
[ 1943.000118] Pid: 0, comm: swapper Not tainted 2.6.28-11-generic #42-Ubuntu
[ 1943.000121] Call Trace:
[ 1943.000130] [] warn_slowpath+0x60/0x80
[ 1943.000137] [] ? enqueue_entity+0x13c/0x360
[ 1943.000141] [] ? enqueue_task_fair+0x31/0x70
[ 1943.000145] [] ? enqueue_task+0x57/0x70
[ 1943.000149] [] ? try_to_wake_up+0x104/0x290
[ 1943.000155] [] ? strlcpy+0x1d/0x60
[ 1943.000161] [] ? netdev_drivername+0x32/0x40
[ 1943.000166] [] dev_watchdog+0x219/0x230
[ 1943.000172] [] ? __queue_work+0x31/0x40
[ 1943.000177] [] run_timer_softirq+0x130/0x200
[ 1943.000181] [] ? dev_watchdog+0x0/0x230
[ 1943.000185] [] ? dev_watchdog+0x0/0x230
[ 1943.000190] [] __do_softirq+0x97/0x170
[ 1943.000194] [] ? hrtimer_interrupt+0x186/0x1b0
[ 1943.000199] [] do_softirq+0x5d/0x60
[ 1943.000203] [] irq_exit+0x55/0x90
[ 1943.000209] [] smp_apic_timer_interrupt+0x5b/0x90
[ 1943.000214] [] apic_timer_interrupt+0x28/0x30
[ 1943.000220] [] ? posix_cpu_clock_getres+0x5b/0x60
[ 1943.000226] [] ? native_safe_halt+0x5/0x10
[ 1943.000231] [] acpi_safe_halt+0x2a/0x42
[ 1943.000235] [] acpi_idle_do_entry+0x1c/0x2b
[ 1943.000238] [] acpi_idle_enter_c1+0x62/0x83
[ 1943.000245] [] cpuidle_idle_call+0x6f/0xd0
[ 1943.000249] [] cpu_idle+0x6d/0xd0
[ 1943.000256] [] rest_init+0x4e/0x60
[ 1943.000259] —[ end trace c2e659c5bad7b129 ]—
[ 1943.000264] eth0: Transmit timeout, status 00000004 00000000
[ 1943.353009] eth0: Media Link On 100mbps full-duplex
[ 1951.684993] wlan0: authenticate with AP 00:03:2f:2e:ae:fb
[ 1951.686233] wlan0: authenticated
[ 1951.686238] wlan0: associate with AP 00:03:2f:2e:ae:fb
[ 1951.688513] wlan0: RX AssocResp from 00:03:2f:2e:ae:fb (capab=0x51 status=0 aid=1)
[ 1951.688517] wlan0: associated
[ 1951.720516] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 1961.760022] wlan0: no IPv6 routers present
[ 1996.852106] wlan0: disassociating by local choice (reason=3)
[ 1998.312762] wlan0: authenticate with AP 00:03:2f:2e:ae:fb
[ 1998.313996] wlan0: authenticated
[ 1998.314000] wlan0: associate with AP 00:03:2f:2e:ae:fb
[ 1998.316469] wlan0: RX ReassocResp from 00:03:2f:2e:ae:fb (capab=0x51 status=0 aid=1)
[ 1998.316473] wlan0: associated
[ 2043.854827] wlan0: disassociating by local choice (reason=3)
[ 2045.316081] wlan0: authenticate with AP 00:03:2f:2e:ae:fb
[ 2045.317316] wlan0: authenticated
[ 2045.317321] wlan0: associate with AP 00:03:2f:2e:ae:fb
[ 2045.319417] wlan0: RX ReassocResp from 00:03:2f:2e:ae:fb (capab=0x51 status=0 aid=1)
[ 2045.319420] wlan0: associated
[ 2045.353240] wlan0: authenticate with AP 00:03:2f:2e:ae:fb
[ 2045.354488] wlan0: authenticated
[ 2045.354495] wlan0: associate with AP 00:03:2f:2e:ae:fb
[ 2045.356545] wlan0: RX ReassocResp from 00:03:2f:2e:ae:fb (capab=0x51 status=0 aid=1)
[ 2045.356550] wlan0: associated
[ 2090.856777] wlan0: disassociating by local choice (reason=3)
[ 2092.320864] wlan0: authenticate with AP 00:03:2f:2e:ae:fb
[ 2092.322100] wlan0: authenticated
[ 2092.322104] wlan0: associate with AP 00:03:2f:2e:ae:fb
[ 2092.324474] wlan0: RX ReassocResp from 00:03:2f:2e:ae:fb (capab=0x51 status=0 aid=1)
[ 2092.324479] wlan0: associated
[ 2137.853315] wlan0: disassociating by local choice (reason=3)
[ 2139.320967] wlan0: authenticate with AP 00:03:2f:2e:ae:fb
[ 2139.322202] wlan0: authenticated
[ 2139.322207] wlan0: associate with AP 00:03:2f:2e:ae:fb
[ 2139.324477] wlan0: RX ReassocResp from 00:03:2f:2e:ae:fb (capab=0x51 status=0 aid=1)
[ 2139.324481] wlan0: associated
[ 2184.852238] wlan0: disassociating by local choice (reason=3)
jose@jose-laptop:~$

5 05 2009
battisti

então josé o que está acontecendo é que o teu linux ainda está montando o teu modem como sendo uma unidade de disco, isso mostra pelo teu lsusb

Bus 001 Device 002: ID 19d2:2000

pra funcionar tem que ficar assim:
Bus 001 Device 002: ID 19d2:0031

pra mudar isso vc tem várias opções, a que eu consegui fazer foi dentro do arquivo /etc/udev/rules.d/45-zte-636hs.rules

colocar isso aqui
ACTION!=”add”, GOTO=”ONDA_End”
SUBSYSTEM==”usb”, SYSFS{idProduct}==”2000″, SYSFS{idVendor}==”19d2″, RUN+=”/sbin/brt-web”
SUBSYSTEM==”usb”, SYSFS{idProduct}==”0031″, SYSFS{idVendor}==”19d2″, RUN+=”/sbin/modprobe usbserial vendor=0×19d2 product=0×0031″
LABEL=”ONDA_End”

reinicia o pc com o modem conectado que deve alterar o teu mapeamento para o 31, testa ai e diga o que aconteceu!

5 05 2009
José Luís Alves da Rocha

Olá Battisti

O lsusb continua o mesmo:

jose@jose-laptop:~$ sudo lsusb
[sudo] password for jose:
Bus 001 Device 002: ID 19d2:2000
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

o que será que está pegando?

6 05 2009
José Luís Alves da Rocha

Prosseguirei estudando o caso.
Alguma novidade surgindo, será postada.
Muito agradecido pela preciosa contribuição na jornada do ZTE636 no Linux.

José

21 12 2009
José Luís Alves da Rocha

Olá Battisti!

Depois de muitas tentativas consegui acessar o 3G no Karmic Koala. Maravilha!
“Libertas quea sera tamen” http://www.youtube.com/watch?v=sobydV-E9NU&feature=related
Consegui instalando os pacotes da AIKO. Endereço:
http://www.aiko.com.br/telefonia_detalhes.asp?idProduto=80&sessao=suporte
Agradeço a você, e todos da nossa querida Nação Linukeira pela valiosa ajuda e conforme prometido posto esse retorno.

21 12 2009
battisti

Fico feliz, realmente o suporte a estes modens 3g ainda deixam a desejar mas no fim com um pouco de trabalho agente acaba conseguindo!

Deixe um comentário