LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 11-27-2004, 11:36 AM   #1
Stevecook
Member
 
Registered: Nov 2004
Location: Huddersfield
Distribution: FC2
Posts: 62

Rep: Reputation: 15
Installing Speedtouch 330 USB Modem on Fedora core 2.6


Can anyone help an absolute newbie install my speedtouch 330 (silver) modem? I have tried to follow the Steve Parker sheet but at the second command 'cd speedtouchconf..........' all I get is 'no such directory' and that is as far as I can get. I've only had Linux a few weeks and don't know much about it, so please tell me step by step if you can help. I've downloaded drivers etc on to CD using my WinXP partition and managed to copy the speedtouchconf-10-Nov-2004.tar.gz into the root directory, but I am stuck at this point.
 
Old 11-27-2004, 12:10 PM   #2
Andrew Benton
Senior Member
 
Registered: Aug 2003
Location: Birkenhead/Britain
Distribution: Linux From Scratch
Posts: 2,073

Rep: Reputation: 64
Well where to begin? cd is a command that means change directory. man cd will tell you more. When you open a terminal it opens in your home folder, /home/stevecook or whatever. To work in a different folder you use the cd command. A regular user doesn't have permission to write in the root directory (I assume that you mean the folder / and not /root, root's home folder?) so the first thing is become root. Enter su then the root password then cd /
su
password
cd /
tar xzf speedtouchconf-10-Nov-2004.tar.gz
cd speedtouchconf-10-Nov-2004

Now you need to copy the firmware for the modem into the speedtouchconf folder. If you have it on your hard drive somewhere then change the /path/to/firmware.bin in this next command for the real path and name

cp /path/to/firmware.bin .
./speedtouchconf.sh
 
Old 11-27-2004, 12:40 PM   #3
Stevecook
Member
 
Registered: Nov 2004
Location: Huddersfield
Distribution: FC2
Posts: 62

Original Poster
Rep: Reputation: 15
I've managed to get a little further now, the cd speedtouchconf-10-Nov-2004 worked and I put in the rev4fw.zip which I presume replaces the alcaudsl.sys because I have the silver modem, but when I type ./speedtouchconf.sh nothing happens. Any idea what I'm doing wrong?
 
Old 11-27-2004, 01:30 PM   #4
Andrew Benton
Senior Member
 
Registered: Aug 2003
Location: Birkenhead/Britain
Distribution: Linux From Scratch
Posts: 2,073

Rep: Reputation: 64
No, I've no idea. You should at least get an error message of some kind. If I open a shell in a folder that doesn't contain that script and then enter ./speedtouchconf.sh I get

$ ./speedtouchconf.sh
bash: ./speedtouchconf.sh: No such file or directory

If I do it in the speedtouchconf folder I get lots of verbose output from the speedtouchconf script.
 
Old 11-27-2004, 02:36 PM   #5
Stevecook
Member
 
Registered: Nov 2004
Location: Huddersfield
Distribution: FC2
Posts: 62

Original Poster
Rep: Reputation: 15
I just tried the ./speedtouchconf.sh again after a reboot while in the speedtouchconf-10-Nov-2004 folder and I got the same error message as you predicted ie. 'bash: ./speedtouchconf.sh: No such file or directory'. Does this mean I've downloaded the wrong or a corrupted file?
 
Old 11-27-2004, 03:57 PM   #6
Andrew Benton
Senior Member
 
Registered: Aug 2003
Location: Birkenhead/Britain
Distribution: Linux From Scratch
Posts: 2,073

Rep: Reputation: 64
It probably means you weren't in the speedtouchconf folder. If you're not used to thinking in terms of the path to a file or folder it would probably be best if you open a terminal, type cd, leave a space and then drag and drop the speedtouchconf-10-Nov-2004 folder into the terminal window and let it fill the path in. Press enter and then drag the speedtouchconf.sh script into the terminal and press enter.
 
Old 11-28-2004, 11:26 AM   #7
Stevecook
Member
 
Registered: Nov 2004
Location: Huddersfield
Distribution: FC2
Posts: 62

Original Poster
Rep: Reputation: 15
I've looked in the speedtouchconf-10-Nov-2004 folder and speedtouchconf.sh only exists with .mo attached to the end of it and typing ./speedtouchconf.sh.mo doesn't do anything. I've looked at the information on the download page for the speedtouch.conf files with different dates but the information given doesn't mean anything to me, so I'm wondering if I've downloaded the wrong one. Help!
 
