Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[HOWTO] Ebuild pour le driver eagle - version 2.0.0
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8  Next  
Reply to topic    Gentoo Forums Forum Index French
View previous topic :: View next topic  
Author Message
Beber
Guru
Guru


Joined: 10 Apr 2004
Posts: 300
Location: Kemper, Lutèce

PostPosted: Wed Jun 23, 2004 1:25 pm    Post subject: Reply with quote

vérifie que /usr/src/linux point bien vers le répertoire des sources du noyau que tu utilise

Code:
ls -l /usr/src/linux
uname -r


sinon
Code:
ln -s /usr/src/`uname -r` /usr/src/linux
Back to top
View user's profile Send private message
BoBBY-nOOb
Tux's lil' helper
Tux's lil' helper


Joined: 23 Jun 2004
Posts: 88
Location: Toulouse , France

PostPosted: Wed Jun 23, 2004 11:36 pm    Post subject: Reply with quote

Je viens de suivre scrupuleusement le HOW-TO
Sauf que j'ai rien mis dans mon eagle-usb.conf

Quand je lance ma Gentoo il lance le module eagle-usb , synchronise parfaitement (les 2 LEDs sont allumées) mais il bloque sur le lancement du daemon PPP :(

Il reste bloquer quelque temps puis passe a la suite j'ai vérifié et effectivement la connection n'est pas activé :cry:
Back to top
View user's profile Send private message
Thom N2h
Apprentice
Apprentice


Joined: 03 Feb 2004
Posts: 161

PostPosted: Thu Jun 24, 2004 6:36 am    Post subject: Reply with quote

est ce que tu as mis ton login/pass ds la conf de pppd ?
Back to top
View user's profile Send private message
BoBBY-nOOb
Tux's lil' helper
Tux's lil' helper


Joined: 23 Jun 2004
Posts: 88
Location: Toulouse , France

PostPosted: Thu Jun 24, 2004 8:20 am    Post subject: Reply with quote

Oui dans les deux fichiers meme :(
Back to top
View user's profile Send private message
BoBBY-nOOb
Tux's lil' helper
Tux's lil' helper


Joined: 23 Jun 2004
Posts: 88
Location: Toulouse , France

PostPosted: Thu Jun 24, 2004 8:28 am    Post subject: Reply with quote

Code:
pty "/usr/sbin/pppoa -I ${EAGLE_IF}"
user "xxxx@freeadsl"
mru 1496
mtu 1496
noipdefault
defaultroute
usepeerdns
noauth
persist
nobsdcomp
nodeflate
nopcomp
novj
novjccomp
noaccomp -am

Ca c'est mon /etc/ppp/peers/dsl.peer


Code:
# Secrets for authentication using PAP
# client        server  secret                  IP addresses
xxxxxxxxxx@freeadsl     *     xxxxxxxx        *


Ca c'est /etc/ppp/pap-secret , pareil pour /etc/ppp/chap-secrets
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Thu Jun 24, 2004 9:03 am    Post subject: Reply with quote

Rajoute debug dans tes options ppp, et regarde ce que te dis ton fichier syslog.
Back to top
View user's profile Send private message
Jorus
Tux's lil' helper
Tux's lil' helper


Joined: 06 Mar 2004
Posts: 84

PostPosted: Thu Jun 24, 2004 9:11 am    Post subject: Reply with quote

Ca y est, j'ai résolu mon problème :
Code:
error: kernel-sources cannot be found


J'ai juste recompilé mon kernel et ca a marché ! 8O 8O

J'aimerais comprendre. :idea:

@ bientot et merci
Jorus
PS : bravo pour le driver eagle et pour les mises à jour régulières, c'est du bon boulot !
Back to top
View user's profile Send private message
BoBBY-nOOb
Tux's lil' helper
Tux's lil' helper


Joined: 23 Jun 2004
Posts: 88
Location: Toulouse , France

PostPosted: Fri Jun 25, 2004 9:04 am    Post subject: Reply with quote

Est-ce que c'est normal que eagleconfig, startadsl stopadsl ... soit des commandes inconnus du systeme :( ?
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Fri Jun 25, 2004 10:21 am    Post subject: Reply with quote

BoBBY-nOOb wrote:
Est-ce que c'est normal que eagleconfig, startadsl stopadsl ... soit des commandes inconnus du systeme :( ?


Oui :)
startadsl/stopadsl ne sont pas installee car elle ne font rien de plus (surtout elle font des chose en moins) par rapport a /etc/initd/eagle-adsl
Pour ce qui est du eagleconfig la derniere version l'installe normalement.
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Sun Jun 27, 2004 7:43 pm    Post subject: Reply with quote

Thom N2h wrote:
tiens au fait j'ai tjrs mon problème de driver qui ne veut pas s'arrêter Sleeper t'as tjrs pas d'idée ?


Yop .. un utlisateur a trouve qq chose. Dans /etc/init.d/eagle-usb, fonction stop_ppp, tu la remplace par celle-la:
Code:

stop_ppp () {

    local RETURNED=0
    local LOOP=0
    echo "Stopping Link $LINKNAME (${PPP_INTERFACE})" |   ${LOGGERCMD} > /dev/null
    find_eagle_pppif ;

    if [ -f $LINKPIDFILE ]
    then
   start-stop-daemon --stop --pidfile $LINKPIDFILE  pppd   

       # Wait for connection to go away
       while [ ${RETURNED} -ne 1 ] && [ ${LOOP} -le ${MAX_LOOP} ] ; do
          let LOOP=LOOP+3
          sleep 1
     echo "Waiting for link $LINKNAME (${PPP_INTERFACE}) to go away" |  ${LOGGERCMD}  > /dev/null
          find_eagle_pppif ;
     # could just use return value of find_eagle_pppif?
     # but then would have to check whether the interface exists
          # and delete the pidfile if it doesn't? but then would have
          # a race condition?
       ${IFCONFIG} | grep -q "${PPP_INTERFACE}[[:space:]]"
          RETURNED=$?
       done
   
       if [ ${LOOP} -gt ${MAX_LOOP} ] && [ ${RETURNED} -ne 1 ] ; then
      echo "Link $LINKNAME (${PPP_INTERFACE}) failed to stop" | ${LOGGERCMD}  > /dev/null
           return 1
       else
      echo "Link $LINKNAME (${PPP_INTERFACE}) stopped" |  ${LOGGERCMD}  > /dev/null
           return 0
       fi
    else
      echo "File $LINKPIDFILE not found" |   ${LOGGERCMD} > /dev/null
      return 1
    fi
}



Et tu peux tester :) Ca devrait etre intégré dans la prochaine release de l'ebuild ...
Back to top
View user's profile Send private message
anonjoe
Guru
Guru


