Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-ACPI

...το μέρος για να ξεκινήσετε!

Συντονιστής: adem1

Κανόνες Δ. Συζήτησης
Παρακαλώ να επιλέξετε, με προσοχή, την άδεια που θέλετε να έχουν οι οδηγοί που συγγράφετε.
Πληροφορίες για τις άδειες μπορείτε να βρείτε εδώ.
Άμα επιθυμείτε κάποια άλλη άδεια επικοινωνήστε με κάποιο Διαχειριστή είτε Συντονιστή.

Σημαντικό είναι να χρησιμοποιήσετε την υπηρεσία http://imagebin.ubuntu-gr.org για τις εικόνες.

Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-ACPI

Δημοσίευσηαπό simosx » 22 Απρ 2011, 14:22

Έχουμε ένα φορητό υπολογιστή και παρατηρούμε ότι με Linux δε λειτουργεί τόσο καλά.
Συγκεκριμένα, η εξοικονόμηση ενέργειες (power saving ή ACPI) φαίνεται να είναι προβληματική.
Και όταν χρησιμοποιούμε τον υπολογιστή με μπαταρία, η μπαταρία διαρκεί πολύ λίγο.

Ποια είναι η πηγή του προβλήματος;

Η πιο πιθανή πηγή του προβλήματος είναι το προβληματικό BIOS του υπολογιστή.
Στο BIOS υπάρχει περιγραφή του υλικού του υπολογιστή μας και οδηγίες για το πως να γίνει η εξοικονόμηση ενέργειες.
Και πολλές φορές το BIOS δεν έχει ελεγχθεί από τον κατασκευαστή αν δουλεύει με Linux.

Μπορούμε να δούμε το αρχείο καταγραφής dmesg (τρέχουμε dmesg από το τερματικό) για να διαπιστώσουμε
αν υπάρχουν μηνύματα όπου ο πυρήνας εντόπισε προβλήματα ACPI στο BIOS. Ρωτήστε παρακάτω για περισσότερα.

Ο άλλος τρόπος μελέτης του προβλήματος είναι με,

1. Η περιγραφή του υλικού του υπολογιστή μας και το πως το BIOS λέει να γίνεται η εξ. ενέργειας,
βρίσκεται σε αυτό που λέμε πίνακες DSDT (DSDT Tables).

2. Εγκαθιστούμε το μεταγλωττιστή DSDT με
Κώδικας: Επιλογή όλων
sudo apt-get install iasl


3. Εξάγουμε τους πίνακες DSDT με
Κώδικας: Επιλογή όλων
sudo cat /sys/firmware/acpi/tables/DSDT > /tmp/dsdt.dat

Το αρχείο /tmp/dsdt.dat έχει το κομμάτι του BIOS του υπολογιστή που είναι οι πίνακες DSDT, και είναι σε μορφή μεταγλωττισμένη (δυαδική - binary)

4. Κάνουμε την αντίστροφη μεταγλώττιση (decompiling) του dsdt.dat ώστε να παραχθεί ο πηγαίος κώδικας των πινάκων DSDT.
Κώδικας: Επιλογή όλων
cd /tmp
iasl -d /tmp/dsdt.dat


Το νέο αρχείο, dsdt.dsl, είναι ο πηγαίος κώδικας των πινάκων DSDT, και περιγράφει πως πρέπει να εξοικονομεί ενέργεια ο υπολογιστής μας.

5. Τώρα μεταγλωττίζουμε ξανά το dsdt.dsl για να διαπιστώσουμε αν μεταγλωττίζεται σωστά.
Κώδικας: Επιλογή όλων
cd /tmp
iasl -tc /tmp/dsdt.dsl

Εδώ βλέπουμε για σφάλματα. Αν έχετε προβλήματα με εξ. ενέργειες, και βλέπετε σφάλματα, μπορεί να σχετίζονται.

Παράδειγμα σφάλματος
Κώδικας: Επιλογή όλων
dsdt.dsl  1349:                     0x00000000,         // Length
Error    4122 -                              ^ Invalid combination of Length and Min/Max fixed flags

dsdt.dsl  1363:                     0x00000000,         // Length
Error    4122 -                              ^ Invalid combination of Length and Min/Max fixed flags

dsdt.dsl  3474:                                         Or (TMOR, TMPV)
Warning  1106 -     Result is not used, operator has no effect ^

ASL Input:  dsdt.dsl - 7536 lines, 235421 bytes, 2976 keywords
Compilation complete. 2 Errors, 1 Warnings, 0 Remarks, 17 Optimizations



Παράδειγμα κώδικα DSL (πηγαίος κώδικας του DSDT)
Κώδικας: Επιλογή όλων
...
                If (_OSI ("Linux"))
                {
                    Store (0x03E8, OSYS)
                }

                If (_OSI ("Windows 2006"))
                {
                    Store (0x07D6, OSYS)
                }

                If (_OSI ("Windows 2009"))
                {
                    Store (0x07D9, OSYS)
                }
...

Αυτό σημαίνει ότι εκτός από γενικά σφάλματα, υπάρχει και το ζήτημα να δίνονται τιμές στο BIOS για Linux που να μην έχουν δοκιμαστεί σωστά.

Υπάρχει μια περίπλοκη διαδικασία επίλυσης του προβλήματος, όπου ζητάμε να μάς φτιάξουν το DSDT
και μεταγλωττίζουμε τον πυρήνα Linux οι ίδιοι, και με ειδικό τρόπο φορτώνουμε το διορθωμένο DSDT κατά την εκκίνηση του υπολογιστή.
Δηλαδή, αντί το Linux να διαβάζει τους πίνακες DSDT από το BIOS, μπορούμε να επιλέξουμε να τους διαβάζει από αρχείο, το διορθωμένο DSDT.

Ως φόρουμ, με τον οδηγό αυτό, μπορείτε να δοκιμάσετε τις παραπάνω εντολές για να δείτε την κατάσταση που είναι το BIOS σας,
και να συζητήσουμε πόσο κρίσιμο είναι το πρόβλημα.
Για περισσότερα δείτε HOWTO Fix A Buggy DSDT File.
Αν δεν είστε σίγουροι για κάτι, ρωτήστε εδώ. Μερικές από τις ενέργειες (που δεν περιγράφουμε εδώ) μπορεί να δημιουργήσουν πρόβλημα στον υπολογιστή σας.
Τελευταία επεξεργασία από simosx και 29 Μάιος 2011, 16:43, έχει επεξεργασθεί 1 φορά/ες συνολικά
προσωπικό ιστολόγιο ϗ πλανήτης Ubuntu-gr
Συμβάλετε και εσείς στο ελληνικό βιβλίο Ubuntu!
1 Γνώσεις Linux: Πολύ καλό ┃ Προγραμματισμού: Πολύ καλό ┃ Αγγλικών: Πολύ καλό
2 Ubuntu 13.10 saucy 3.11.0-031100rc1-generic 64bit (el_GR.UTF-8, Unity ubuntu)
3 AMD E-450 APU with Radeon HD Graphics ‖ RAM 3555 MiB ‖ Sony Corporation VAIO
4 AMD nee ATI Wrestler [Radeon HD 6320] [1002:9806] {fglrx_pci}
5 eth0: Atheros Inc. AR8151 v2.0 Gigabit Ethernet [1969:1083] (rev c0) ⋮ wlan0: Atheros Inc. AR9285 [168c:002b] (rev 01)
Φτιάξτε και εσείς τη δική σας υπογραφή (παραπάνω κείμενο) αυτόματα με κλικ εδώ!
simosx
Επίτιμο μέλος
Επίτιμο μέλος
 
Δημοσιεύσεις: 10334
Εγγραφή: 11 Μάιος 2008, 18:52
Launchpad: simosx
IRC: simosx
Εκτύπωση

Re: Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-A

Δημοσίευσηαπό ftso » 23 Απρ 2011, 17:04

Παρα πολυ καλος!
Αρκετα συχνό το πρόβλημα.
Άβαταρ μέλους
ftso
Επίτιμο μέλος
Επίτιμο μέλος
 
Δημοσιεύσεις: 6409
Εγγραφή: 12 Μάιος 2008, 13:40
Τοποθεσία: Αθήνα
IRC: ftso
Εκτύπωση

Re: Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-A

Δημοσίευσηαπό headless » 23 Απρ 2011, 17:40

Πολύ σωστά και πολύ ενδιαφέροντα αυτά που σημειώνει ο simosx.
Να προσθέσω οτι:
Tα DSDT tables γινονται compile από τους OEMS με έναν εκ δύο compilers,έναν της Intel (καλό νέο) και έναν της microsoft (όχι και τόσο καλό).
Για να δούμε ποιόν από τους δύο έχουμε δίνουμε
Κώδικας: Επιλογή όλων
[headless:kerato][~]$ dmesg|grep DSDT
[    0.000000] ACPI: DSDT 00000000cff80440 0903D (v01  A1141 A1141001 00000001 INTL 20051117)


