More on Write & Talk


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers More on Write & Talk
# 1  
Old 08-23-2002
More on Write & Talk

Thanks for the comments, but I am still having problems. Certainly I did consult the man pages, but they didn't seem to help. So here is the scenario:

Two computers are running Linux on a network, each assigned IP addresses & subnet masks from DHCP (NT Server).

Both computers have a terminal window open.

One the one I type talk tim or write tim, and I get the message "user not logged on."

Someone mentioned using the format talk host@hostname. How do I find out what to put in host and hostname?

Any further help would be great.

Thanks,

SAB
# 2  
Old 08-23-2002
Type in the who command - check to see if 'Tim' is logged in.

If tim is logged in on the other server (let's say it's name is server2 ) then you would do this:

$ talk tim@server2

If Tim has messages turned off (mesg -n) then you will still not be able to talk.
If the two servers don't trust each other, then you may not be able to talk (but you would get a different error message)

Even though you had new questions - try to post your new questions to the same thread when it is still related to the same subject (use the Post reply instead of New Thread). Easier to see the history then.
# 3  
Old 08-23-2002
Doesn't network messenging have to also have a listening port on both sides as well?
Otherwise, how could they communicate?

It may be that the remote (or even the local) server doesn't have the talkd running on it.
# 4  
Old 08-26-2002
Power

Ok, so there is obviously something that I am not understanding. I have tried everything I could think of, but I still can't talk or write. Let me explain what I have done, then maybe someone out there can tell me how they would set it all up.

1. Red Hat 7.3 installed as a server on one computer.
2. Red Hat 7.3 installed as a workstation on another computer.
3. Both running xinetd, ssh, and talkd.
4. IP addresses assigned via DHCP from an NT Server.
5. Also running SMB, NFS, and Apache.

Do I have to do something special on the server computer to accept logins from the workstation?

If someone could describe a theoretical setup I would be extremely grateful.

SAB
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

MAN and read & write function

How to use MAN to find information about read() and write() function ? The command "man read" show some rubbish, for example "man open" show great information about function I need. (2 Replies)
Discussion started by: bbqtoss
2 Replies

2. Shell Programming and Scripting

How to write If statement using && and operator in Unix

Hi What is the syntax for if statement using && and || operator? if && ] || here its giving me an error to this if statement any suggestion?? (2 Replies)
Discussion started by: Avi
2 Replies

3. Shell Programming and Scripting

PHP read large string & split in multidimensional arrays & assign fieldnames & write into MYSQL

Hi, I hope the title does not scare people to look into this thread but it describes roughly what I'm trying to do. I need a solution in PHP. I'm a programming beginner, so it might be that the approach to solve this, might be easier to solve with an other approach of someone else, so if you... (0 Replies)
Discussion started by: lowmaster
0 Replies

4. UNIX for Dummies Questions & Answers

Vi, write something then try to save & quit.

If I'm in Vi, write something then try to save & quit. :wq I get: "myvifile" "myvifile" E212: Can't open file for writing Press ENTER or type command to continue It won't let me save... Is it because other users on the network have access to the file also? Or I don't have permission to save? Thanks... (5 Replies)
Discussion started by: JudoMan
5 Replies

5. UNIX for Dummies Questions & Answers

write a script & sum contents!PLEASE HELP

Hello everyone!! I have to write a script in unix that reads a file which is in the format: 1%blabla%30 2%blabla2%50 1%blabla3%40 2%blabla4%10 and produce the total quantities of 1 and 2: "1 = 70 2 = 60" I am taught basic unix commands, so I must keep it simple, how can i do this using... (7 Replies)
Discussion started by: questionmaker25
7 Replies

6. Programming

Problem with read & write

Hello mates: I met problem with using read() & write(). I m trying to use read twice on client first time is the size of buffer, 2nd time is the buffer. I think I have to, coz I dnot know file size. So, I write twice on server as well -- 1st, filesize; 2nd, buffer. The problem is, sometimes,... (11 Replies)
Discussion started by: EltonSky
11 Replies

7. UNIX for Dummies Questions & Answers

Need info:"talk,write and wall"

hi nu 2 this forum., can any one tell me how to 'talk' to a person on other system who is connected in a network(LAN) via terminal....... and when to use wall,write and talk.. regards leenus :) (1 Reply)
Discussion started by: mr.anilbabu
1 Replies

8. UNIX for Dummies Questions & Answers

Using write & talk

I am new to Unix/Linux, and I have been experimenting with the write and talk commands. I guess I don't understand what I am doing (probably becuase I am thinking like a Windows user). When I have two computers on the same network and type something like talk tim where tim is the name of a... (3 Replies)
Discussion started by: ssbrady
3 Replies

9. Programming

read, write & STDOUT_FILENO....

hi guys, I'have a question 4 u. Why this code give me the right output (an integer on the stdout): read(fd,&mpid,sizeof(pid_t)); printf("%d\n",mpid); Instead this code give me only a blank line: read(fd,&mpid,sizeof(pid_t)); write(STDOUT_FILENO,&mpid,sizeof(pid_t)); ... (2 Replies)
Discussion started by: M3xican
2 Replies
Login or Register to Ask a Question