Joined: 02 Oct 2003
Posts: 316

PostPosted: Thu Jul 01, 2004 8:04 am    Post subject: Reply with quote

Moi j'suis paumé je pige plus rien
Ca marchais nickel hier, puis tout a coup plus rien.

il synchronise bien mais je ne ping même pas la passerelle

j'suis chez free dégroupé.
cf mon précédent post
Back to top
View user's profile Send private message
Beber
Guru
Guru


Joined: 10 Apr 2004
Posts: 300
Location: Kemper, Lutèce

PostPosted: Thu Jul 01, 2004 8:35 am    Post subject: Reply with quote

Sleeper> Un p'ti diff ou un -r2 ? :roll:
Back to top
View user's profile Send private message
Rich41
n00b
n00b


Joined: 29 Jun 2004
Posts: 4
Location: France

PostPosted: Thu Jul 01, 2004 10:33 pm    Post subject: Merci Sl33p3r Reply with quote

Comme vous pourrez le constater au nombre de mes postes je suis un pur nOOb. 8)

Mais je voulais remercier Sl33p3r pour son travail sur l'ebuild de eagle-usb.
Même quelqu'un comme moi a pu faire fonctionner sa connection Internet. :D

[Edit]Effacage d'une connerie plus grosse que moi concernant le chargement du module eagle usb. En fait je n'avais pas encore installé Udev et je n'avaias activé DevFs (héhé :lol: hum ...) Voilà je l'ai dit (quand je parle d'être un n00b ...[/Edit]

En tout cas je me permet un poste inutile pour dire merci.
Richard DETENTE.
-------
C'est avec les petites montagnes que l'on fait les grandes rivières.
Et comme on dit en Inde : Bon beh à plus tard.


Last edited by Rich41 on Fri Jul 02, 2004 9:16 am; edited 1 time in total
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Fri Jul 02, 2004 8:46 am    Post subject: Reply with quote

Beber wrote:
Sleeper> Un p'ti diff ou un -r2 ? :roll:


J'essaie de faire ca ce soir rapide ..
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Fri Jul 02, 2004 8:48 am    Post subject: Re: Merci Sl33p3r Reply with quote

Rich41 wrote:

Mais je voulais remercier Sl33p3r pour son travail sur l'ebuild de eagle-usb.
Même quelqu'un comme moi a pu faire fonctionner sa connection Internet. :D

Merci .. ca me prend moins de temps que le driver ;)

