Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#826 Le 27/01/2008, à 19:24

Skippy le Grand Gourou

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

bjm > Tu es sûr que tu as bien remplacé le dernier "ath0" tout au bout de la ligne ?

Hors ligne

#827 Le 27/01/2008, à 19:33

bjm

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

TEXT
${alignc}${color yellow}${wireless_essid eth1}${color white}    Batterie ${color yellow}${battery_percent}% ${battery} ${color}  Mode ${color yellow}${wireless_mode eth1}${color}   Taux ${color yellow}${wireless_bitrate eth1}${color} ${battery_time} ${color green}   Qualite ${wireless_link_qual_perc eth1}

Hors ligne

#828 Le 27/01/2008, à 19:35

axelbl

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

ben ya pas moyen d'avoir les accents...
j'ai raccourcis au maximum .conkyrc et voila ce que ça donne :

# Text alignment, other possible values are commented
alignment top_right
# Utiliser Xft (polices lissées etc)
use_xft yes
#pour afficher les accents
override_utf8_locale no
#police a utiliser : use_xft doit etre a "yes"
xftfont arial:size=6
update_interval 4
# Draw shades?
draw_shades no
# Gap between borders of screen and text
gap_x 13
gap_y 70

TEXT
${color lightgrey} ${execi 300 /home/axel/conky-rss.sh http://www.lemonde.fr/rss/sequence/0,2-3208,1-0,0.xml 6 2}

peut être un probleme de gestion de caractère a la base de la distrib ? pourtant avec les accents ça marche ! éèçâêô !!!! par contre j'ai pas le symbole carré, comme pour m*m, mètres carrés... øøø

Help !

#829 Le 27/01/2008, à 19:49

Skippy le Grand Gourou

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

bjm > Essaie de rajouter la ligne :

${alignc}${wireless_bitrate eth1} ${wireless_link_qual_perc eth1} ${wireless_ap eth1} ${wireless_link_qual eth1} ${wireless_link_qual_max eth1} ${wireless_link_qual_perc eth1} ${wireless_link_bar eth1}

Histoire de voir si d'autres fonctions wifi marchent pas...

axelbl > Que donne le résultat de la commande "locale" ? Et qu'est-ce qu'il y a dans le script conky-rss.sh ?

Hors ligne

#830 Le 27/01/2008, à 19:56

bjm

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

J'ai une ligne:

1 Mb/s unk invalid 0 0

Hors ligne

#831 Le 27/01/2008, à 20:18

axelbl

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

voila le contenu de mon conky-rss.sh :

#!/bin/bash
# RSS Display Script by Bill Woodford (admin@sdesign.us) v1.0
#
# This script is designed to output story titles for most any RSS Feed.
#
# This script depends on curl.  Please ensure it is installed and in your $PATH
# Gentoo: emerge -av net-misc/curl
# Debian: apt-get install curl
# Homepage: http://curl.haxx.se/
#
# Usage:
# .conkyrc:    ${execi [time] /path/to/script/conky-rss.sh URI LINES TITLENUM}
#    URI = Location of feed, ex. http://www.gentoo.org/rdf/en/glsa-index.rdf
#    LINES = How many titles to display (default 5)
#    TITLENUM = How many times the title of the feed itself is specified, usually 1 or 2 (default 2)
#
# Usage Example       
#        ${execi 300 /home/youruser/scripts/conky-rss.sh http://www.foxnews.com/xmlfeed/rss/0,4313,1,00.rss 4 2}

#RSS Setup - Don't change unless you want these values hard-coded!
uri=$1                            #URI of RSS Feed
lines=$2                        #Number of headlines
titlenum=$3                        #Number of extra titles

#Script start
#Require a uri, as a minimum
if [[ "$uri" == "" ]]; then
    echo "No URI specified, cannot continue!" >&2
    echo "Please read script for more information" >&2
else
    #Set defaults if none specified
    if [[ $lines == "" ]]; then lines=5 ; fi
    if [[ $titlenum == "" ]]; then titlenum=2 ; fi

    #The actual work
    curl -s --connect-timeout 30 $uri |\
    sed -e 's/<\/title>/\n/g' |\
    grep -o '<title>.*' |\
    sed -e 's/<title>//' |\
    head -n $(($lines + $titlenum)) |\
    tail -n $(($lines))
fi

il y a quelque chose d'anormal ? c'est lui qui m'empeche d'avoir les accents ?

#832 Le 27/01/2008, à 20:19

Skippy le Grand Gourou

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Alors je vois pas d'autre explication qu'un problème de conky qui ne prend pas totalement en charge le chipset de ta carte wifi, ou quelque chose comme ça...

Y'a d'autres moyens d'y arriver, en récupérant manuellement la valeur à  coups de awk & cie (mais désolé, pas le temps de m'y coller...).