Old 11-28-2004, 04:10 PM   #8
Andrew Benton
Senior Member
 
Registered: Aug 2003
Location: Birkenhead/Britain
Distribution: Linux From Scratch
Posts: 2,073

Rep: Reputation: 64
Start again. Copy and paste the speedtouchconf-10-Nov-2004.tar.gz into your home folder and extract a fresh copy of it there.
Code:
tar xzf speedtouchconf-10-Nov-2004.tar.gz
cd speedtouchconf-10-Nov-2004
cp /path/to/alcaudsl.sys .
su
password
./speedtouchconf.sh
 
Old 11-29-2004, 03:30 PM   #9
Stevecook
Member
 
Registered: Nov 2004
Location: Huddersfield
Distribution: FC2
Posts: 62

Original Poster
Rep: Reputation: 15
I did exactly what you suggested but still get the 'no such file or directory' message when I run ./speedtouchconf.sh - I think there must be a problem with speedtouchconf-10-Nov-2004.tar.gz, when I ls -al there is no speedtouchconf.sh in the list. Should I try downloading a different version? and if so which would you recommend. The Steve Parker sheet said to download the latest but that isn't working for me.
 
Old 11-29-2004, 05:48 PM   #10
Andrew Benton
Senior Member
 
Registered: Aug 2003
Location: Birkenhead/Britain
Distribution: Linux From Scratch
Posts: 2,073

Rep: Reputation: 64
Well I've just downloaded a fresh copy from http://sourceforge.net/project/showf...group_id=68502 and it all looks fine to me
 
Old 11-30-2004, 09:36 AM   #11
Stevecook
Member
 
Registered: Nov 2004
Location: Huddersfield
Distribution: FC2
Posts: 62

Original Poster
Rep: Reputation: 15
I downloaded a different version (speedtouchconf-03-Nov-2004.tar.gz) and the whole installation ran like clockwork right up to the end when it said I was connected but the DNS was probably not configured and to check it out. I'm afraid I don't have a clue as to how to go about this. I found Dynamic Name Server on the menu but there doesn't appear to be anything in there. Any ideas?
 
Old 11-30-2004, 10:28 AM   #12
Andrew Benton
Senior Member
 
Registered: Aug 2003
Location: Birkenhead/Britain
Distribution: Linux From Scratch
Posts: 2,073

Rep: Reputation: 64
Yes, check what it says in the file /etc/ppp/resolv.conf. It should look something like this
Code:
nameserver 195.92.195.94
nameserver 195.92.195.95
You can either copy it into /etc or make a symbolic link from /etc pointing at it. If /etc/ppp/resolv.conf looks good become root, remove the /etc/resolv.conf that isn't working for you and make the link

su
password
cd /etc
rm -f resolv.conf
ln -s ppp/resolv.conf
 
Old 11-30-2004, 11:32 AM   #13
Stevecook
Member
 
Registered: Nov 2004
Location: Huddersfield
Distribution: FC2
Posts: 62

Original Poster
Rep: Reputation: 15
I couldn't find /etc/ppp/resolv.conf but I found a broken link to it in /etc/resolv.conf. The message said 'can't be used because it's target /etc/ppp/resolv.conf doesn't exist. I've searched for other versions but without success. Can I create this file myself or download it from somewhere?
 
Old 11-30-2004, 12:06 PM   #14
Andrew Benton
Senior Member
 
Registered: Aug 2003
Location: Birkenhead/Britain
Distribution: Linux From Scratch
Posts: 2,073

Rep: Reputation: 64
Yeah, just make it yourself with a text editor. What ISP do you use?
 
Old 11-30-2004, 12:21 PM   #15
Stevecook
Member
 
Registered: Nov 2004
Location: Huddersfield
Distribution: FC2
Posts: 62

Original Poster
Rep: Reputation: 15
I use Wanadoo - used to be freeserve.co.uk
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
USB Silver Speedtouch 330 on Fedora Core 4 nitr8 Linux - Hardware 15 01-04-2007 01:33 PM
speedtouch usb modem in fedora core 3 alikote Fedora 2 01-05-2006 11:38 AM
Speedtouch 330 USB Modem and XP adam-red Linux - Hardware 1 11-30-2004 11:54 AM
Speedtouch 330 usb modem!!!! The-Demon Linux - Hardware 7 11-01-2003 10:05 AM
Speedtouch 330 USB modem install DavidTempler Mandriva 2 10-31-2003 08:50 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 02:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration