Difference between revisions of "FAX Modem Troubleshooting Notes"

From OpenEMR Project Wiki
 
(10 intermediate revisions by the same user not shown)
Line 3: Line 3:
*[http://help.ubuntu.com/community/DialupModemHowto Ubuntu Community Help Wiki - Dialup Modem How To]
*[http://help.ubuntu.com/community/DialupModemHowto Ubuntu Community Help Wiki - Dialup Modem How To]
*[http://www.tldp.org/HOWTO/html_single/Modem-HOWTO/ The Linux Documentation Project - Modem HOW TO]
*[http://www.tldp.org/HOWTO/html_single/Modem-HOWTO/ The Linux Documentation Project - Modem HOW TO]
*[http://linux.about.com/od/mdm_howto/a/hwtmdm_idx.htm About.com - The Linux Modem How To]
<br>
<br>
<br>
<br>
Line 12: Line 13:
*[https://help.ubuntu.com/community/DialupModemHowto/ScanModem Ubuntu Community Help Wiki - Scan Modem]
*[https://help.ubuntu.com/community/DialupModemHowto/ScanModem Ubuntu Community Help Wiki - Scan Modem]
<br>
<br>
<pre>
<pre style="font-size: 130%;">
wget "http://132.68.73.235/linmodems/packages/scanModem.gz"
wget "http://132.68.73.235/linmodems/packages/scanModem.gz"
gunzip scanModem.gz
gunzip scanModem.gz
Line 21: Line 22:


====wvdialconf====
====wvdialconf====
<pre>
<pre style="font-size: 130%;">
sudo apt-get install wvdial
sudo apt-get install wvdial
sudo wvdialconf /etc/wvdial.conf
sudo wvdialconf /etc/wvdial.conf
Line 30: Line 31:


====setserial====
====setserial====
setserial -g /dev/ttyS*
<pre style="font-size: 130%;">
setserial -g /dev/ttyS*
</pre>


<br>
<br>
Line 36: Line 39:


==Finding the Device==
==Finding the Device==
====dmesg====
*Look inside "/var/log/dmesg" after plugging in modem.
*Look inside "/var/log/dmesg" after plugging in modem.
::Device should start with "tty".
::Device should start with "tty".
::'''cat /var/log/dmesg | grep tty'''
::'''ps -lax | grep getty'''
<br>


 
<pre style="font-size: 130%;">
*List USB Devices
cat /var/log/dmesg | grep tty
::lsusb
ps -lax | grep getty
<br>
<br>
==Starting & Stopping==
*sudo /etc/init.d/hylafax stop
*sudo /etc/init.d/hylafax start
 
<br>
==Testing the Modem==
====cu====
<pre>
cu -l ttyACM0
</pre>
</pre>


<br>
<br>
====lsusb====
*List USB Devices

Latest revision as of 13:49, 1 June 2014

Ubuntu

General Modem Information



Modem Troubleshooting Software

scanModem

Software that scans modem, identifies it, and gives instructions on how to configure it.


wget "http://132.68.73.235/linmodems/packages/scanModem.gz"
gunzip scanModem.gz
chmod +x scanModem
sudo ./scanModem
gedit Modem/ModemData.txt

wvdialconf

sudo apt-get install wvdial
sudo wvdialconf /etc/wvdial.conf
less /etc/wvdial.conf


setserial

setserial -g /dev/ttyS*



Finding the Device

dmesg

  • Look inside "/var/log/dmesg" after plugging in modem.
Device should start with "tty".
cat /var/log/dmesg | grep tty
ps -lax | grep getty


lsusb

  • List USB Devices