Swisslinux.org

− Le carrefour GNU/Linux en Suisse −

 

Langue

 

Le Forum

Vous n'êtes pas identifié.

#1 01 Apr 2013 23:43:36

shokin
Humain(e) libre
Date d'inscription: 13 Mar 2011
Messages: 38

Où trouver une carte réseau libre ?

Salut à toutes et à tous,

Je me suis récemment acheté un ordinateur portable, avec Windows 8 installé.

Sauf que :

- il ne détecte aucun réseau, contrairement aux ordinateurs avoisinants,
- la touche F6 ne désactive pas le pavé tactile.

Comment alors faire en sorte qu'il détecte les connexions ? D'où vient le fait qu'il ne les détecte pas ?

Comment désactiver le pavé tactile autrement ?

L'ordinateur portable a les caractéristiques suivantes, sorti tout frais du magasin (avec Windows 8 immédiatement remplacé) :

- Acer Aspire E1-571
- IntelR Core TM i5-3210M 2.5 GHz with Turbo Boost up to 3.1 GHz
- IntelR HD Graphics 4000,
- 15.6 HD LED (LCD),
- 8 GB DDR3 Memory
- 500 GB HDD
- DVD-Super Multi DL drive
- Acer Nplify TM 802.11b/g/n
- 6-cell Li-ion battery

Une des réponses fut :

C'est bien ce que je soupçonnais. Le problème est que ta carte réseau sans-fil, une Intel Centrino, nécessite un firmware privateur que Trisquel ne fournit pas. J'étais exactement dans le même cas de figure avec mon netbook Acer Aspire One.

