Antonio, I have followed all the steps you told me but I'm not still able to browse. The Network Manager is off. I did the eth0 down. About the file resolv.conf I have the following doubts: the output I have from wvdial is: [root@bunitinhu ~]# wvdial --> [root@bunitinhu ~]# wvdial --> WvDial: Internet dialer version 1.54.0 --> Cannot get information for serial port. --> Initializing modem. --> Sending: ATZ ATZ OK --> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 OK --> Modem initialized. --> Sending: ATDT30095515 --> Waiting for carrier. ATDT30095515 CONNECT 46667 --> Carrier detected. Waiting for prompt. UQKT2 78.1 Login: --> Looks like a login prompt. --> Sending: jfernando1980@xxxxxxxxxxxxxxxxxx jfernando1980@xxxxxxxxxxxxxxxxxx Password: --> Looks like a password prompt. --> Sending: (password) Entering PPP Session. IP address is 201.93.49.96 MTU is 1100. --> Looks like a welcome message. --> Starting pppd at Mon May 5 15:42:43 2008 --> pid of pppd: 3323 --> Using interface ppp0 --> local IP address 201.93.49.96 --> remote IP address 200.100.131.77 --> primary DNS address 200.204.0.138 --> secondary DNS address 200.204.0.10 WvDial: Internet dialer version 1.54.0 --> Cannot get information for serial port. --> Initializing modem. --> Sending: ATZ ATZ OK --> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 OK --> Modem initialized. --> Sending: ATDT30095515 --> Waiting for carrier. ATDT30095515 CONNECT 46667 --> Carrier detected. Waiting for prompt. UQKT2 78.1 Login: --> Looks like a login prompt. --> Sending: jfernando1980@xxxxxxxxxxxxxxxxxx jfernando1980@xxxxxxxxxxxxxxxxxx Password: --> Looks like a password prompt. --> Sending: (password) Entering PPP Session. IP address is 201.93.49.96 MTU is 1100. --> Looks like a welcome message. --> Starting pppd at Mon May 5 15:42:43 2008 --> pid of pppd: 3323 --> Using interface ppp0 --> local IP address 201.93.49.96 --> remote IP address 200.100.131.77 --> primary DNS address 200.204.0.138 --> secondary DNS address 200.204.0.10 Is these 2 last numbers that I have to put on the /etc/resolv.conf file? Is the name server the name of the server I want to connect to? Should it be given the complete server name, with dots? I have already tried all of it, but I'm still not able to browse. Either I did not understand this step or the nameserver I have is wrong. I have tried itelefonica.com.br, which is the last part of my dialer login. Thank you. On Mon, 5 May 2008 05:03:20 -0700 (PDT), Antonio Olivares wrote > Jose, > > Check to see if NetworkManager and NetworkManager dispatcher are running > > # chkconfig NetworkManager --list > if they are on, turn them off by doing a > # service NetworkManager off > and turn it off from starting completely do a > # chkconfig NetworkManager off > then look for your settings ie, which DNS(Domain Name Servers) you > need for your ISP, and put them into your /etc/resolv.conf an > example would be > > cat /etc/resolv.conf > nameserver 19.190.128.1 > nameserver 19.195.128.1 > > Also turn off eth0 connection by doing a > # ifconfig eth0 down > then try to connect again. > > HTH, > > Antonio > > ----- Original Message ---- > From: Jose Fernando de Jesus <jfernando@xxxxxxxxxxxxxxxx> > To: Antonio Olivares <olivares14031@xxxxxxxxx> > Sent: Sunday, May 4, 2008 9:02:17 PM > Subject: Re: Fernando, Brazil Fedora release 7 (Moonshine) Kernel > kernel 2.6.21-1.3194.fc7 > > Hi, finally I was able to connect using the scripts you sent me, > but I was not able to browse. Is there any settings I have to > provide to Firefox? What should I do? > > Thanks a lot. > > On Sun, 4 May 2008 17:27:37 -0700 (PDT), Antonio Olivares wrote > > Jose, > > > > for a working example you may look here for automation > > > > http://www20.brinkster.com/olivares/slmodemd-setup-1.html > > > > I did not update it for Fedora 7/8 but it works the > > same, you can add the line that Marv told you to > > /etc/modprobe.conf as su -(Super User), then also # cp > > slmodem-2.9.11-20080417/scripts/slmodemd > > /etc/rc.d/init.d/ > > # cd /etc/rc.d/init.d/ > > [root@localhost init.d]# chmod +x slmodemd > > [root@localhost init.d]# chkconfig slmodemd --add > > [root@localhost init.d]# chkconfig slmodemd on > > > > Should take care of it. You might need the lines > > > > modprobe ungrab-winmodem > > modprobe slamr > > > > in start procedure in the case that upon startup you > > see ``slmodemd dead but subsys locked'' message > > > > start() { > > modprobe ungrab-winmodem > > modprobe slamr > > echo -n "Starting SmartLink Modem driver for > > $SLMODEMD_DEVICE: " > > $prog /dev/null 2>/dev/null \ > > --country=$SLMODEMD_COUNTRY $SLMODEMD_OPTS > > /dev/$SLMODEMD_DEVICE & > > RETVAL=$? > > [ $RETVAL -eq 0 ] && success $"$prog startup" > > || failure $"$prog startup" > > echo > > [ $RETVAL -eq 0 ] && touch > > /var/lock/subsys/$prog > > return $RETVAL > > } > > > > Regards, > > > > Antonio > > > > --- Marvin Stodolsky <marvin.stodolsky@xxxxxxxxx> > > wrote: > > > > > Jose, > > > > > > Read through the Smartlink.txt > > > Until you implement the automation, the /dev/slamr0 > > > must be manually > > > made upon reboot. > > > $ su root > > > # mknod -m 600 /dev/slamr0 c 242 0 > > > > > > You can automate by adding the following SINGLE line > > > (folded in email) > > > somewhere in /etc/modprobe.d/ files: > > > > > > install slamr modprobe --ignore-install > > > ungrab-winmodem ; modprobe > > > --ignore-install slamr; test -e /dev/slamr0 || > > > (/bin/mknod -m 660 > > > /dev/slamr0 c 242 0 2>/dev/null && chgrp uucp > > > /dev/slamr0) > > > > > > There after > > > # modprobe slamr > > > will do all > > > > > > MarvS > > > > > > On Sun, May 4, 2008 at 7:56 PM, Jose Fernando de > > > Jesus > > > <jfernando@xxxxxxxxxxxxxxxx> wrote: > > > > Hi Antonio, > > > > I downloaded the kernel-devel and I was able to > > > compile now both > > > > ungrab-winmodem and slmodem, and I had the port > > > working, and I was able to dial. > > > > But after I rebooted to get the right dialer > > > phone number, I lost the > > > > /dev/ttySL0 device, and I had the following > > > error: > > > > > > > > [root@bunitinhu ~]# modprobe ungrab-winmodem > > > > [root@bunitinhu ~]# modprobe slamr > > > > [root@bunitinhu ~]# slmodemd -c BRAZIL > > > /dev/slamr0 > > > > error: mdm setup: cannot stat `/dev/slamr0': No > > > such file or directory > > > > error: cannot setup device `/dev/slamr0' > > > > > > > > Although there is a 'slamr0' on /dev. What is > > > not there is /dev/ttySL0. > > > > Any suggestion? Thanks a lot. > > > > > > > > > > > > On Sun, 4 May 2008 13:32:25 -0700 (PDT), Antonio > > > Olivares wrote > > > > > > > > > > > > > Jose, > > > > > > > > > > I overlooked the following lines: > > > > > <quote> > > > > > linux-headers-2.6.21-1.3194.fc7 resources > > > needed > > > > > for compiling are not manifestly ready! > > > > > If compiling is necessary packages must be > > > > > installed, providing: > > > > > kernel-source-2.6.21-1.3194.fc7 > > > > > <quote> > > > > > You need to look for and install > > > > > kernel-devel-2.6.21-1.3194.fc7, there is no > > > need for > > > > > the kernel source. > > > > > > > > > > How did you get the slmodem-2.9.11-20080417 > > > code to > > > > > work, if kernel-devel package is not installed? > > > > > > > > > > BTW, that kernel-2.6.21-1.3194.fc7 has some > > > bugs, you > > > > > are advised to install a newer one, Also Fedora > > > 7 will > > > > > reach EOL in about 1 month. IT will not > > > receive > > > > > security updates, why do you not install Fedora > > > 8 or > > > > > wait a bit for Fedora 9. Although for Fedora > > > 9, > > > > > slmodem-2.9.11-20080417.tar.gz is not compiling > > > > > because of some nonGPL modules. > > > > > > > > > > Regards, > > > > > > > > > > Antonio > > > > > > > > > > --- Jose Fernando de Jesus > > > > > <jfernando@xxxxxxxxxxxxxxxx> wrote: > > > > > > > > > > > Hi Antonio, > > > > > > I have tried to do what you said, I entered > > > as > > > > > > superuser (although I tried use > > > > > > sudo before) and typed make and make install > > > and I > > > > > > had the same problem. That > > > > > > is not me that tries to compile agains kernel > > > > > > headers. It's ungrab-winmodem > > > > > > that tries to do it, and it says: > > > > > > make: *** > > > /lib/modules/2.6.21-1.3194.fc7/build: File > > > > > > or directory not found. Stop. > > > > > > make: ** [all] Error 2 > > > > > > > > > > > > This error ocurrs both with make and with > > > make > > > > > > install. > > > > > > > > > > > > > > > > > > [jfernando@bunitinhu > > > ungrab-winmodem-20080126]$ su > > > > > > Senha: > > > > > > [root@bunitinhu ungrab-winmodem-20080126]# ls > > > > > > Makefile Modules.symvers Module.symvers > > > > > > Readme.txt UngrabError.txt > > > > > > ungrab-winmodem.c updates.txt > > > > > > [root@bunitinhu ungrab-winmodem-20080126]# > > > make > > > > > > make modules -C > > > /lib/modules/2.6.21-1.3194.fc7/build > > > > > > > > > > > > > > > > SUBDIRS=/home/jfernando/software/scanMod/ungrab-winmodem-20080126 > > > > > > make: *** > > > /lib/modules/2.6.21-1.3194.fc7/build: > > > > > > Arquivo ou diretório não > > > > > > encontrado. Pare. > > > > > > make: ** [all] Erro 2 > > > > > > [root@bunitinhu ungrab-winmodem-20080126]# > > > make > > > > > > install > > > > > > make modules -C > > > /lib/modules/2.6.21-1.3194.fc7/build > > > > > > > > > > > > > > > > SUBDIRS=/home/jfernando/software/scanMod/ungrab-winmodem-20080126 > > > > > > make: *** > > > /lib/modules/2.6.21-1.3194.fc7/build: > > > > > > Arquivo ou diretório não > > > > > > encontrado. Pare. > > > > > > make: ** [all] Erro 2 > > > > > > [root@bunitinhu ungrab-winmodem-20080126]# > > > > > > > > > > > > > > > > > > On Sun, 4 May 2008 09:48:38 -0700 (PDT), > > > Antonio > > > > > > Olivares wrote > > > > > > > Jose, > > > > > > > > > > > > > > Here become superuser > > > > > > > [jfernando@bunitinhu > > > ungrab-winmodem-20080126]$ su > > > > > > > > > > > > > password: > > > > > > > [jfernando@bunitinhu > > > ungrab-winmodem-20080126]# > > > > > > make > > > > > > > [jfernando@bunitinhu > > > ungrab-winmodem-20080126]# > > > > > > make > > > > > > > install > > > > > > > > > > > > > > should do it. There is no need to make > > > against > > > > > > kernel > > > > > > > headers. The ungrab-winmodem-20080126 does > > > this > > > > > > > automatically no need to compile against > > > it. > > > > > > > > > > > > > > Just type make, make install. > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > Antonio > > > > > > > > > > > > > > --- Jose Fernando de Jesus > > > > > > > <jfernando@xxxxxxxxxxxxxxxx> wrote: > > > > > > > > > > > > > > > Hi, I have run scanModem and I have > > > seen that > > > > > > I > > > > > > > > can use slmodem + > > > > > > > > ungrab-winmodem, but when I try to > > > compile > > > > > > > > ungrab-winmodem I have the > > > > > > > > following error: > > > > > > > > > > > > > > > > [jfernando@bunitinhu > > > ungrab-winmodem-20080126]$ > > > > > > ls > > > > > > > > Makefile Modules.symvers Module.symvers > > > > > > > > Readme.txt ungrab-winmodem.c > > > > > > > > updates.txt > > > > > === message truncated === > > > > > ____________________________________________________________________________________ > > Be a better friend, newshound, and > > know-it-all with Yahoo! Mobile. Try it now. > http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ > > José Fernando de Jesus > Physics Graduated > PhD Student on Cosmology (IAG-USP) > Rua do Matão 1226 > Cidade Universitária > 05508-900 São Paulo SP > Brasil > > Phone: 55 11 30912732 > email: jfernando@xxxxxxxxxxxxxxxx > (:¿©2007©?:) > Rock'n'Roll! > > ____________________________________________________________________________________ > Be a better friend, newshound, and > know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ José Fernando de Jesus Physics Graduated PhD Student on Cosmology (IAG-USP) Rua do Matão 1226 Cidade Universitária 05508-900 São Paulo SP Brasil Phone: 55 11 30912732 email: jfernando@xxxxxxxxxxxxxxxx (:¿©2007©?:) Rock'n'Roll!