Hors ligne

#833 Le 27/01/2008, à 20:26

axelbl

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

voila par ex ce que me renvoie curl quand je le lance depuis la console, la une de lemonde.fr.. :

axel@axel-desktop:~$ curl -s http://www.lemonde.fr/rss/sequence/0,2-3208,1-0,0.xml
<?xml version="1.0" encoding="iso-8859-1"?><rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<channel>
<title>Le Monde.fr : A la une</title>
<link>http://www.lemonde.fr</link>
<description>Toute l'actualit� au moment de la connexion</description>
<copyright>Copyright Le Monde.fr</copyright>
<image><url>http://medias.lemonde.fr/mmpub/img/lgo/lemondefr_rss.gif</url><title>Le Monde.fr</title><link>http://www.lemonde.fr</link></image>
<pubDate>Sun, 27 Jan 2008 18:18:07 GMT</pubDate> <item>
  <title>Kenya : les affrontements se poursuivent dans la vall�e du Rift </title>
  <link>http://www.lemonde.fr/afrique/article/2008/01/27/kenya-les-affrontements-se-poursuivent-dans-la-vallee-du-rift_1004252_3212.html?xtor=RSS-3208</link>
  <description>Au moins 116 personnes ont �t� tu�es depuis jeudi dans l&#38;#39;ouest du pays. La poursuite des violences menace la m�diation men�e par  Kofi Annan, qui a rencontr� Raila Odinga.</description>
  <pubDate>Sun, 27 Jan 2008 12:54:23 GMT</pubDate>
  <guid isPermaLink="false">http://www.lemonde.fr/afrique/article/2008/01/27/kenya-les-affrontements-se-poursuivent-dans-la-vallee-du-rift_1004252_3212.html?xtor=RSS-3208</guid>
  <enclosure url="http://medias.lemonde.fr/mmpub/edt/ill/2008/01/27/h_1_ill_1004253_kenya.jpg" type="image/jpeg" length="2266"></enclosure>
</item>
<item>
  <title>Les chiffres du ch�mage assombrissent le bilan du gouvernement espagnol</title>
  <link>http://www.lemonde.fr/europe/article/2008/01/26/les-mauvais-chiffres-du-chomage-espagnol-assombrissent-le-bilan-du-gouvernement_1003970_3214.html?xtor=RSS-3208</link>
  <description>Pour la premi�re fois depuis 2003, la proportion des personnes sans emploi a termin� l&#38;#39;ann�e en augmentation, � 8,6 % de la population active. Des statistiques malvenues pour le gouvernement � six semaines des l�gislatives.</description>

#834 Le 27/01/2008, à 20:32

Skippy le Grand Gourou

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

axelbl > Essaie avec :

code bugué, cf plus bas

(il y a juste la ligne avec "iconv" en plus, à  la fin).

Dernière modification par Skippy le Grand Gourou (Le 27/01/2008, à 21:01)

Hors ligne

#835 Le 27/01/2008, à 20:48

axelbl

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

nan ça le fait toujours pas même avec ton conky-rss.sh ...
ça me gave trop, ya des alternatives a conky pour le rss sur le bureau ?

#836 Le 27/01/2008, à 20:56

axelbl

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

youpi ! j'ai trouvé un conky-rss.sh sur le forum qui marche avec les accents !!! je sais pas pourquoi ça marche mais ça marche! smile

#!/bin/bash
# RSS Display Script by Bill Woodford (admin@sdesign.us) v1.0
#
# This script is designed to output story titles for most any RSS Feed.
#
# This script depends on curl.  Please ensure it is installed and in your $PATH
# Gentoo: emerge -av net-misc/curl
# Debian: apt-get install curl
# Homepage: http://curl.haxx.se/
#
# Usage:
# .conkyrc:    ${execi [time] /path/to/script/conky-rss.sh URI LINES TITLENUM}
#    URI = Location of feed, ex. http://www.gentoo.org/rdf/en/glsa-index.rdf
#    LINES = How many titles to display (default 5)
#    TITLENUM = How many times the title of the feed itself is specified, usually 1 or 2 (default 2)
#
# Usage Example        
#        ${execi 300 /home/youruser/scripts/conky-rss.sh http://www.foxnews.com/xmlfeed/rss/0,4313,1,00.rss 4 2}