Quote:

La seule chose c'est que je me fait jeter au démarrage lorsqu'il essaie de charger le module eagle-usb (failed) alors que j'ai mis le /etc/init.d/eagle-usb start dans /etc/modules.autoload.d/kernel-2.6 mais je pense que la réponse se trouve dans les 3 pages du thread que je n'ai pas encore lu.

Dans /etc/modules.autoload.d/kernel-2.6 il faut mettre eagle-usb, pas /etc/init.d/eagle-usb start ...
Back to top
View user's profile Send private message
Prodigy44
Apprentice
Apprentice


Joined: 19 Sep 2003
Posts: 231
Location: Nantes, France

PostPosted: Fri Jul 02, 2004 2:16 pm    Post subject: Reply with quote

cool sleeper parce que je devais te signaler les bugs de ta version r1 mais pas eu le temps
si tu le fais ce soir je test ta version ce wwek end :)
_________________
Apporter votre contribution au libre : http://fr.wikipedia.org
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Fri Jul 02, 2004 6:42 pm    Post subject: Reply with quote

Ayez ... r2
Back to top
View user's profile Send private message
Prodigy44
Apprentice
Apprentice


Joined: 19 Sep 2003
Posts: 231
Location: Nantes, France

PostPosted: Sat Jul 03, 2004 8:49 am    Post subject: Reply with quote

hum
euh ca vient de moi lol, je suis maudit bon alors la compilation se passe bien, mais lorsque je fais un eagleconfig j'obtiens ca :
Code:
/usr/sbin/eagleconfig: line 73: @EU_LANG_DIR@/fr: Aucun fichier ou répertoire de ce type
/usr/sbin/eagleconfig: line 88: @EU_LANG_DIR@/en: Aucun fichier ou répertoire de ce type
/usr/sbin/eagleconfig: line 62: /usr/local/portage/net-dialup/eagle-usb/@EU_SCRIPT_DIR@/eu_config_bash: Aucun fichier ou répertoire de ce type
/usr/sbin/eagleconfig: line 62: exec: /usr/local/portage/net-dialup/eagle-usb/@EU_SCRIPT_DIR@/eu_config_bash: cannot execute: Aucun fichier ou répertoire de ce type

_________________
Apporter votre contribution au libre : http://fr.wikipedia.org
Back to top
View user's profile Send private message
Prodigy44
Apprentice
Apprentice


Joined: 19 Sep 2003
Posts: 231
Location: Nantes, France

PostPosted: Sat Jul 03, 2004 11:08 am    Post subject: Reply with quote

Bon et bien en fait j'avais fait une fausse manip mais j'ai quand meme pas mal d'erreur, les voici :
Code:

squirt dsp # eagleconfig
shell-init: could not get current directory: getcwd: cannot access parent directories: Aucun fichier ou répertoire de ce type
/usr/sbin/eagleconfig: line 62: /etc/eagle-usb/scripts/eu_config_bash: Permission non accordée
/usr/sbin/eagleconfig: line 62: exec: /etc/eagle-usb/scripts/eu_config_bash: cannot execute: Succès
squirt dsp # cd /etc/init.d/
squirt init.d # cd /etc/eagle-usb/
squirt eagle-usb # chmod -R +x *
squirt eagle-usb # eagleconfig


==============================================================================
=================== Configuration de votre connexion ADSL ====================
==============================================================================
Votre modem doit être branché avant de continuer.
Vous pouvez à tout moment interrompre ce script avec [Ctrl][c]

Choisissez votre méthode de connexion :
__________________________________________________________________
. . Pays . . . . Réseau . . . . . . . . VPI VCI ENC
------------------------------------------------------------------
1:  Belgium      Belgacom                08  23  06  PPPoA VCmux
2:  Deutschland  DT (D.Telecom, 1&1...)  01  20  01  PPPoE LLC
3:  España       Telefonica              08  20  01  PPPoE LLC
4:  España       Telefonica ip fija      08  20  03  ROUTED IP LLC
5:  España       Retevision, Eresmas...  08  23  06  PPPoA VCmux
6:  España       Tiscali                 01  20  ??  ?
7:  Finland      Sonera                  08  23  01  PPPoE LLC
8:  France       FT (Free, Wanadoo...)   08  23  06  PPPoA VCmux
9:  France       FT (Free, Wanadoo...)   08  23  01  PPPoE LLC
10: France       Tiscali 128k            08  23  05  PPPoA LLC
11: France       Free dégroupé           08  24  04  ROUTED IP VC
12: France       9telecom dégroupé       08  23  06  PPPoA VCmux
13: Hungary      Matav                   01  20  01  PPPoE LLC
14: Italia       Telecom Italia          08  23  06  PPPoA VCmux
15: Italia       MClink                  08  4B  ??  ?
16: Netherlands  KPN                     08  30  06  PPPoA VCmux
17: Polska       Telekomunikacja Polska  00  23  06  PPPoA VCmux
18: Portugal     PT                      00  23  01  PPPoE LLC
19: Sweden       Telia                   08  23  01  PPPoE LLC
20: UK           BT (Tiscali...)         00  26  06  PPPoA VCmux
------------------------------------------------------------------
?8

