Grov=E9 Erasmus wrote: > = > I have just had ADSL installed on my phone line, with a Alcatel Speedto= uch USB > modem. > = > I have not yet been able to get ot to work with Suse as there don;t see= m to be > any Linux drivers (as usual). > Have any of you got it to work ? it does not get picked upi when I boot= into > Linux. > = > The modem version I have is for United Kingdom only, and my ISP is PIPE= X. > = > Cheers friends :-)) > = > Grov=E9 Erasmus I have ADSL (also PIPEX) working with 7.3. I followed the instructions at http://benoit.papillault.free.fr/speedtouch/index.en.php3 I also found a script to go in /etc/init.d that will make a connection at boot time. I'll post it in full as I can't find the link. You will just need to add the appropriate links in the runlevel directories. For your info I've never had a moments bother with this setup. works great. regards Steve #!/bin/sh # # System startup script for the ADSL driver by Benoit PAPILLAULT # -------------------------------------------------------------- # Author: Nicolas Michon # Version 0.2 # # # Assume the alcatel firmware is /usr/local/lib/mgmt.o and the # Benoit's driver in /usr/local/bin (change ADSL_BIN in other # case). Your connection must work manually before, of course. # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ### BEGIN INIT INFO # Provides: adsl # Required-Start: $remote_fs usbmgr # Required-Stop: $remote_fs # Default-Start: 3 5 # Default-Stop: # Description: Starts and stops an ADSL connection ### END INIT INFO # Source SuSE config =2E /etc/rc.config # Determine the base and follow a runlevel link name. base=3D${0##*/} link=3D${base#*[SK][0-9][0-9]} # Force execution if not called by a runlevel directory. test $link =3D $base && START_ADSL=3Dyes test "$START_ADSL" =3D yes || exit 0 ADSL_BIN=3D/usr/local/bin/modem_run test -x $ADSL_BIN || exit 5 # Shell functions sourced from /etc/rc.status: =2E /etc/rc.status # First reset status of this service rc_reset case "$1" in start) echo "Starting ADSL connection" sleep 2 $ADSL_BIN -f /usr/local/bin/mgmt.o -m start_daemon /usr/sbin/pppd call adsl rc_status -v ;; stop) echo -n "Shutting down ADSL connection" killproc -INT /usr/sbin/pppd killproc -INT $ADSL_BIN rc_status -v ;; try-restart) $0 stop && $0 start rc_status ;; restart) $0 stop $0 start rc_status ;; try-restart) echo -n "Reload service ADSL connection" $0 stop && $0 start rc_status ;; reload) exit 3 ;; status) echo -n "Checking for ADSL connection : " checkproc $ADSL_BIN; rc=3D$? if test $rc =3D 0 then echo "OK" else echo "No process" fi exit 3 ;; *) echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload}" exit 1 ;; esac #end -- To unsubscribe send e-mail to suse-linux-e-unsubscribe@suse.com For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com