#RSS Setup - Don't change unless you want these values hard-coded!
uri=$1                            #URI of RSS Feed
lines=$2                        #Number of headlines
titlenum=$3                        #Number of extra titles

#Script start
#Require a uri, as a minimum
if [[ "$uri" == "" ]]; then
    echo "No URI specified, cannot continue!" >&2
    echo "Please read script for more information" >&2
else
    #Set defaults if none specified
    if [[ $lines == "" ]]; then lines=5 ; fi
    if [[ $titlenum == "" ]]; then titlenum=2 ; fi

    #The actual work
    curl -s --connect-timeout 30 $uri |\
    sed -e 's/<\/title>/\n/g' |\
    grep '<title>.*' |\
    sed -e 's/<title>//' |\
    head -n $(($lines + $titlenum)) |\
    tail -n $(($lines)) | sed '2d'
fi

#837 Le 27/01/2008, à 20:56

Skippy le Grand Gourou

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Ah oui, effectivement, désolé j'avais pas testé. Met la ligne avec "iconv" juste après celle avec "curl" :

#!/bin/bash
# RSS Display Script by Bill Woodford (admin@sdesign.us) v1.0
#
# This script is designed to output story titles for most any RSS Feed.
#
# This script depends on curl.  Please ensure it is installed and in your $PATH
# Gentoo: emerge -av net-misc/curl
# Debian: apt-get install curl
# Homepage: http://curl.haxx.se/
#
# Usage:
# .conkyrc:    ${execi [time] /path/to/script/conky-rss.sh URI LINES TITLENUM}
#    URI = Location of feed, ex. http://www.gentoo.org/rdf/en/glsa-index.rdf
#    LINES = How many titles to display (default 5)
#    TITLENUM = How many times the title of the feed itself is specified, usually 1 or 2 (default 2)
#
# Usage Example       
#        ${execi 300 /home/youruser/scripts/conky-rss.sh http://www.foxnews.com/xmlfeed/rss/0,4313,1,00.rss 4 2}

#RSS Setup - Don't change unless you want these values hard-coded!
uri=$1                            #URI of RSS Feed
lines=$2                        #Number of headlines
titlenum=$3                        #Number of extra titles

#Script start
#Require a uri, as a minimum
if [[ "$uri" == "" ]]; then
    echo "No URI specified, cannot continue!" >&2
    echo "Please read script for more information" >&2
else
    #Set defaults if none specified
    if [[ $lines == "" ]]; then lines=5 ; fi
    if [[ $titlenum == "" ]]; then titlenum=2 ; fi

    #The actual work
    curl -s --connect-timeout 30 $uri |\
    iconv -f iso-8859-1 -t utf8 |\
    sed -e 's/<\/title>/\n/g' |\
    grep -o '<title>.*' |\
    sed -e 's/<title>//' |\
    head -n $(($lines + $titlenum)) |\
    tail -n $(($lines))
fi

wink

Hors ligne

#838 Le 28/01/2008, à 08:56

Misterjo

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Salut à  tous et merci de m'avoir fait découvrir conky qui en épate plus qu'un.
Voici le mien que j'ai réussi à  faire fonctionner comme je veux grà¢ce à  ce forum.

# Conky sample configuration
#
# the list of variables has been removed from this file in favour
# of keeping the documentation more maintainable.
# Check http://conky.sf.net for an up-to-date-list.

# set to yes if you want Conky to be forked in the background
background no

# X font when Xft is disabled, you can pick one with program xfontsel
#font 5x7
#font 6x10
#font 7x13
#font 8x13
#font 9x15
#font *mintsmild.se*
#font -*-*-*-*-*-*-34-*-*-*-*-*-*-*

# Use Xft?
use_xft yes

# Force UTF8? note that UTF8 support required XFT
override_utf8_locale no

# Xft font when Xft is enabled
xftfont Comic sans MS:size=10

# Text alpha when using Xft
xftalpha 0.8

# Print everything to stdout?
# out_to_console no

# MPD host/port
# mpd_host localhost
# mpd_port 6600
# mpd_password tinker_bell

# Print everything to console?
# out_to_console no

# mail spool
mail_spool $MAIL

# Update interval in seconds
update_interval 3.0

# This is the number of times Conky will update before quitting.
# Set to zero to run forever.
total_run_times 0

# Create own window instead of using desktop (required in nautilus)
own_window yes

# If own_window is yes, you may use type normal, desktop or override
own_window_type normal

# Use pseudo transparency with own_window?
own_window_transparent yes

# If own_window_transparent is set to no, you can set the background colour here
own_window_colour hotpink

# If own_window is yes, these window manager hints may be used
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager

# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes

