Hi Derek,
This is the output you provided last:
Code:
[dsanta@localhost dsanta]$ su
Password:
[root@localhost dsanta]# mount -t umsdos /dev/fd0 /mnt/floppy
mount: /dev/fd0 already mounted or /mnt/floppy busy
mount: according to mtab, /dev/fd0 is already mounted on /mnt/floppy
[root@localhost dsanta]# cd /mnt/floppy
[root@localhost floppy]# tar -zxvf pctel-0.9.6.tar.gz
This is what that means:
This part:
Code:
[root@localhost dsanta]# cd /mnt/floppy
means that you changed directories to the floppy disk.
This part:
Code:
[root@localhost floppy]# tar -zxvf pctel-0.9.6.tar.gz
means you are trying to decompress the file tar -zxvf pctel-0.9.6.tar.gz.
Now, as you can notice, the file pctel-0.9.6.tar.gz is not an rpm file. It is what is called a tarball, or just the uncompiled code for your driver. This code is compressed so that it won't occupy much space.
According to what you posted, you have the file pctel-0.9.6.tar.gz on a floppy. Since this is the source code for creating a driver for your modem, you can use it. However, you have to move it from your floppy to your hard drive. This is because the size on a floppy is limited, and uncompressed file won't fit on the floppy.
What you do is:
a: Boot into linux.
b: Put the floppy disk in
c: cd /mnt/floppy (you should know this by now)
d: cp pctel-0.9.6.tar.gz /tmp
e: cd /tmp (this will change you to the /tmp folder, where you copied the file)
f: tar -zxvf pctel-0.9.6.tar.gz
g: follow the instructions previously posted at the beggining of the modem thread.
Bookmarks