Όπως βλέπετε εδώ έχει χρησιμοποιηθεί αυτός της Intel,άρα μειώνεται η πιθανότητα προβλημάτων που σχετίζονται με το acpi.
Σε αντίθετη περίπτωση τα γράμματα INTL θα είχαν αντικατασταθεί από MSFT.

Να προσθέσω επίσης οτι εκτός από την λύση με τον compiler της Intel ( iasl ) μπορούμε να προχωρήσουμε βρίσκοντας κάποιο έτοιμο από το διαδίκτυο.
Υπάρχει μια database στο http://acpi.sourceforge.net/dsdt/ , δυστυχώς δεν είναι πολύ καλά maintained.

Όποιος ενδιαφέρεται να μάθει περισσότερα για αυτό το - ομολογουμένως εξαιρετικά ενδιαφέρον - θέμα,καλό θα ήταν να ρίξει μια ματιά στην αντίστοιχη σελίδα του Arch wiki.
https://wiki.archlinux.org/index.php/DSDT

Edit: το οτι χρησιμοποιήθηκε στο σύστημα μας ο INTEL compiler δεν σημαίνει βέβαια οτι δεν θα έχουμε errors.
Παράδειγμα:
Κώδικας: Επιλογή όλων
dsdt.dsl  8805:             Acquire (MUTE, 0x03E8)
Warning  1105 -                                 ^ Possible operator timeout is ignored

dsdt.dsl  9715:                     0x00000000,         // Length
Error    4122 -                              ^ Invalid combination of Length and Min/Max fixed flags

ASL Input:  dsdt.dsl - 9866 lines, 331012 bytes, 4432 keywords
Compilation complete. 2 Errors, 7 Warnings, 26 Remarks, 59 Optimizations


Επίσης σε περίπτωση που κάποιος το ψάχνει (δεν νομίζω αλλά λέμε τώρα) σε debian δεν υπάρχει /proc/acpi/dsdt
Πρέπει να ψάξουμε στο /sys/firmware/acpi/tables/DSDT
Γνώσεις ⇛ Linux: Καλές ┃ Προγραμματισμός: Μέτριος ┃ Αγγλικά: Καλά
Λειτουργικό: debian wheezy/sid 64-bit (en_US.utf8)
Προδιαγραφές ⇛ CPU: 2x Intel Core2 Duo CPU E8400 3.00GHz │ RAM 3965 MiB │ ASUS INC. P5QL/EPU
Κάρτα γραφικών: nVidia GF104 [GeForce GTX 460] [10de:0e22]
Δίκτυα: eth0: Realtek RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168]
My Blog
Άβαταρ μέλους
headless
powerTUX
powerTUX
 
Δημοσιεύσεις: 2173
Εγγραφή: 14 Μάιος 2008, 17:30
Τοποθεσία: Αθήνα
Launchpad: headl3ss
IRC: h3adl3ss
Εκτύπωση

Re: Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-A

Δημοσίευσηαπό mangelasakis » 29 Μάιος 2011, 02:26

δίνοντας την συγκεκριμένη εντολή
Κώδικας: Επιλογή όλων
sudo cat /proc/acpi/dsdt > /tmp/dsdt.dat

μου βγάζει no such file or directory. Κάνοντας search για το dsdt το βρήκα στο εξής location /sys/firmware/acpi/tables οπότε προχώρησα με βάση αυτή την εντολή
Κώδικας: Επιλογή όλων
sudo cat /sys/firmware/acpi/tables/DSDT > /tmp/dsdt.dat


Και το αποτέλεσμα είναι αυτό:
Κώδικας: Επιλογή όλων
gelasak@gelasak-VPCEB1J1E:/tmp$ iasl -tc /tmp/dsdt.dsl

Intel ACPI Component Architecture
ASL Optimizing Compiler version 20100528 [Oct 15 2010]
Copyright (c) 2000 - 2010 Intel Corporation
Supports ACPI Specification Revision 4.0a

Error    4069 - Could not open file "/tmp//tmp/dsdt.aml" (No such file or directory)

/tmp/dsdt.dsl  3758:                 If (LNotEqual (TBAB, Zero))
Error    4096 -                       ^ syntax error, unexpected PARSEOP_IF

/tmp/dsdt.dsl  3800:                 If (LNotEqual (TBAB, Zero))
Error    4096 -                       ^ syntax error, unexpected PARSEOP_IF