# Minimum size of text area
minimum_size 190 5

maximum_width 270

# Draw shades?
draw_shades yes

# Draw outlines?
draw_outline no

# Draw borders around text
draw_borders no

# Draw borders around graphs
draw_graph_borders yes

# Stippled borders?
stippled_borders 8

# border margins
border_margin 0

# border width
border_width 0

# Default colors and also border colors
default_color grey
default_shade_color black
default_outline_color black

# Text alignment, other possible values are commented
#alignment top_left
alignment top_right
#alignment bottom_left
#alignment bottom_right
#alignment none

# Gap between borders of screen and text
# same thing as passing -x at command line
gap_x 15
gap_y 50

# Subtract file system buffers from used memory?
no_buffers yes

# set to yes if you want all text to be in uppercase
uppercase no

# number of cpu samples to average
# set to 1 to disable averaging
cpu_avg_samples 2

# number of net samples to average
# set to 1 to disable averaging
net_avg_samples 2

# Add spaces to keep things from moving about?  This only affects certain objects.
use_spacer no

# Allow each port monitor to track at most this many connections (if 0 or not set, default is 256)
#max_port_monitor_connections 256

# Maximum number of special things, e.g. fonts, offsets, aligns, etc.
#max_specials 512

# Maximum size of buffer for user text, i.e. below TEXT line.
#max_user_text 16384

# variable is given either in format $variable or in ${variable}. Latter
# allows characters right after the variable and must be used in network
# stuff because of an argument

# stuff after 'TEXT' will be formatted on screen

