Results 1 to 3 of 3
New to Linux.
I am trying to use a Prolific brand Serial to USB Cable to connect to a serial modem in order to have a modem for use with ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-19-2004 #1Just Joined!
- Join Date
- Mar 2004
- Posts
- 1
Prolific brand Serial to USB Cable driver installation
New to Linux.
I am trying to use a Prolific brand Serial to USB Cable to connect to a serial modem in order to have a modem for use with my laptop. The laptop has no serial port... only USB ports.
The cable came with the Linux drivers. This is the "release information" that came with the Linux drivers:
Release Information
Driver Version for Linux 2.4.x : V0213
Released date: 02/13/2002
Files Included in This Release:
pl2303.c
pl2303.h
usbserial.c
usb-serial.h
readme.txt
makefile
Changes in This Release:
1. To fixed using cat command problem in Linux
Can anyone tell me what I have to do with these files to get the cable to work?
The cable is detected by Linux's hardware probe and the cable works fine in Windows. It was easy to install the Windows drivers. It has been impossible for me to figure out how to install the Linux drivers.
Thank you.
Sincerely,
dl
- 03-20-2004 #2Linux Engineer
- Join Date
- Jul 2003
- Location
- Uppsala, Sweden
- Posts
- 1,278
cd to the directory that contains that file. if it is a tar.gz then enter this command:
tar -xzvf /home/user/direcotory/filname.tar.gz
or if its a tar.bz2 then use this:
tar -xzjf /home/user/direcotory/filname.tar.gz
this will create a new subdirectory in the same place as the archive (it will hav ehte same name as the aplication - the tar.gz bit) cd tot hat new directory and then run
./configure
make
make install (this final command as root)Proud to be a GNU/Gentoo Linux user!
- 05-17-2004 #3Just Joined!
- Join Date
- May 2004
- Posts
- 1
USB/serial
i have the same cable. a few things to note: this driver is for 2.4.x kernels only. this particular code only needs a 'make' command after you decompress it. (look in the Makefile for details) it compliles 2 modules: usbserial (which may already be in your system) and pl2303
i have not yet got mine to work :)


Reply With Quote