/tmp/dsdt.dsl  8336:         Scope, NotSerialized)
Error    4096 -                  ^ syntax error, unexpected PARSEOP_SCOPE, expecting $end

gelasak@gelasak-VPCEB1J1E:/tmp$


Τώρα τι κάνω για να διορθώσω τα σφάλματα?
Spoiler: show
Linux: 5ετής χρήση ┃ Προγραμ: μόνο C προς το παρών ┃ Αγγλικά: Μέτριος προς καλός
Desktop:
Ubuntu gnome 14.04 amd64 - Debian testing amd64
CPU: 4x AMD Phenom II X4 955 ‖ RAM 8000 MiB ‖ Gigabyte GA-MA785GT-UD3H
[Radeon HD 4200] Radeon HD 7750 ⎨1002:9710⎬
RTL8111/8168B PCI ⎨10ec:8168⎬ (rev 02)
Laptop:
Ubuntu gnome 14.04 amd64
4x Intel Core i3 M 330 2.13GHz ‖ RAM 3628 MiB ‖ Sony Corporation VPCEB1J1E
Intel VGA [8086:0046] (rev 02)
eth0: [11ab:4381] (rev 11) ⋮ wlan0: AR9285 [168c:002b] (rev 01)
mangelasakis
daemonTUX
daemonTUX
 
Δημοσιεύσεις: 1149
Εγγραφή: 10 Μαρ 2009, 06:08
Εκτύπωση

Re: Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-A

Δημοσίευσηαπό simosx » 29 Μάιος 2011, 16:48

mangelasakis έγραψε:Τώρα τι κάνω για να διορθώσω τα σφάλματα?


Δες την απάντηση του headless για να διαπιστώσεις ποιος μεταγλωττιστής χρησιμοποιήθηκε.

Στη δημοσίευση αναφέρω πως μπορείς να βρεις περισσότερες πληροφορίες στο ubuntuforums.org καθώς και άτομα που μπορούν να διαβάσουν το .dsl
και να το διορθώσουν.

Ακόμα, ανέφερε τι οδηγό για κάρτα γραφικών χρησιμοποιείς. Οδηγός στο viewtopic.php?f=9&t=18349
προσωπικό ιστολόγιο ϗ πλανήτης Ubuntu-gr
Συμβάλετε και εσείς στο ελληνικό βιβλίο Ubuntu!
1 Γνώσεις Linux: Πολύ καλό ┃ Προγραμματισμού: Πολύ καλό ┃ Αγγλικών: Πολύ καλό
2 Ubuntu 13.10 saucy 3.11.0-031100rc1-generic 64bit (el_GR.UTF-8, Unity ubuntu)
3 AMD E-450 APU with Radeon HD Graphics ‖ RAM 3555 MiB ‖ Sony Corporation VAIO
4 AMD nee ATI Wrestler [Radeon HD 6320] [1002:9806] {fglrx_pci}
5 eth0: Atheros Inc. AR8151 v2.0 Gigabit Ethernet [1969:1083] (rev c0) ⋮ wlan0: Atheros Inc. AR9285 [168c:002b] (rev 01)
Φτιάξτε και εσείς τη δική σας υπογραφή (παραπάνω κείμενο) αυτόματα με κλικ εδώ!
simosx
Επίτιμο μέλος
Επίτιμο μέλος
 
Δημοσιεύσεις: 10334
Εγγραφή: 11 Μάιος 2008, 18:52
Launchpad: simosx
IRC: simosx
Εκτύπωση

Re: Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-A

Δημοσίευσηαπό mangelasakis » 29 Μάιος 2011, 19:24

Ο μεταγλωτιστής είναι Intel το έλεγξα πριν το μεταγλωτίσω .
Spoiler: show
Linux: 5ετής χρήση ┃ Προγραμ: μόνο C προς το παρών ┃ Αγγλικά: Μέτριος προς καλός
Desktop:
Ubuntu gnome 14.04 amd64 - Debian testing amd64
CPU: 4x AMD Phenom II X4 955 ‖ RAM 8000 MiB ‖ Gigabyte GA-MA785GT-UD3H
[Radeon HD 4200] Radeon HD 7750 ⎨1002:9710⎬
RTL8111/8168B PCI ⎨10ec:8168⎬ (rev 02)
Laptop:
Ubuntu gnome 14.04 amd64
4x Intel Core i3 M 330 2.13GHz ‖ RAM 3628 MiB ‖ Sony Corporation VPCEB1J1E
Intel VGA [8086:0046] (rev 02)
eth0: [11ab:4381] (rev 11) ⋮ wlan0: AR9285 [168c:002b] (rev 01)
mangelasakis
daemonTUX
daemonTUX
 