TEXT
	${color #4582B5}$sysname $kernel//$machine$color
	${color #4582B5}CPU:$color ${color grey}${freq}MHz$color        ${color #4582B5}T CPU:${color grey} ${hwmon 0 temp 2} C
	${color #4582B5}1er DD : $color${execi 10 hddtemp -n /dev/hdb} C
	${color #4582B5}2eme DD : $color${execi 10 hddtemp -n /dev/hdd} C
$color$hr
	${color #e49c16}CPU Utilise :${color #FFFFFF} $cpu% ${color #ffc11f}${cpubar}
    ${color grey}${hr}
     ${color #FFF4BD}${top name 1}$color  ${top cpu 1} ${top mem 1}
     ${color #FFF4BD}${top name 2}$color  ${top cpu 2} ${top mem 2}
     ${color #FFF4BD}${top name 3}$color  ${top cpu 3} ${top mem 3}
     ${color #FFF4BD}${top name 4}$color  ${top cpu 4} ${top mem 4}
    ${color grey}${hr}
             ${color #4582B5}Memory/Swap:$color
     ${color #FFF4BD}RAM :$color  $memperc%  ${color #888888}${membar 4,100}$color
     ${color #FFF4BD}swap:$color  $swapperc%  ${color #888888} ${swapbar 4,100}$color
    ${color grey}${hr}
             ${color #4582B5}Hard Drives:$color
     ${color #FFF4BD}Systeme Linux :$color ${fs_used_perc /} %$color  ${color #888888}${fs_bar 4,100 /}$color 
     ${color #FFF4BD}home :$color ${fs_used_perc /home} %$color  ${color #888888}${fs_bar 4,100 /home}$color 
     ${color #FFF4BD}TRAVAIL :$color ${fs_used_perc /media/hdb5} %$color  ${color #888888}${fs_bar 4,100 /media/hdb5}$color 
     ${color #FFF4BD}SAUVEGARDE :$color ${fs_used_perc /media/SAUVEGARDE} %$color  ${color #888888}${fs_bar 4,100 /media/SAUVEGARDE}$color 
     ${color grey}${hr}
             ${color #4582B5}Machine en service depuis : 
	                         ${color #B6A291}$uptime
    ${color grey}${hr}

Encore merci à  vous tous

Dernière modification par Misterjo (Le 28/01/2008, à 08:58)


M'enfin ....

Hors ligne

#839 Le 28/01/2008, à 12:38

bjm

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Salut Skippy le Grand Gourou 
Ton idée pour mon wifi c'est d'utilisé  iwlist scan pour scanner mon port eth1 "port wifi"  et avec awk et print l'affiché dans conky .

Hors ligne

#840 Le 28/01/2008, à 13:06

Skippy le Grand Gourou

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Oui. smile

Hors ligne

#841 Le 28/01/2008, à 14:03

bjm

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Ok Skippy wink
Quel code doit-je saisir dans le conky hmm

Hors ligne

#842 Le 28/01/2008, à 14:53

Skippy le Grand Gourou

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Un peu à  l'arrache, essaie :

${exec iwconfig eth1 | awk '$0~"Link Quality" { print substr($2,9,match($2,"/")-9)"%" }'}

à‡a récupère dans le résultat d'iwconfig la ligne qui commence par "Link Quality", puis affiche le pourcentage.

Dernière modification par Skippy le Grand Gourou (Le 28/01/2008, à 15:01)

Hors ligne

#843 Le 28/01/2008, à 19:19

bjm

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Ca marche pas sad

Hors ligne

#844 Le 28/01/2008, à 19:45

bjm

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

$ iwconfig eth1 | awk '$0~"Link Quality" { print substr($2,9,match($2,"/")-9)"%" }'}
awk: line 1: extra '}'
awk: line 1: syntax error at or near end of line

Hors ligne

#845 Le 28/01/2008, à 19:51

sombrero

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

bjm a écrit :
$ iwconfig eth1 | awk '$0~"Link Quality" { print substr($2,9,match($2,"/")-9)"%" }'}
awk: line 1: extra '}'
awk: line 1: syntax error at or near end of line

Enlève le dernier } smile


Debian unstable sur MacBook Pro.

Hors ligne

#846 Le 28/01/2008, à 20:26

bjm

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Bizaare 0%

 iwconfig eth1 | awk '$0~"Link Quality" { print substr($2,9,match($2,"/")-9)"%" }'
0%
$ iwlist scan
lo        Interface doesn't support scanning.

eth0      Interface doesn't support scanning.

eth1      Scan completed :
          Cell 01 - Address: 00:03:C9:0B:78:39
                    ESSID:"ALICE-0B782E"
                    Protocol:IEEE 802.11bg
                    Mode:Master
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Encryption key:on
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                              11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
                              48 Mb/s; 54 Mb/s
                    Quality=84/100  Signal level=-52 dBm  Noise level=-57 dBm
                    Extra: Last beacon: 56ms ago
          Cell 02 - Address: 00:1B:2F:0E:1C:0A
                    ESSID:"bjm"
                    Protocol:IEEE 802.11bg
                    Mode:Master
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Encryption key:on
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 9 Mb/s; 11 Mb/s
                              6 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
                              48 Mb/s; 54 Mb/s
                    Quality=87/100  Signal level=-23 dBm  Noise level=-57 dBm
                    IE: WPA Version 1
                        Group Cipher : WEP-40
                        Pairwise Ciphers (1) : WEP-40
                        Authentication Suites (1) : PSK
                    Extra: Last beacon: 0ms ago
          Cell 03 - Address: 00:03:C9:E9:BC:79
                    ESSID:"Wanadoo_d4b8"
                    Protocol:IEEE 802.11bg
                    Mode:Master
                    Channel:10
                    Frequency:2.457 GHz (Channel 10)
                    Encryption key:on
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                              11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
                              48 Mb/s; 54 Mb/s
                    Quality=78/100  Signal level=-61 dBm  Noise level=-57 dBm
                    Extra: Last beacon: 404ms ago

Hors ligne

#847 Le 28/01/2008, à 20:37

sombrero

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Poste le résultat de la commande "iwconfig" tout seul


Debian unstable sur MacBook Pro.

Hors ligne

#848 Le 28/01/2008, à 20:40

Skippy le Grand Gourou

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

La commande que je t'ai donnée n'utilise pas iwlist (comme il y a plusieurs réseaux il faudrait retrouver celui auquel tu es connecté) mais iwconfig. Que donne :

iwconfig eth1

Edit: Grilled de 3 minutes, j'ai encore des progrès à  faire en dvorak...

Dernière modification par Skippy le Grand Gourou (Le 28/01/2008, à 20:44)

Hors ligne

#849 Le 29/01/2008, à 18:30

klemo

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

j' ai encore un problème

j' ai dit a conky de se lancer au démarrage et quand il se lance il est plus petit que normalement, quand je fais un killall conky et qu eje le relance il est de taille normale.


faut faire quoi?

Hors ligne

#850 Le 29/01/2008, à 20:01

bjm

Re : Conky : Postez vos conkyrc ou certaines parties intéressantes

Bonsoir smile
Quand je lance : iwconfig eth1

eth1      IEEE 802.11b/g  ESSID:"bjm"  Nickname:"Broadcom 4318"
          Mode:Managed  Frequency=2.472 GHz  Access Point: Invalid
          Bit Rate=1 Mb/s   Tx-Power=15 dBm
          RTS thr:off   Fragment thr:off
          Link Quality=0/100  Signal level=-256 dBm  Noise level=-256 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

Hors ligne