Setting up Ricochet in Linux
NOTE: The follow instructions are meant for the Linux CLI, and should be run with sudo or as root.
Install wvdial
Debian/Ubuntu: apt-get install wvdial Fedora/RHEL: yum install wvdialEdit
/etc/wvdial.confand replace its content with:[Dialer Defaults] Modem = /dev/ttyACM0 Baud = 460800 Init1 = ATZ Init2 = ATQ0 [Dialer ricochet] Username = * Password = * Phone = 3333 Inherits = Dialer DefaultsReplace
/dev/ttyACM0with the device your modem connected to:user@host:~$ dmesg | grep cdc_acm cdc_acm 2-1:1.0: ttyACM1: USB ACM deviceTake the device name and prepend dev, so you get:
Modem = /dev/ttyACM1Start wvdial
wvdial ricochet &