Δημοσιεύσεις: 1149
Εγγραφή: 10 Μαρ 2009, 06:08
Εκτύπωση

Re: Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-A

Δημοσίευσηαπό pros » 29 Μάιος 2011, 19:31

mangelasakis έγραψε:Error 4069 - Could not open file "/tmp//tmp/dsdt.aml" (No such file or directory)

Εδώ είναι το πρόβλημα σου...
Στο βήμα 5 του οδηγού, για να ολοκληρωθεί η μεταγλώττιση, εκτέλεσε
Κώδικας: Επιλογή όλων
cd /tmp
iasl -tc dsdt.dsl
10.04 / 12.04 64bit
Άβαταρ μέλους
pros
Συντονιστής
Συντονιστής
 
Δημοσιεύσεις: 3534
Εγγραφή: 28 Ιαν 2009, 22:28
IRC: sterios
Εκτύπωση

Re: Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-A

Δημοσίευσηαπό mangelasakis » 30 Μάιος 2011, 01:35

pros έγραψε:
mangelasakis έγραψε:Error 4069 - Could not open file "/tmp//tmp/dsdt.aml" (No such file or directory)

Εδώ είναι το πρόβλημα σου...
Στο βήμα 5 του οδηγού, για να ολοκληρωθεί η μεταγλώττιση, εκτέλεσε
Κώδικας: Επιλογή όλων
cd /tmp
iasl -tc dsdt.dsl

Σας παραθέτω μόνο τις 2 τελευταίες γραμμες γιατί τα errors είνα 166 τόσα πολλά που δεν μου τα εμφανίζει όλα το τερματικό...
Κώδικας: Επιλογή όλων
ASL Input:  dsdt.dsl - 11757 lines, 374089 bytes, 3067 keywords
Compilation complete. 166 Errors, 0 Warnings, 31 Remarks, 863 Optimizations

Θα κάνω το τεστάκι και στον σταθερό να δω εκεί πέρα τι παίζει...
Spoiler: show
Linux: 5ετής χρήση ┃ Προγραμ: μόνο C προς το παρών ┃ Αγγλικά: Μέτριος προς καλός
Desktop:
Ubuntu gnome 14.04 amd64 - Debian testing amd64
CPU: 4x AMD Phenom II X4 955 ‖ RAM 8000 MiB ‖ Gigabyte GA-MA785GT-UD3H
[Radeon HD 4200] Radeon HD 7750 ⎨1002:9710⎬
RTL8111/8168B PCI ⎨10ec:8168⎬ (rev 02)
Laptop:
Ubuntu gnome 14.04 amd64
4x Intel Core i3 M 330 2.13GHz ‖ RAM 3628 MiB ‖ Sony Corporation VPCEB1J1E
Intel VGA [8086:0046] (rev 02)
eth0: [11ab:4381] (rev 11) ⋮ wlan0: AR9285 [168c:002b] (rev 01)
mangelasakis
daemonTUX
daemonTUX
 
Δημοσιεύσεις: 1149
Εγγραφή: 10 Μαρ 2009, 06:08
Εκτύπωση

Δημοσίευσηαπό GAKMAN » 05 Ιουν 2011, 01:19

Κάθε φόρα που βγάζω το καλώδιο του φορτιστή, επειδή φόρτισε η μπαταριά από το λαπτοπ. Από μόνο του κάνει αναστολή λειτουργίας και πρέπει μετά να πατήσω το power για αν επανέλθει και μου ζητάει να εισάγω τον κωδικό μου. Πως μπορώ να το αλλάξω και να μην μπαίνει σε αναστολή ;

έτρεξα την εντολή dmesg

Κώδικας: Επιλογή όλων
[14099.885198] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14100.885252] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14101.885275] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14106.864899] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14107.785440] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14108.785480] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14109.785507] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14110.083491] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14110.088942] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14110.091985] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14110.094801] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14110.785463] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14111.967550] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14112.885453] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14113.885641] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14114.885665] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14115.885827] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14117.520745] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14118.485791] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14119.485804] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14120.485677] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14121.485866] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14125.526107] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14126.486056] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14127.486049] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14128.486070] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14129.486075] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14135.833297] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14136.786401] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14137.786371] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14138.787930] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14139.786070] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14140.846102] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14140.848994] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14140.852088] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14140.855414] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14141.680462] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14142.587784] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14143.587367] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14144.587540] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14145.587557] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14147.719373] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14148.686704] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14150.686781] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14158.202946] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14159.187947] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14160.188507] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14161.187084] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14162.186987] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14166.041603] Associated successfully
[14166.041614] Using G rates
[14166.101983] Associated successfully
[14166.101994] Using G rates
[14166.141473] Associated successfully
[14166.141483] Using G rates
[14167.197619] CCMP: replay detected: STA=00:26:44:3c:af:9c previous PN 000000000000 received PN 000000000000
[14167.887280] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14168.887566] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14170.272358] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14171.187390] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14171.625349] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14171.628927] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14171.634033] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14171.636799] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14172.186722] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14173.187134] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14174.187481] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14175.733938] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14176.687264] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14177.687767] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14178.687628] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14179.688001] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14183.902799] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14184.887813] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14185.887853] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14186.887871] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14187.887892] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14189.715473] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14190.687538] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14191.688072] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14192.688085] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14193.688113] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14198.284406] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14199.187902] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14200.189413] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14201.188307] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14202.188358] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14202.368338] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14202.372206] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14202.378858] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14202.406306] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14205.162283] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14206.090485] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14207.089469] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14208.090538] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14209.089716] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14215.492601] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14216.488715] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14217.488809] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14218.488848] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14219.488757] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14222.600044] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14223.590784] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14224.592884] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14225.591523] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14226.591566] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14230.278260] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14231.190553] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14232.189227] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14233.049151] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14233.053498] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14233.056907] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14233.059779] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14233.189736] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14234.189309] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14237.301948] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14238.289399] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14239.289005] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14240.289209] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14241.289521] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14247.644742] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14248.591135] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14249.591742] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14250.590824] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14251.590767] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14259.084963] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14259.989633] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14260.991137] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14261.990196] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14262.990193] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14263.812430] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14263.827168] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14263.830272] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14263.834282] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14268.096512] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14269.091440] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14270.091558] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14271.091445] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14272.091665] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14286.024774] Associated successfully
[14286.024784] Using G rates
[14288.764304] Linking with THOMSON: channel is 1
[14290.784047] Linking with THOMSON: channel is 1
[14290.816287] Associated successfully
[14290.816298] Using G rates
[14290.908093] Associated successfully
[14290.908104] Using G rates
[14290.989935] Associated successfully
[14290.989946] Using G rates
[14291.993489] CCMP: replay detected: STA=00:26:44:3c:af:9c previous PN 000000000000 received PN 000000000000
[14292.993268] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14293.992146] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14294.504942] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14294.509508] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14294.512325] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14294.515128] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14294.991131] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14295.991166] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14297.422254] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14298.391224] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14299.391258] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14300.391127] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14301.391298] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14307.975429] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14308.891988] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14309.891549] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14310.891577] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14311.891613] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14321.200684] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14322.191929] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14323.191960] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14324.192031] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14325.170731] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14325.173497] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14325.176785] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14325.179446] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14325.192092] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14329.743231] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14330.692167] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14331.692211] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14332.692260] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14333.692265] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14335.245791] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14336.192285] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14337.192234] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14338.192386] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14339.192433] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14345.927633] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14346.892655] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14347.892674] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14348.892704] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14349.892736] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14351.776547] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14352.694217] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14353.692835] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14354.692860] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14355.692906] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14355.815387] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14355.818347] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14355.822349] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14355.826377] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14357.522028] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14358.492510] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14359.493027] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14360.493082] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14361.501384] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14368.193253] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14369.193292] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14370.193332] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14371.193913] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14373.151722] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14374.096370] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14375.094631] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14376.094655] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14377.095690] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14381.505876] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14382.494010] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14383.493705] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14384.493771] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14385.493769] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14386.487226] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14386.488411] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14386.491491] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14386.495954] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14389.826993] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14390.793928] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14391.793942] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14392.794142] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14393.795238] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14397.675332] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14398.595353] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14399.594815] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14400.595367] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14401.596609] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14409.071921] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14409.994647] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14410.994518] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14411.994525] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14412.994541] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14417.114186] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14417.120879] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14417.128314] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14417.131794] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14419.392873] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14420.294755] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14421.294813] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14422.294847] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14423.294903] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14424.436123] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14425.394936] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14426.394967] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14427.394985] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14428.395018] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14430.127988] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14431.096312] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14432.096267] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14433.096427] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14434.097427] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14435.727885] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14436.695246] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14437.695632] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14438.695250] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14439.696068] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14447.456122] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14447.838284] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14447.840768] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14447.844077] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14447.846799] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14448.395385] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14449.395619] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14450.395662] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14451.395683] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14462.676170] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14463.596797] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14464.597295] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14465.598377] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14466.597371] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14474.463773] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14475.396365] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14476.397071] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14477.396420] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14478.396406] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14478.544749] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14478.548532] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14478.551497] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14478.554925] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14485.186094] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14486.098875] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14487.097882] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14488.097988] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14489.099107] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14493.575095] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14494.496911] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14495.496941] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14496.497371] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14497.497017] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14500.955775] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14501.897233] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14502.897163] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14503.897183] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14504.897230] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14509.462174] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14509.465018] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14509.468138] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14509.473259] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14511.732854] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14512.697439] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14513.697395] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14514.697828] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14515.697534] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14522.683252] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14523.598986] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14526.040071] Associated successfully
[14526.040081] Using G rates
[14526.096025] Associated successfully
[14526.096035] Using G rates
[14526.207488] Associated successfully
[14526.207498] Using G rates
[14526.278502] Associated successfully
[14526.278511] Using G rates
[14526.335204] Associated successfully
[14526.335214] Using G rates
[14526.386083] Associated successfully
[14526.386093] Using G rates
[14528.448083] Linking with THOMSON: channel is 1
[14528.481481] Associated successfully
[14528.481492] Using G rates
[14528.554349] Associated successfully
[14528.554359] Using G rates
[14528.670621] Associated successfully
[14528.670632] Using G rates
[14528.805853] Associated successfully
[14528.805865] Using G rates
[14528.904081] Associated successfully
[14528.904093] Using G rates
[14531.436097] Linking with THOMSON: channel is 1
[14533.463293] Linking with THOMSON: channel is 1
[14533.487197] Associated successfully
[14533.487207] Using G rates
[14536.570885] Associated successfully
[14536.570896] Using G rates
[14539.717546] Associated successfully
[14539.717557] Using G rates
[14540.347866] CCMP: replay detected: STA=00:26:44:3c:af:9c previous PN 000000000000 received PN 000000000000
[14541.298207] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14542.298951] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14549.095931] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14549.998446] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14550.998464] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14551.998525] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14552.998525] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14555.600098] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14556.605489] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14557.604107] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14558.600921] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14559.602218] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14562.951381] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14563.899085] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14564.898889] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14565.898926] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14566.898962] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14570.357770] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14570.764103] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14570.767188] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14570.770402] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14570.773331] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14571.299085] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14572.299829] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14573.299151] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14574.299172] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14575.609779] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14576.600558] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14577.600586] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14578.601820] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14579.600679] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14588.812122] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14589.799623] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14590.799728] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14591.799667] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14592.799710] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14599.524426] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14600.499914] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14601.437273] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14601.441545] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14601.444445] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14601.448811] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14601.500522] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14602.499979] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14603.500550] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14607.587705] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14608.500740] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14609.500213] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14610.501174] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14611.501281] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14614.294096] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14615.200353] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14616.200394] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14617.201179] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14618.200449] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14621.943143] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14622.902063] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14623.901139] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14624.900650] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14625.902327] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14631.632398] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14632.034819] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14632.037442] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14632.040533] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14632.043478] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14632.602214] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14633.603122] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14634.604617] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14635.605134] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14639.451066] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14640.402264] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14641.401056] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14642.405187] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14643.401178] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[14645.976090] Associated successfully
[14645.976100] Using G rates
[14646.049311] Associated successfully
[14646.049321] Using G rates
[14648.324036] Linking with THOMSON: channel is 1
[14648.350648] Associated successfully
[14648.350658] Using G rates
[14648.431184] Associated successfully
[14648.431194] Using G rates
[14648.484044] Associated successfully
[14648.484054] Using G rates
[14649.532863] CCMP: replay detected: STA=00:26:44:3c:af:9c previous PN 000000000000 received PN 000000000000
[14747.415133] __ratelimit: 9 callbacks suppressed
[14747.415148] chromium-browse[3503]: segfault at 22 ip 5ac480b2 sp bf9a9e14 error 4 in libflashplayer.so[5a63f000+bc1000]
[14885.951557] Associated successfully
[14885.951568] Using G rates
[14886.042973] Associated successfully
[14886.042984] Using G rates
[14886.112092] Associated successfully
[14886.112102] Using G rates
[14886.177814] Associated successfully
[14886.177824] Using G rates
[14886.263296] Associated successfully
[14886.263306] Using G rates
[14886.303105] Associated successfully
[14886.303116] Using G rates
[14886.346045] Associated successfully
[14886.346056] Using G rates
[14888.384186] Linking with THOMSON: channel is 1
[14888.408564] Associated successfully
[14888.408574] Using G rates
[14889.638966] CCMP: replay detected: STA=00:26:44:3c:af:9c previous PN 000000000000 received PN 000000000000
[15160.993584] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15161.917539] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15163.916989] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15164.917638] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15167.328771] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15168.317721] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15169.317750] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15170.317776] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15171.317796] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15174.829933] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15175.817926] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15176.817867] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15177.817997] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15178.818029] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15182.318109] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15183.318141] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15183.962456] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15183.966434] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15183.969238] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15184.318160] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15185.318213] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15187.183393] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15188.119420] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15189.119358] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15190.120495] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15191.119526] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15192.448435] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15193.418455] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15194.418418] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15195.418625] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15196.418528] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15197.439256] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15198.418617] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15199.418465] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15200.418642] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15201.418634] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15204.338561] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15205.318793] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15206.318829] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15207.318708] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15208.318903] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15212.175158] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15213.119963] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15214.122187] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15214.631945] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15214.636403] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15214.641633] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15214.645085] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15215.120722] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15216.120297] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15217.694157] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15218.620264] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15219.621390] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15220.620404] TKIP: ICV error detected: STA=00:26:44:3c:af:9c
[15221.620449] TKIP: ICV error detected: STA=00:26:44:3c:af:9c

