Installing Speedtouch 330 USB Modem on Fedora core 2.6
Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
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.
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
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?
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.
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?
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.
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!
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.
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?
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
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?
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.