[QUOTE=sabashuali]
…I have the small problem of installing my USB Speedtouch modem.
[/QUOTE]
Ick, USB modem. the problem here is that the vendor of said device didn’t care enough about Linux to release a proper driver so that it could ‘just work’. That’s the kind of thing that can cause you the Linux migration blues. As a general principle I try to discourage people from using USB modems and routers because of the hit on system performance, the inconsistancies in behaviour, and the crazy driver requirements – and that goes for Windows as well. Basically what I’m trying to tell you is that your modem has put you in an unneccessarily difficult situation, but things normally don’t get this crazy 
[QUOTE=sabashuali]
Also, I need to mount my other non-Linux drives (two in total) and make sure they maount each time the system starts. Both drives do not apear in the mnt directory… if this sheds any light on the matter.
[/QUOTE]
I’ve only had a bit of experience with the Ubuntu distribution and its unique nuances, and even that was on an iMac that was not multibooting. But it seems from what I’ve seen on other forums that Ubuntu is one of the few modern distros that does not automount your Windows partitions for you. Another strange decision on behalf of the Ubuntu team, but I digress. What you need is the Ubuntu Walkthrough here
[QUOTE=sabashuali]
I have Ubantu installed. I got the ‘speedbundle’ here-http://sourceforge.net/project/showfiles.php?group_id=3581
In one of the many how-to pages it mentioned that this package should ‘just work’. When I extracted it and tried to click on install nothing happened.
[/QUOTE]
Yeah, you need to follow the additional instructions. Having it ‘just work’ would having you entail no installation at all, click 'n go or otherwise. Sorry, but your USB modem is an example of hardware that the hardware vendor doesn’t back 100%.
[QUOTE=sabashuali]
Now I am missing a great deal of Linux knowledge, I know. Obviously setting up the drivers is not a mater of just double clicking. My question is this -
Here is an example for a code which I coppied from the following page The Linux Kernel SpeedTouch Driver And Ubuntu :
unzip SpeedTouch330_firmware_3012.zip &&
chmod +x firmware-extractor &&
./firmware-extractor ZZZL_3.012
[/QUOTE]
If you’re going to break it up into 3 lines like that, you don’t need the ‘&&’ at the end of each command. The && allows you to chain a bunch of commands together, so the system reads ‘&&’ like “Then, do this” if you get what I’m trying to say. Anyway the first line is to extract the contents of your archive. The second command is you make the firmware extractor executable so you can run it. The third command actually runs the firmware extractor, letting it do it’s thing.
[QUOTE=sabashuali]
This is just an example. Now please bear with me because for most linux users this might sound really thick - do I need to specify to the system exactly where the zip file is as in - unzip /directory/where/the/zip/is/SpeedTouch330_firmware_3012.zip && chmod +x /directory/where/the/firmware-extractor/is/firmware-extractor && /directory/where/the/firmware-extractor/is/ firmware-extractor ZZZL_3.012
[/QUOTE]
Just like DOS or in any other CLI, you only need to specify the full path if you aren’t in the same directory as the file you’re working with. otherwise you can leave the path off. Tip: A very useful feature of the Linux shell is that you can hit the Tab key to autocomplete what you’re typing. This prevents typos and saves you a lot of effort in the CLI, so try it, you’ll like it.
[QUOTE=sabashuali]
I hope all this is making sense. Like I said being something completely different, I am still trying to get to grips with it…
[/QUOTE]
Yes, you’re making sense. I hope I am as well. 
[QUOTE=sabashuali]
Now if anyone feels an uncontolable urge to send me a fool proof ‘how-to’ for installing my USB modem I will be forever in their pocket and thrilled with gratitude.
[/QUOTE]
I don’t actively use Ubuntu on any systems right now, and I don’t have a speedtouch modem either (I have an ethernet modem which ‘just works’ with my IPCop firewall) but the instructions given to you sound pretty generic in that they should work on any distro.