1 Γνώσεις → Linux: � ┃ Προγραμματισμός: � ┃ Αγγλικά: �
2 Λειτουργικό → Ubuntu 10.04 lucid 32-bit (el_GR.UTF-8)
3 Προδιαγραφές → 2x Intel Atom CPU N270 1.60GHz ‖ RAM 2002 MiB ‖ DIXONSXP Advent 4211
4 Κάρτες γραφικών: Intel Mobile 945GME Express Integrated Graphics Controller [8086:27ae] (rev 03)
5 Δίκτυα: eth0: Realtek RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 02) ⋮ wlan0: Realtek RTL8187SE Wireless LAN Controller [10ec:8199] (rev 22)
GAKMAN
babeTUX
babeTUX
 
Δημοσιεύσεις: 5
Εγγραφή: 05 Ιουν 2011, 00:12
Εκτύπωση

Re: Πως αντιμετωπίζουμε προβλήματα εξοικονόμησης ενέργειας-A

Δημοσίευσηαπό evolgen » 08 Ιουν 2011, 13:04

Ακολούθησα τον οδηγό και πνίγηκα στα errors. :P :P

Κώδικας: Επιλογή όλων
Maximum error count (200) exceeded
ASL Input:  dsdt.dsl - 10083 lines, 328612 bytes, 3906 keywords
Compilation complete. 201 Errors, 0 Warnings, 0 Remarks, 1085 Optimizations