Il n'y a pas 36 solutions si tu veux rester sous Trisquel :
- soit tu remplaces ta carte par une carte supportée par un OS 100% libre (exemple: https://www.thinkpenguin.com/gnu-linux/ … -pcie-card)
- soit tu achètes un adapteur USB (exemple: https://www.thinkpenguin.com/gnu-linux/ … sb-adapter)

Dans le premier cas, tu devras trouver comment "désosser" ton portable pour accéder à la carte. C'est parfois trivial, parfois un peu plus difficile (il y a souvent des tutoriels/démonstrations sur YouTube).

Dans le deuxième cas, c'est plug'n'play !

J'ai personnellement opté pour la première solution, et ça m'a coûté des clopinettes sur eBay.

Qu'en pensez-vous ?

Je n'ai jamais démonté un ordinateur portable, tout au plus enlevé la batterie. Mais cet épisode supplémentaire m'incite encore plus :

- à apprendre à démonter un ordinateur portable, du moins les composants principaux (et à les reconnaître) : disque dur interne, carte réseau, carte son, etc.,
- à chercher des ordinateurs portables faits de matériel libre,
- à chercher des ordinateurs portables sans OS,
- à apprendre le hardware (libre, autant que possible).

Et à quitter ce maudit marché. lol

Questions :

- Comment résoudre le problème ? Savez-vous où en Suisse je peux acheter une carte réseau compatible avec les systèmes d'exploitation libres ?
- Connaissez-vous des tutoriels (ou des cours) qui aident à apprendre à démonter et reconnaître les composants principaux de l'ordinateur portable ? et à connaître ce qu'il ne faut surtout pas faire (par exemple toucher à tel composant, tel endroit) lors du démontage ?
- Si je trouve un ordinateur sans OS, suffit-il d'appuyer sur F2 lors du démarrage et après avoir inséré le DVD-ISO ?
- Est-il possible de faire en sorte qu'un ordinateur avec un OS (ou plusieurs) installé dessus devienne un ordinateur sans OS ? Si oui, comment ?

Ces derniers temps, j'ai pris l'habitude de remplacer le système d'exploitation pré-installé (Windows7/8) et de le remplacer purement et simplement (une seule partition) par un OS libre (Linux Mint 13, puis Trisquel 6.0 actuellement).

- S'il y a des cours/animation en Suisse romande (ou des tutoriels pdf) concernant les composants et le démontage de l'ordinateur portable, je suis preneur. [Sans forcément devoir faire une formation d'informaticien.]

Mais bon, ce n'est pas si urgent, mais je dois quand même résoudre ce problème de connexion, sans quoi je ne pourrai pas installer grand chose (à partir du Synaptic Manager par exemple).

Dernière modification par shokin (01 Apr 2013 23:48:35)


Nous sommes libres. Wir sind frei. We are free. Somos libres. Siamo liberi.

Hors ligne

 

#2 02 Apr 2013 11:03:06

Eggman
Admin
Lieu: Grand-Lancy(GE)
Date d'inscription: 17 Nov 2004
Messages: 1133
Site web

Re: Où trouver une carte réseau libre ?

Dans le plus grand désordre :

F2 au démarrage pour booter sur un périphérique de son choix :
Ça dépends du BIOS/Firmware du laptop. Normalement c'est indiqué dans la doc livrée avec la machine.

F6 ou plutôt fn+F6 pour activer-déactiver le touchpad :
Ça ne marche pas toujours. Personnellement, j'ai fait un petit script bash qui fait ça très bien et que j'ai assigné à la combinaison de touche idoine.
C'est pour XFCE et mon laptop, à adapter donc :

Code:

#! /bin/bash
# Small and dumb utility to toggle Synaptics touchpads.

T=`xfconf-query -c pointers -p /SynPS2_Synaptics_TouchPad/Properties/Device_Enabled`
if [ $T == 1 ]; then
    xfconf-query -c pointers -p /SynPS2_Synaptics_TouchPad/Properties/Device_Enabled -s 0
elif [ $T == 0 ]; then
    xfconf-query -c pointers -p /SynPS2_Synaptics_TouchPad/Properties/Device_Enabled -s 1
fi

Concernant le matériel, je suis en train de chercher actuellement, histoire de rester à la page, des laptops sans OS. La seule solution que j'ai actuellement, c'est clevo :
http://www.clevo-europe.com
http://www.clevo.fr/shop/index.php

Pour du hardware très spécifique, ou au détail, je testerais des magasins spécialisés, genre distrelec, a priori, ou pour du un peu moins spécifique, digitec ou si tu es sur Genève Prodimex
Si par contre tu cherches une simple carte ExpressCard, il faut prendre ton courage à deux mains te documenter et faire le tour des magasins.

Pour le reste, je ne saurai te renseigner.

[EDIT]
J'oubliais, il faut se méfier des cartes réseau mini-pci dans les laptops : il est parfois impossible d'en utiliser d'autres que celle prévue par le fabricant, leur indentificateur étant en dur dans le BIOS/frimware.


"It always takes longer than you expect, even when you take into account Hofstadter's Law."
Douglas Hofstadter, Gödel, Escher, Bach: An Eternal Golden Braid

Hors ligne

 

#3 02 Apr 2013 14:21:59

shokin
Humain(e) libre
Date d'inscription: 13 Mar 2011
Messages: 38

Re: Où trouver une carte réseau libre ?

Salut, Eggman,

Merci pour ta réponse. Pour les touches et combinaisons de touches, je regarderai plus tard.

Concernant la carte réseau, je vais demander à informalys.com (à Bulle) s'ils peuvent observer voire modifier la carte réseau. Je n'ai encore jamais démonté d'ordinateur portable, mais cette "aventure" (les problèmes informatiques se suivent et ne se ressemblent pas lol ) m'incite encore plus à :

- acheter un ordinateur portable sans OS lors d'éventuels prochains achats à l'avenir*,
- apprendre à démonter un ordinateur portable et y identifier, remplacer les composants principaux (disque dur, cartes, etc.).

(* d'autant plus que je viens de découvrir le site racketiciel...)

Si des cours de démontage d'ordinateurs portables existent (sans forcément devoir faire une formation à plein temps de trois ans ou plus en informatique) en Suisse romande, je suis preneur. Pour le moment, je ne me suis que mis au software, pas au hardware. Peut-être que Gull pourra aussi me renseigner.

Pour l'achat d'ordinateur portable, je viens de découvrir ldlc.ch, où l'on peut acheter des laptops sans OS à l'achat, et pas chers ! Je saurai où commander les prochaines fois.


Nous sommes libres. Wir sind frei. We are free. Somos libres. Siamo liberi.

Hors ligne

 

#4 02 Apr 2013 14:45:56

OdyX
Alumni (ex-membre)
Lieu: Vevey
Date d'inscription: 06 Jun 2006
Messages: 490
Site web

Re: Où trouver une carte réseau libre ?

Perso, j'installerais un firmware. cool

Hors ligne

 

#5 02 Apr 2013 15:14:21

fbianco
Membre du comité
Lieu: Suisse
Date d'inscription: 04 Feb 2005
Messages: 1455
Site web

Re: Où trouver une carte réseau libre ?

Yep, j'ai une carte du genre et avec le firmware j'ai du wifi...

Code:

/lib/firmware/iwlwifi-4965-2.ucode

http://wiki.debian.org/iwlwifi


Utilisateur de Debian GNU/Linux, le système d'exploitation universel !

www : https://skadi.ch

Hors ligne

 

#6 03 Apr 2013 11:46:01

shokin
Humain(e) libre
Date d'inscription: 13 Mar 2011
Messages: 38

Re: Où trouver une carte réseau libre ?

Il va falloir que vous m'expliquiez un peu. Je sais à peine ce qu'est un firmware ou un pilote.

Comment l'installer sur un ordinateur qui ne détecte pas les connexions ? Par l'intermédiaire d'un fichier ou paquet téléchargé à partir d'un autre ordinateur connecté puis transmis par un disque dur ?


Nous sommes libres. Wir sind frei. We are free. Somos libres. Siamo liberi.

Hors ligne

 

#7 03 Apr 2013 12:08:14

Lixette
Admin
Lieu: Grand-Lancy (GE)
Date d'inscription: 16 Jul 2006
Messages: 414

Re: Où trouver une carte réseau libre ?

Hello!

Pour les questions techniques, je ne pourrai malheureusement pas t'aider.
Quelques infos toutefois :

Le samedi 27 avril il y aura une grande manifestation autour du Libre à Genève Fêtons Linux. C'est pour le grand public, mais il y aura une forte concentration de geek, des ateliers d'électroniques et une install party; ça ne m'étonnerait pas que quelqu'un y ait la réponse à ton problème.

Pour le démontage d'ordinateurs (ou autre), je te conseillerais de te rapprocher d'un hackerspace (Post Tenebras Lab sur Genève, FixMe sur Lausanne, je pense que le FabLab de Neuchatel peut aussi t'aider – portes ouvertes le 20 avril).
Pour les cours, le Gull en propose de temps à autre de très intéressants pour les débutants (mais je ne crois pas qu'ils aient des cours sur le hardware).

Voilà un début de réponse, au moins pour rencontrer des gens qui puissent t'aiguiller!

Hors ligne

 

#8 03 Apr 2013 12:32:14

sebseb01
Président de Swisslinux.org
Date d'inscription: 25 Apr 2007
Messages: 417

Re: Où trouver une carte réseau libre ?

shokin a écrit:

Il va falloir que vous m'expliquiez un peu. Je sais à peine ce qu'est un firmware ou un pilote.

Comment l'installer sur un ordinateur qui ne détecte pas les connexions ? Par l'intermédiaire d'un fichier ou paquet téléchargé à partir d'un autre ordinateur connecté puis transmis par un disque dur ?

Le firmware, et un "logiciel" qui va fonctionner sur le matériel (dans ce cas dans la carte wifi)
Un pilote lui s'occupe de faire le lien entre ton système (kernel) et le matériel.

La plus part du temps le firmware est "gravé" sur le matériel, mais parfois (comme ici), le firmware fournis par le fabriquant doit être "envoyé" par le système.

Malheureusement, dans 99% des cas, le contenu de ce firmware n'est pas libre (et est juste fournis par le fabricant). Et n'est donc pas inclus dans les distributions 100% libre (tel que Debian ou Trisquel)

Avec les 2 commandes si dessous, tu va pouvoir trouver le modèle de ta carte wifi et donc le firmware qui manque.

Le kernel doit te signifier quel firmware te manque :

Code:

dmesg | grep firmware

Si non, en regardant dans la liste des périphérique, tu peut retrouver le modèle et google t'indiquera le bon firmware

Code:

lspci | grep Network

Debian à dans son dépôt "nonfree", une grande partie des firmware. Ils sont très probablement compatible avec trisquel.

--
Pour l'installer le packet sur ton ordinateur, soit tu le télécharge depuis un autre ordinateur et tu le copie via un support de stockage.
si non, il est probable que la carte réseau ethernet (RJ45) fonctionne.

Hors ligne

 

#9 04 Apr 2013 17:04:31

shokin
Humain(e) libre
Date d'inscription: 13 Mar 2011
Messages: 38

Re: Où trouver une carte réseau libre ?

Merci pour vos réponses.

Le Fêtons Linux de Genève m'intéresse. En plus, il est très proche de la gare. Mais j'ai un match d'échecs (Genève-Fribourg) en même temps à Vernier. tongue Si je gagne ma partie assez tôt, je viens juste après. N'y a-t-il rien le matin ? lol

Le FabLab de Neuchâtel attire aussi mon attention. En plus, Neuchâtel est proche de Fribourg. Mais ça tombe quand je donne un cours de mathématique. N'y a-t-il rien l'après-midi ? lol

Pour les commandes, on m'avait dit justement lspci. Voilà ce que ça donne :

Code:

asfree@asfree:~$ lspci
00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation HM77 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
02:00.0 Ethernet controller: Broadcom Corporation NetLink BCM57785 Gigabit Ethernet PCIe (rev 10)
02:00.1 SD Host controller: Broadcom Corporation NetXtreme BCM57765 Memory Card Reader (rev 10)
02:00.2 System peripheral: Broadcom Corporation Device 16be (rev 10)
02:00.3 System peripheral: Broadcom Corporation Device 16bf (rev 10)
03:00.0 Network controller: Intel Corporation Centrino Wireless-N 105 (rev c4)

J'essaierai le dmesg.

Quand je copie un paquet sur l'ordinateur portable sans connexion, y a-t-il un dossier/endroit particulier où je dois le copier ? Suffit-il de le copier pour ensuite le trouver avec Synaptic Manager ? Je n'ai jamais installé de logiciels que je ne trouvais pas dans le Synaptic Manager. Je ne maîtrise pas encore l'installation et la désinstallation de paquets (via le terminal ou non).


Nous sommes libres. Wir sind frei. We are free. Somos libres. Siamo liberi.

Hors ligne

 

#10 04 Apr 2013 17:26:13

sebseb01
Président de Swisslinux.org
Date d'inscription: 25 Apr 2007
Messages: 417

Re: Où trouver une carte réseau libre ?

Donc ta carte est une "Intel Corporation Centrino Wireless-N 105" et est donc supporté par iwlwifi !
tu peut donc trouver le packet debian : firmware-iwlwifi

l'application "gdebi" qui est installé avec le système de base sur beaucoup de distribution, permet d'installer un packet sans passé par la ligne de commande (si ce n'est pas le cas installe le avec synaptic)

Pour info, la commande pour installer un paket est :

Code:

sudo dpkg -i /chemin/vers/le/fichier.deb

Hors ligne

 

#11 06 Apr 2013 14:51:22

shokin
Humain(e) libre
Date d'inscription: 13 Mar 2011
Messages: 38

Re: Où trouver une carte réseau libre ?

Problèmes résolus :

- J'ai ouvert l'ordinateur (dévissé) et remplacé la carte réseau par une autre carte réseau d'un ancien ordinateur.
- La combinaison Fn+F3 (commutateur pour (dés)activer le wireless) fonctionne, mais avec un battement de 3-5 secondes.

Les prochaines fois, je n'achèterai pas d'ordinateur dans les magasins. Plus le propriétaire me met des bâtons dans les roues, plus je pense au libre dans la rue. Le propriétaire joue parfaitement le rôle du bouc émissaire dans mon esprit.  :twisted:


Nous sommes libres. Wir sind frei. We are free. Somos libres. Siamo liberi.

Hors ligne

 

#12 06 Apr 2013 14:59:04

shokin
Humain(e) libre
Date d'inscription: 13 Mar 2011
Messages: 38

Re: Où trouver une carte réseau libre ?

Le dmesg - mais que signifie-t-il avec tous ces updatings ? - est bien long ; je n'arrive même pas tout en haut :

Code:

[   13.449877] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   13.449879] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449880] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   13.449882] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449883] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   13.449885] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449886] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   13.449888] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449889] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   13.449891] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449892] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   13.449894] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449895] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   13.449897] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449898] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   13.449900] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449902] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   13.449903] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   13.449905] cfg80211: Disabling freq 2484 MHz as custom regd has no rule that fits a 20 MHz wide channel
[   13.452897] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[   13.469722] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[   13.470127] Registered led device: ath9k-phy0
[   13.470134] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc900058a0000, irq=17
[   13.741322] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.5, id: 0x1e0b1, caps: 0xd00073/0x240000/0xa0400
[   13.815480] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input11
[   14.231532] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   14.264747] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[   14.265053] SGI XFS Quota Management subsystem
[   14.346712] XFS (sda6): Mounting Filesystem
[   14.546838] XFS (sda6): Ending clean mount
[   15.038607] init: failsafe main process (868) killed by TERM signal
[   15.192317] Bluetooth: Core ver 2.16
[   15.192333] NET: Registered protocol family 31
[   15.192335] Bluetooth: HCI device and connection manager initialized
[   15.192337] Bluetooth: HCI socket layer initialized
[   15.192339] Bluetooth: L2CAP socket layer initialized
[   15.192343] Bluetooth: SCO socket layer initialized
[   15.194076] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   15.194079] Bluetooth: BNEP filters: protocol multicast
[   15.194880] Bluetooth: RFCOMM TTY layer initialized
[   15.194887] Bluetooth: RFCOMM socket layer initialized
[   15.194889] Bluetooth: RFCOMM ver 1.11
[   15.221369] type=1400 audit(1365242911.394:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=964 comm="apparmor_parser"
[   15.221752] type=1400 audit(1365242911.394:6): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=964 comm="apparmor_parser"
[   15.221842] type=1400 audit(1365242911.394:7): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=961 comm="apparmor_parser"
[   15.222171] type=1400 audit(1365242911.394:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=961 comm="apparmor_parser"
[   15.222361] type=1400 audit(1365242911.394:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=961 comm="apparmor_parser"
[   15.228161] type=1400 audit(1365242911.402:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=963 comm="apparmor_parser"
[   15.231093] type=1400 audit(1365242911.406:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince//launchpad_integration" pid=963 comm="apparmor_parser"
[   15.237244] ppdev: user-space parallel port driver
[   15.560671] tg3 0000:02:00.0: irq 44 for MSI/MSI-X
[   15.560676] tg3 0000:02:00.0: irq 45 for MSI/MSI-X
[   15.560679] tg3 0000:02:00.0: irq 46 for MSI/MSI-X
[   15.560682] tg3 0000:02:00.0: irq 47 for MSI/MSI-X
[   15.560684] tg3 0000:02:00.0: irq 48 for MSI/MSI-X
[   16.130687] usb 2-1.1: new high-speed USB device number 3 using ehci_hcd
[   16.131143] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   16.131774] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   16.183122] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   16.183286] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   16.340447] cdc_ether 2-1.1:1.8: wwan0: register 'cdc_ether' at usb-0000:00:1d.0-1.1, Mobile Broadband Network Device, 02:80:37:ec:02:00
[   16.340601] usbcore: registered new interface driver cdc_ether
[   16.352053] cdc_wdm 2-1.1:1.7: cdc-wdm0: USB WDM device
[   16.352111] cdc_acm 2-1.1:1.1: ttyACM0: USB ACM device
[   16.352134] usbcore: registered new interface driver cdc_wdm
[   16.358588] cdc_acm 2-1.1:1.3: ttyACM1: USB ACM device
[   16.374569] usbcore: registered new interface driver cdc_acm
[   16.374571] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   18.159090] cfg80211: Found new beacon on frequency: 2472 MHz (Ch 13) on phy0
[   19.259342] wlan0: authenticate with 00:23:eb:27:14:e0 (try 1)
[   19.260939] wlan0: authenticated
[   19.286996] wlan0: associate with 00:23:eb:27:14:e0 (try 1)
[   19.289789] wlan0: RX AssocResp from 00:23:eb:27:14:e0 (capab=0x421 status=0 aid=86)
[   19.289792] wlan0: associated
[   19.290545] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   19.290610] cfg80211: Calling CRDA for country: CH
[   19.293713] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   19.293716] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293718] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   19.293719] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293721] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   19.293722] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293723] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   19.293725] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293726] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   19.293728] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293729] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   19.293730] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293732] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   19.293733] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293734] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   19.293736] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293737] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   19.293739] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293740] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   19.293741] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293743] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   19.293744] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293745] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   19.293747] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293748] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   19.293750] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   19.293751] cfg80211: Disabling freq 2484 MHz
[   19.293754] cfg80211: Regulatory domain changed to country: CH
[   19.293755] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   19.293756] cfg80211:     (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   19.293757] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   19.293759] cfg80211:     (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   19.293760] cfg80211:     (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[   29.827475] wlan0: no IPv6 routers present
[   32.131437] usb 2-1.3: new high-speed USB device number 4 using ehci_hcd
[   32.363683] Initializing USB Mass Storage driver...
[   32.363798] scsi6 : usb-storage 2-1.3:1.0
[   32.363861] usbcore: registered new interface driver usb-storage
[   32.363863] USB Mass Storage support registered.
[   34.175569] usb 2-1.2: new low-speed USB device number 5 using ehci_hcd
[   34.301737] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input12
[   34.301944] generic-usb 0003:046D:C05A.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.2/input0
[   34.301965] usbcore: registered new interface driver usbhid
[   34.301966] usbhid: USB HID core driver
[   34.805406] scsi 6:0:0:0: Direct-Access     SAMSUNG  HN-M101MBB       2AR1 PQ: 0 ANSI: 5
[   34.806432] sd 6:0:0:0: Attached scsi generic sg2 type 0
[   34.807045] sd 6:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   34.807914] sd 6:0:0:0: [sdb] Write Protect is off
[   34.807917] sd 6:0:0:0: [sdb] Mode Sense: 23 00 00 00
[   34.808671] sd 6:0:0:0: [sdb] No Caching mode page present
[   34.808676] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[   34.810972] sd 6:0:0:0: [sdb] No Caching mode page present
[   34.810975] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[   34.833959]  sdb: sdb1
[   34.837049] sd 6:0:0:0: [sdb] No Caching mode page present
[   34.837052] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[   34.837054] sd 6:0:0:0: [sdb] Attached SCSI disk
[   38.942629] cfg80211: Found new beacon on frequency: 2472 MHz (Ch 13) on phy0
[  109.610038] usb 2-1.1: USB disconnect, device number 3
[  109.613886] cdc_ether 2-1.1:1.8: wwan0: unregister 'cdc_ether' usb-0000:00:1d.0-1.1, Mobile Broadband Network Device
[  121.818779] usb 2-1.1: new high-speed USB device number 6 using ehci_hcd
[  121.912874] scsi7 : usb-storage 2-1.1:1.0
[  122.909507] scsi 7:0:0:0: Direct-Access     WD       My Passport 0740 1003 PQ: 0 ANSI: 6
[  122.910099] scsi 7:0:0:1: Enclosure         WD       SES Device       1003 PQ: 0 ANSI: 6
[  122.911656] sd 7:0:0:0: Attached scsi generic sg3 type 0
[  122.912052] scsi 7:0:0:1: Attached scsi generic sg4 type 13
[  122.916682] sd 7:0:0:0: [sdc] Spinning up disk....ready
[  131.154040] sd 7:0:0:0: [sdc] 1953458176 512-byte logical blocks: (1.00 TB/931 GiB)
[  131.155013] sd 7:0:0:0: [sdc] Write Protect is off
[  131.155021] sd 7:0:0:0: [sdc] Mode Sense: 47 00 10 08
[  131.155890] sd 7:0:0:0: [sdc] No Caching mode page present
[  131.155896] sd 7:0:0:0: [sdc] Assuming drive cache: write through
[  131.159114] sd 7:0:0:0: [sdc] No Caching mode page present
[  131.159121] sd 7:0:0:0: [sdc] Assuming drive cache: write through
[  131.167158]  sdc: sdc1
[  131.169938] sd 7:0:0:0: [sdc] No Caching mode page present
[  131.169945] sd 7:0:0:0: [sdc] Assuming drive cache: write through
[  131.169949] sd 7:0:0:0: [sdc] Attached SCSI disk
[  131.238113] ses 7:0:0:1: Attached Enclosure device
[  147.900573] tg3 0000:02:00.0: PME# enabled
[  147.900584] tg3 0000:02:00.0: wake-up capability enabled by ACPI
[  148.172258] wlan0: deauthenticating from 00:23:eb:27:14:e0 by local choice (reason=3)
[  148.202858] cfg80211: All devices are disconnected, going to restore regulatory settings
[  148.202867] cfg80211: Restoring regulatory settings
[  148.202874] cfg80211: Calling CRDA to update world regulatory domain
[  148.207721] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[  148.207724] cfg80211: World regulatory domain updated:
[  148.207726] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[  148.207728] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[  148.207731] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[  148.207733] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[  148.207735] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[  148.207737] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[  149.564545] init: anacron main process (1042) killed by TERM signal
[  150.060468] PM: Syncing filesystems ... done.
[  150.104271] PM: Preparing system for mem sleep
[  150.552747] Freezing user space processes ... (elapsed 0.01 seconds) done.
[  150.568520] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[  150.584496] PM: Entering mem sleep
[  150.584546] Suspending console(s) (use no_console_suspend to debug)
[  150.584846] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[  150.585111] sd 0:0:0:0: [sda] Stopping disk
[  150.666200] sdhci-pci 0000:02:00.1: PCI INT B disabled
[  150.680314] ehci_hcd 0000:00:1d.0: PCI INT A disabled
[  150.692258] ehci_hcd 0000:00:1a.0: PCI INT A disabled
[  150.962466] PM: suspend of drv:sd dev:0:0:0:0 complete after 378.329 msecs
[  150.962481] PM: suspend of drv:scsi dev:target0:0:0 complete after 378.352 msecs
[  150.962513] PM: suspend of drv:scsi dev:host0 complete after 298.334 msecs
[  150.991697] PM: suspend of drv:ahci dev:0000:00:1f.2 complete after 327.398 msecs
[  151.027878] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[  151.043598] PM: suspend of drv:snd_hda_intel dev:0000:00:1b.0 complete after 379.063 msecs
[  151.043640] PM: suspend of drv: dev:pci0000:00 complete after 377.661 msecs
[  151.043663] PM: suspend of devices complete after 459.888 msecs
[  151.043665] PM: suspend devices took 0.460 seconds
[  151.059857] ehci_hcd 0000:00:1d.0: PME# enabled
[  151.059892] ehci_hcd 0000:00:1d.0: wake-up capability enabled by ACPI
[  151.075583] ehci_hcd 0000:00:1a.0: PME# enabled
[  151.075619] ehci_hcd 0000:00:1a.0: wake-up capability enabled by ACPI
[  151.107508] PM: late suspend of devices complete after 63.957 msecs
[  151.107676] ACPI: Preparing to enter system sleep state S3
[  151.115528] PM: Saving platform NVS memory
[  151.118116] Disabling non-boot CPUs ...
[  151.119835] CPU 1 is now offline
[  151.223240] CPU 2 is now offline
[  151.327050] CPU 3 is now offline
[  151.327640] ACPI: Low-level resume complete
[  151.327684] PM: Restoring platform NVS memory
[  151.328134] Enabling non-boot CPUs ...
[  151.328221] Booting Node 0 Processor 1 APIC 0x1
[  151.328222] smpboot cpu 1: start_ip = 98000
[  151.355790] Calibrating delay loop (skipped) already calibrated this CPU
[  151.376372] NMI watchdog enabled, takes one hw-pmu counter.
[  151.376605] CPU1 is up
[  151.376672] Booting Node 0 Processor 2 APIC 0x2
[  151.376673] smpboot cpu 2: start_ip = 98000
[  151.387586] Calibrating delay loop (skipped) already calibrated this CPU
[  151.408237] NMI watchdog enabled, takes one hw-pmu counter.
[  151.408505] CPU2 is up
[  151.408607] Booting Node 0 Processor 3 APIC 0x3
[  151.408609] smpboot cpu 3: start_ip = 98000
[  151.419612] Calibrating delay loop (skipped) already calibrated this CPU
[  151.440383] NMI watchdog enabled, takes one hw-pmu counter.
[  151.440671] CPU3 is up
[  151.443957] ACPI: Waking up from system sleep state S3
[  151.445925] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[  151.445990] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900006, writing 0x2900002)
[  151.446016] ehci_hcd 0000:00:1a.0: wake-up capability disabled by ACPI
[  151.446021] ehci_hcd 0000:00:1a.0: PME# disabled
[  151.446047] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
[  151.446080] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xafb0afb0)
[  151.446122] pcieport 0000:00:1c.1: restoring config space at offset 0xa (was 0xffffffff, writing 0x0)
[  151.446174] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900006, writing 0x2900002)
[  151.446198] ehci_hcd 0000:00:1d.0: wake-up capability disabled by ACPI
[  151.446202] ehci_hcd 0000:00:1d.0: PME# disabled
[  151.446259] ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
[  151.446385] tg3 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x107)
[  151.446396] tg3 0000:02:00.0: restoring config space at offset 0xc (was 0x0, writing 0xfffff800)
[  151.446501] sdhci-pci 0000:02:00.1: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[  151.446609] pci 0000:02:00.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[  151.446718] pci 0000:02:00.3: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[  151.446804] ath9k 0000:03:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[  151.446931] PM: early resume of devices complete after 1.050 msecs
[  151.447004] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[  151.447014] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[  151.447037] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[  151.447040] mei 0000:00:16.0: irq 42 for MSI/MSI-X
[  151.447042] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[  151.447076] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
[  151.447102] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[  151.447109] tg3 0000:02:00.0: wake-up capability disabled by ACPI
[  151.447112] ahci 0000:00:1f.2: setting latency timer to 64
[  151.447115] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[  151.447163] tg3 0000:02:00.0: PME# disabled
[  151.447166] sdhci-pci 0000:02:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[  151.447178] sdhci-pci 0000:02:00.1: setting latency timer to 64
[  151.447206] i915 0000:00:02.0: setting latency timer to 64
[  151.454034] sd 0:0:0:0: [sda] Starting disk
[  151.575729] PM: resume of drv:usb-storage dev:2-1.3:1.0 complete after 121.696 msecs
[  151.575734] PM: resume of drv: dev:ep_00 complete after 121.660 msecs
[  151.575748] PM: resume of drv: dev:ep_00 complete after 121.488 msecs
[  151.575757] PM: resume of drv: dev:ep_02 complete after 121.704 msecs
[  151.575759] PM: resume of drv:scsi dev:host6 complete after 121.681 msecs
[  151.575768] PM: resume of drv:usb-storage dev:2-1.1:1.0 complete after 121.570 msecs
[  151.575772] PM: resume of drv: dev:ep_81 complete after 121.727 msecs
[  151.575787] PM: resume of drv: dev:ep_81 complete after 121.554 msecs
[  151.575790] PM: resume of drv:scsi dev:host7 complete after 121.578 msecs
[  151.575793] PM: resume of drv:scsi_host dev:host6 complete after 121.704 msecs
[  151.575795] PM: resume of drv: dev:ep_02 complete after 121.548 msecs
[  151.575798] PM: resume of drv:scsi dev:target6:0:0 complete after 121.650 msecs
[  151.575801] PM: resume of drv:scsi_host dev:host7 complete after 121.577 msecs
[  151.575809] PM: resume of drv:scsi dev:target7:0:0 complete after 121.539 msecs
[  151.575814] PM: resume of drv:sd dev:6:0:0:0 complete after 121.654 msecs
[  151.575827] PM: resume of drv:scsi_device dev:6:0:0:0 complete after 121.654 msecs
[  151.575830] PM: resume of drv:ses dev:7:0:0:1 complete after 121.524 msecs
[  151.575833] PM: resume of drv:sd dev:7:0:0:0 complete after 121.548 msecs
[  151.575841] PM: resume of drv:scsi_device dev:7:0:0:1 complete after 121.525 msecs
[  151.575848] PM: resume of drv:scsi_device dev:7:0:0:0 complete after 121.555 msecs
[  151.575971] PM: resume of drv: dev:ep_00 complete after 121.831 msecs
[  151.575979] PM: resume of drv:usbhid dev:2-1.2:1.0 complete after 121.866 msecs
[  151.575994] PM: resume of drv: dev:ep_81 complete after 121.869 msecs
[  151.623230] PM: resume of drv:hub dev:1-1:1.0 complete after 169.464 msecs
[  151.623237] PM: resume of drv: dev:ep_00 complete after 169.430 msecs
[  151.623245] PM: resume of drv: dev:ep_81 complete after 169.464 msecs
[  151.695244] usb 1-1.3: reset high-speed USB device number 3 using ehci_hcd
[  151.751015] PM: resume of drv:battery dev:PNP0C0A:00 complete after 304.562 msecs
[  151.751116] legacy_resume(): pnp_bus_resume+0x0/0x70 returns -19
[  151.751118] PM: Device 00:01 failed to resume: error -19
[  151.762912] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  151.766935] ata3.00: configured for UDMA/133
[  151.835379] PM: resume of drv:i915 dev:0000:00:02.0 complete after 389.117 msecs
[  151.899923] PM: resume of drv:uvcvideo dev:1-1.3:1.1 complete after 446.537 msecs
[  151.899927] PM: resume of drv: dev:ep_00 complete after 446.527 msecs
[  151.899940] PM: resume of drv:uvcvideo dev:1-1.3:1.0 complete after 446.580 msecs
[  151.899950] PM: resume of drv: dev:ep_87 complete after 446.580 msecs
[  154.677467] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  154.681626] ata1.00: configured for UDMA/133
[  154.725599] PM: resume of drv:sd dev:0:0:0:0 complete after 3277.715 msecs
[  154.725636] PM: resume of drv:scsi_device dev:0:0:0:0 complete after 3277.733 msecs
[  154.725639] PM: resume of drv:scsi_disk dev:0:0:0:0 complete after 2974.386 msecs
[  154.730620] acer_wmi: Get Current Device Status failed: 0xe2 - 0x0
[  154.734104] PM: resume of devices complete after 3293.331 msecs
[  154.734173] PM: resume devices took 3.296 seconds
[  154.734222] PM: Finishing wakeup.
[  154.734223] Restarting tasks ... done.
[  154.821260] video LNXVIDEO:00: Restoring backlight state
[  155.960805] tg3 0000:02:00.0: irq 44 for MSI/MSI-X
[  155.960820] tg3 0000:02:00.0: irq 45 for MSI/MSI-X
[  155.960831] tg3 0000:02:00.0: irq 46 for MSI/MSI-X
[  155.960843] tg3 0000:02:00.0: irq 47 for MSI/MSI-X
[  155.960853] tg3 0000:02:00.0: irq 48 for MSI/MSI-X
[  156.532732] ADDRCONF(NETDEV_UP): eth0: link is not ready
[  156.595544] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[  159.380729] wlan0: authenticate with 00:23:eb:27:14:e0 (try 1)
[  159.382375] wlan0: authenticated
[  159.408554] wlan0: associate with 00:23:eb:27:14:e0 (try 1)
[  159.411494] wlan0: RX AssocResp from 00:23:eb:27:14:e0 (capab=0x421 status=0 aid=111)
[  159.411497] wlan0: associated
[  159.412060] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[  159.412131] cfg80211: Calling CRDA for country: CH
[  159.416439] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[  159.416446] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416450] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[  159.416454] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416457] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[  159.416461] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416464] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[  159.416493] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416497] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[  159.416503] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416508] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[  159.416513] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416520] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[  159.416537] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416540] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[  159.416543] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416546] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[  159.416549] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416551] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[  159.416554] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416556] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[  159.416559] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416561] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[  159.416563] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416566] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[  159.416568] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[  159.416570] cfg80211: Disabling freq 2484 MHz
[  159.416574] cfg80211: Regulatory domain changed to country: CH
[  159.416576] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[  159.416579] cfg80211:     (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[  159.416581] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[  159.416583] cfg80211:     (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[  159.416586] cfg80211:     (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[  169.836935] wlan0: no IPv6 routers present
[  178.680204] cfg80211: Found new beacon on frequency: 2472 MHz (Ch 13) on phy0
[ 4685.360916] usb 2-1.1: USB disconnect, device number 6
[ 7560.388560] usb 2-1.1: new high-speed USB device number 7 using ehci_hcd
[ 7560.721422] cdc_acm 2-1.1:1.1: ttyACM0: USB ACM device
[ 7560.737490] cdc_acm 2-1.1:1.3: ttyACM1: USB ACM device
[ 7560.778961] cdc_wdm 2-1.1:1.7: cdc-wdm0: USB WDM device
[ 7560.783485] cdc_ether 2-1.1:1.8: wwan0: register 'cdc_ether' at usb-0000:00:1d.0-1.1, Mobile Broadband Network Device, 02:80:37:ec:02:00

Nous sommes libres. Wir sind frei. We are free. Somos libres. Siamo liberi.

Hors ligne

 

Pied de page des forums

Powered by FluxBB