Lets check a few things first.
Are you using com1 on the windows side to communicate?
If so then usually it will be /dev/ttyS0
To see if it exist use the command ' ls -la /dev/ttyS* ' and post output.
If get something like this
Code:
[crusher58@lcomp58 ~]$ ls -la /dev/ttyS*
crw-rw---- 1 root uucp 4, 64 Jul 8 05:36 /dev/ttyS0
crw-rw---- 1 root uucp 4, 65 Jul 8 05:36 /dev/ttyS1
crw-rw---- 1 root uucp 4, 66 Jul 8 05:36 /dev/ttyS2
crw-rw---- 1 root uucp 4, 67 Jul 8 05:36 /dev/ttyS3
Then root owns the device and lets no one else to use it. This is a permissions issue.
To fix use the command login as root ' su ' and issue the command ' /sbin/chmod 666 /dev/ttyS0 '.
Now you get the following for ttyS0
Code:
[crusher58@lcomp58 ~]$ ls -la /dev/ttyS*
crw-rw-rw- 1 root uucp 4, 64 Jul 8 05:36 /dev/ttyS0
Now try connecting.
Brian1