Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

modemtest(1p) [debian man page]

MODEMTEST(1p)						User Contributed Perl Documentation					     MODEMTEST(1p)

NAME
modemtest - Tool to examining your modem through Perl's Device::SerialPort SYNOPSIS
modemtest [OPTS] [DEVICE [BAUD [DATA [PARITY [STOP [FLOW]]]]]] DEVICE Device to use as a serial port (default: "/dev/modem") BAUD Serial speed to use (default: 9600) DATA Number of databits to use (default: 8) PARITY Type of parity to use (default: "none") STOP Number of stop bits to use (default: 1) FLOW Kind of flow control to use (default: "none") -h, --help Help report --skip-status Skip modem status bit tests --hide-possible Don't show all possible settings DESCRIPTION
Some systems, serial ports, and modem behave in strange ways. To test the capabilities of Perl's Device::SerialPort, this tool queries the system settings for the given DEVICE, and attempts to set up the port and send the initialization string "ATE1" to the modem, reporting the results seen. SEE ALSO
Device::SerialPort(3) perl(1) AUTHOR
Kees Cook <kees@outflux.net>. COPYRIGHT AND LICENSE
Copyright 2000-2004 by Kees Cook <kees@outflux.net>. This program is free software; you may redistribute it and/or modify it under the same terms ans Perl itself. perl v5.14.2 2006-10-28 MODEMTEST(1p)

Check Out this Related Man Page

Sendpage::Queue(3pm)					User Contributed Perl Documentation				      Sendpage::Queue(3pm)

NAME
Queue.pm - implements a simple directory-based file queue SYNOPSIS
$queue=Sendpage::Queue->new($dir); while ($queue->ready()) { $filename=$queue->file(); $fh=$queue->getReadyFile(); if ($can_remove_file) { $queue->fileToss(); } else { $queue->fileDone(); } } # open a new queue file $fh=$queue->getNewFile(); # ... do things to the file handle here # release the file $queue->doneNewFile(); DESCRIPTION
This is a module for use in sendpage(1). BUGS
Need to write more docs. AUTHOR
Kees Cook <kees@outflux.net> SEE ALSO
perl(1), sendpage(1), Sendpage::KeesConf(3), Sendpage::KeesLog(3), Sendpage::Modem(3), Sendpage::PagingCentral(3), Sendpage::PageQueue(3), Sendpage::Page(3), Sendpage::Recipient(3) COPYRIGHT
Copyright 2000 Kees Cook. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2008-01-03 Sendpage::Queue(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Add usb modem on a 5.0.7

hi guys i know a litter bit of sco openserver 5.0.6 I got my self a 5.0.7 version. The problem is how do you install a usb modem? The way i'm used to doit is by serial port , you know tty1A . Please guys bear with me Thanks a lot Jose. (1 Reply)
Discussion started by: josramon
1 Replies

2. UNIX for Dummies Questions & Answers

Freeing up a serial port with a modem connected

I currently access a remote Unix server which has an external modem connected to one of it's serial ports (/dev/cua/b). At times, this server undergoes a hard reset and for some reason this disallows us from making use of the modem any longer. A hard reset of the modem always seems to fix the... (0 Replies)
Discussion started by: ebender1
0 Replies

3. OS X (Apple)

Cannot access UNIX.com with new cable modem

Hi. I have a very strange problem, so strange I don't even know which sub-forum to post it to. Last week, my cable modem broke, so I took it back and got a new one. The new one doesn't work with my old router so, for now, I have to connect the modem directly to my Mac with an ethernet... (14 Replies)
Discussion started by: Scott
14 Replies

4. Shell Programming and Scripting

file transfer using AWK over serial port

I have a unix system that only has AWK to program with which hooks up to a windows or linux based system with all progamming and software capabilities. The link between the systems is typically a 9600 baud TTY port on the AWK system and COM1 on the other system. I can cat <filenm> from the unix... (4 Replies)
Discussion started by: bobfrog
4 Replies