Veuillez entrer le nom d'utilisateur pour la connexion au fournisseur d'accès :
fti/bbxbykv@fti

Veuillez entrer le mot de passe pour cet utilisateur (donné par le fournisseur):
Votre fournisseur d'accès supporte t il le cryptage du mot de passe ? [o]/n

Voulez-vous que la connexion soit lancée automatiquement au démarrage ? o/[n]
cp: ne peut évaluer `/etc/eagle-usb/scripts/eagle-usb.conf.template': Aucun fichier ou répertoire de ce type
grep: /etc/eagle-usb/eagle-usb.conf: Aucun fichier ou répertoire de ce type
cat: /etc/eagle-usb/scripts/options: Aucun fichier ou répertoire de ce type
cat: /etc/eagle-usb/scripts/options: Aucun fichier ou répertoire de ce type

Chargement du DSP & options... /usr/sbin/eagleconfig: line 350: fctStopAdsl: command not found
[ OK ]

Attente modem opérationnel...  [ OK ]


Configuration réussie.

Vous pouvez maintenant lancer "startadsl" pour démarrer la connexion.


dans le fichier /etc/eagle-usb/eagle-usb.conf j'ai que ca :
Code:

STATIC_IP=none
ISP=FRFTA
LANG=fr
ASYNCHRONOUS_START=1

_________________
Apporter votre contribution au libre : http://fr.wikipedia.org
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Sat Jul 03, 2004 4:07 pm    Post subject: Reply with quote

As-tu lu le debut du thread ? La methode actuelle sous Gentoo, n'utilise pas le eagleconfig ... Je l'ai rajoute juste pour le System Rescue CD, mais comme il a recemment change, je n'ai pas verifie si tout y etait bien ...

Je vais voir ce que je peux faire ...
Back to top
View user's profile Send private message
Thom N2h
Apprentice
Apprentice


Joined: 03 Feb 2004
Posts: 161

PostPosted: Sun Jul 04, 2004 6:24 pm    Post subject: Reply with quote

nickel ça marche Sleeper
désolé pour le temps de latence, j'étais partie
Back to top
View user's profile Send private message
mentorek
n00b
n00b


Joined: 06 Feb 2004
Posts: 55
Location: Sosnowiec, Poland

PostPosted: Tue Jul 06, 2004 2:17 pm    Post subject: Reply with quote

hello!
it's me again :P
i got some problems when using eagle-usb script (from /etc/init.d).
i cannot use nicotine (soulseek client) - although i can connect i cannot browse anyone's files.
i can't even do emerge sync :((
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Tue Jul 06, 2004 4:04 pm    Post subject: Reply with quote

mentorek wrote:
hello!
it's me again :P
i got some problems when using eagle-usb script (from /etc/init.d).
i cannot use nicotine (soulseek client) - although i can connect i cannot browse anyone's files.
i can't even do emerge sync :((


Is your host acting as a gateway ? If yes, this can be a problem of MTU/MRU ..
Otherwise did it work using the startadsl as mentioned in the tread in the Polish forum ?
Back to top
View user's profile Send private message
mentorek
n00b
n00b


Joined: 06 Feb 2004
Posts: 55
Location: Sosnowiec, Poland

PostPosted: Tue Jul 06, 2004 6:18 pm    Post subject: Reply with quote

my host is just a workstation.
it was working like charm using startadsl but it was before i started to make this script (eagle-usb) to work. i've had this problem before but thought that it might be corrected in some recent versions.
Back to top
View user's profile Send private message
Sleeper
l33t
l33t


Joined: 12 Nov 2002
Posts: 667

PostPosted: Tue Jul 06, 2004 10:48 pm    Post subject: Reply with quote

OK. Let's just sum-up. You're able to reach some site using the eagle-usb script, but emerge sync doesn't work ? Am I right ?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index French All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8  Next
Page 6 of 8

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum