Phone dialer?


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Phone dialer?
# 8  
Old 07-17-2003
Perderabo and Hoghunter, Thanks. It appears that I have niether Minicom or Kall now on my computer, but I've got something to look for.
Sonshyne5
# 9  
Old 07-17-2003
Hi,

I think you are a unix starter. You seem to miss some info. It's ok, but we might be able to help you a bit more.
Depended on what Unix/Linux version you work with applications might be on your systembox or not. Linux (especialy Red Hat) is mostly full equiped and has lots of "tools"already installed.

By typing the command (applikation) from a shell box the shell start searching internal (like commands cd, etc) and else in you PATH variable. You can see where it starts searching doing the follwoing :
echo $PATH
This will display the contents of your PATH variable, and therefor your search-path for commands. You can add commands to this using (ksh/bash/sh)
export PATH=$PATH:/new/path/to/add

For finding a command you know it's on your system just type :

find / -name <name of program> -print

The minus print option might be optional in some OS-types. In this case you will find the executables full-patch and can start it f.e. as :

/usr/local/bin/cu <number to dial>

Also adding it to the machine search path can help :

export PATH=$PATH:/usr/local/bin
cu <number to dial>

Best Regs David
# 10  
Old 07-17-2003
Your right I am new to Linux. I'm using Suse 8.1

The "find" command entered as you suggest returns an error "find: invalid predicate `-cu'"
Sonshyne5
# 11  
Old 07-17-2003
It's
find / -name cu -print
not
find / -cu -print
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Red Hat

Os Open source dialer not working on Centos Asterisk platform

Hi We have one centos Server on Asterisk platform and using OS Open source dialer for dialing outbound connections.We are using eyebeam as a softphone for calling with Server ip 192.168.1.X.Today i found dialing issues with each client side phones.Not showing pause/resume button when browse... (0 Replies)
Discussion started by: Vaibhav.T
0 Replies

2. Red Hat

Os (open source dialer config on centos)

Hii Champs I want to configure OS (Open source dialer on asterisk platform) for Centos.here is the detail : We are going to use inbound outbound calling.We have Two servers with 2 separate network for inbound and outbound calling.using 6 mbps dedicated line with 2 mbps bakcup line.I want... (0 Replies)
Discussion started by: Vaibhav.T
0 Replies

3. UNIX for Dummies Questions & Answers

Connecting a phone

I have an LG VX9800 (The V), am using Linux Mint, and just downloaded BitPim. The problem: BitPim doesn't detect my phone. Then again, the computer doesn't even do that. I read here (under Reference > USB > Linux USB Setup) about direct USB access, but Linux Mint apparently doesn't use hotplug. Or... (0 Replies)
Discussion started by: Zucriy Amsuna
0 Replies

4. AIX

Phone support

We have a 7028 p series server that has a lapsed hardware service contract, and I was attempting to create a billable tech support phone call, and IBM said that they do on site billable only. Is anybody out there aware of reputable third party support companies I might be able to contact. I have... (7 Replies)
Discussion started by: markper
7 Replies

5. UNIX for Dummies Questions & Answers

Phone Dialer?

Is there a phone # dialer for Unix? I'm specifically looking for one in the OS X terminal, but I can run it through my FreeBSD computer too. --Andrew (0 Replies)
Discussion started by: andrewgray
0 Replies

6. Shell Programming and Scripting

Phone Directory

Hi Guys; im new here...my name is Mark and im a student from sinapore...i need help with a project im working on...can someone tell me how to create a phone directory with scripting which must include user-ID and password...im so worried right now cause i don't know where to start..i... (3 Replies)
Discussion started by: MaRk2002
3 Replies
Login or Register to Ask a Question