Και τώρα στο ubuntuforums... :?
Το να μειώνεις ένα έργο ελεύθερου λογισμικού, επειδή θεωρείς το δικό σου καλύτερο,
είναι απαράδεκτη συμπεριφορά και δε συμβαδίζει με τις αρχές του ελεύθερου λογισμικού.

Γνώσεις Linux: Μέτριο++ ┃ Προγραμματισμός: Perl, R, Python, SQL, C, Common Lisp, BashΑγγλικά: Άριστα

1. Ubuntu 14.04 trusty
2. Intel Core i7-3520M CPU @ 2.90GHz ‖ RAM 7892 MiB
3. Intel 3rd Gen Core processor Graphics Controller [8086:0166] {i915}
4. eth0: Broadcom NetXtreme BCM57765 Gigabit Ethernet PCIe [14e4:16b4] (rev 10) ⋮ eth1: Broadcom BCM4331 802.11a/b/g/n [14e4:4331] (rev 02)
Άβαταρ μέλους
evolgen
daemonTUX
daemonTUX
 
Δημοσιεύσεις: 1031
Εγγραφή: 28 Ιούλ 2010, 14:22
Τοποθεσία: UK
IRC: bioevolgenec
Εκτύπωση

Επόμενο

Επιστροφή στο Οδηγοί - How to - Tutorials

cron